MarketIntel-Macro-Reasoning-Mistral-7B

Model Training

A LORA adapter for mistralai/Mistral-7B-Instruct-v0.2. This model was trained with SFT using Adaption's AutoScientist on the MarketIntel-Macro-Reasoning-v1 dataset.

Training metrics

AutoScientist Config

{
  "job_id": "000bf75a-7edf-482c-8ff8-186e4545553b",
  "training_experiment_id": "9d277268-555a-44df-b640-a273b9e35c21",
  "original_model_name": "mistralai/Mistral-7B-Instruct-v0.2",
  "trained_model_name": "adaption_marketintel_macro_reasoning_",
  "training_method": "sft",
  "training_type": "lora",
  "data_format": "chat",
  "hyperparams": {
    "lora": "true",
    "lora_r": 64,
    "n_evals": 5,
    "n_epochs": 5,
    "batch_size": "max",
    "lora_alpha": 128,
    "lora_dropout": 0,
    "min_lr_ratio": 0.1,
    "warmup_ratio": 0.05,
    "weight_decay": 0.01,
    "learning_rate": 0.00001,
    "max_grad_norm": 1,
    "base_model_size": "7B",
    "train_on_inputs": "false",
    "training_method": "sft",
    "lr_scheduler_type": "cosine",
    "scheduler_num_cycles": 0.5,
    "lora_trainable_modules": "q_proj,k_proj,v_proj,o_proj"
  }
}

Training Data

The model was trained on 27,814 rows of adapted data with the following domain distribution: market-analysis (45%), news (38%), corporate-business (7%), governance (6%), personal-finance (2%), transportation (1%), legal (1%), technology (0%), science (0%), medical (0%), history (0%), agriculture (0%), hr (0%), real-estate (0%), career-workplace (0%), travel (0%), product-advice (0%), academic-education (0%), sector_banking_finance (0%), sports (0%), culture (0%), marketing (0%), data-analysis-visualization (0%), finance (0%), geography (0%), entertainment (0%), stock_specific (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
general 56%

How to use

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

BASE = "mistralai/Mistral-7B-Instruct-v0.2"
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/adaption_marketintel_macro_reasoning_

Adapter
(1199)
this model