agriintel-contextual-yield-reasoning-v1

Model Training

A LORA adapter for openai/gpt-oss-120b. This model was trained with SFT using Adaption's AutoScientist on the AgriIntel-Contextual-Yield-Reasoning-v1 dataset.

Training metrics

AutoScientist Config

{
  "job_id": "5238b7af-e600-4ba5-9ecf-b2a7f6d4c276",
  "training_experiment_id": "622303bd-8d27-4381-b71d-d623eeafbe48",
  "original_model_name": "openai/gpt-oss-120b",
  "trained_model_name": "adaption_agriintel_contextual_yield_r",
  "training_method": "sft",
  "training_type": "lora",
  "data_format": "chat",
  "hyperparams": {
    "lora": "true",
    "lora_r": 32,
    "n_evals": 5,
    "n_epochs": 1,
    "batch_size": "max",
    "lora_alpha": 64,
    "lora_dropout": 0,
    "min_lr_ratio": 0.1,
    "warmup_ratio": 0.1,
    "weight_decay": 0,
    "learning_rate": 0.0001,
    "max_grad_norm": 2,
    "base_model_size": "120B",
    "train_on_inputs": "false",
    "training_method": "sft",
    "lr_scheduler_type": "cosine",
    "scheduler_num_cycles": 0.5,
    "lora_trainable_modules": "q_proj,v_proj"
  }
}

Training Data

The model was trained on 14,578 rows of adapted data with the following domain distribution: agriculture (77%), data-analysis-visualization (14%), cooking (3%), other (2%), market-analysis (2%), science (1%), math (1%), animal-nature (0%), corporate-business (0%), geography (0%), finance (0%), personal-finance (0%).

Model Evaluation

The model was evaluated on an in-distribution held-out test set as well as a broader domain-specific test set to measure generalization.

Win rates

Domain Win rate vs. base model
agriculture 28%

How to use

pip install torch transformers peft
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel

BASE = "openai/gpt-oss-120b"
ADAPTER = "<this-repo-id>"

device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.float32 if device == "cpu" else torch.bfloat16

base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
model = PeftModel.from_pretrained(base, ADAPTER)
# Optional: merge the LoRA weights into the base for faster inference
model = model.merge_and_unload()
model.eval()

tokenizer = AutoTokenizer.from_pretrained(BASE)
messages = [{"role": "user", "content": "Hello!"}]
text = tokenizer.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(device)

with torch.inference_mode():
    out = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for asadullahdogarr/agriintel-contextual-yield-reasoning-v1

Adapter
(220)
this model