Instructions to use Minutor/adaption_math_and_word_problem_soluti with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Minutor/adaption_math_and_word_problem_soluti with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("togethercomputer/Mistral-7B-Instruct-v0.2") model = PeftModel.from_pretrained(base_model, "Minutor/adaption_math_and_word_problem_soluti") - Notebooks
- Google Colab
- Kaggle
File size: 2,930 Bytes
cf276cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | ---
base_model: mistralai/Mistral-7B-Instruct-v0.2
library_name: peft
license: other
tags:
- lora
- peft
- adapter
- adaption
---
# adaption_math_and_word_problem_soluti
## Model Training
A LORA adapter for `mistralai/Mistral-7B-Instruct-v0.2`. This model was trained with SFT using [Adaption](https://adaptionlabs.ai)'s AutoScientist on the math_and_word_problem_solutions dataset.

### AutoScientist Config
```json
{
"job_id": "d712b9b1-1c6c-45d4-bc28-6a947d0eff29",
"training_experiment_id": "a0ab6235-ecd3-47a7-a7b8-42770f7862c5",
"original_model_name": "mistralai/Mistral-7B-Instruct-v0.2",
"trained_model_name": "adaption_math_and_word_problem_soluti",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"lora": "true",
"lora_r": 64,
"n_evals": 5,
"n_epochs": 3,
"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 19,622 rows of adapted data with the following domain distribution: math (99%), language (1%), science (0%), personal-finance (0%), fitness-sports (0%), games (0%), animal-nature (0%), cooking (0%), agriculture (0%), market-analysis (0%), architecture-design (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.

| Domain | Win rate vs. base model |
| --- | --- |
| math | 38% |
## How to use
```bash
pip install torch transformers peft
```
```python
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))
```
|