LoRID-Math/MATH
Viewer • Updated • 158k • 54 • 1
How to use LoRID-Math/MATH-Mistral-7B-DR with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-v0.1")
model = PeftModel.from_pretrained(base_model, "LoRID-Math/MATH-Mistral-7B-DR")The models for "Can Large Models Teach Student Models to Solve Mathematical Problems Like Human Beings? A Reasoning Distillation Method via Multi-LoRA Interaction" [IJCAI 2025].
If this work is helpful, please kindly cite as:
@misc{li2025largemodelsteachstudent,
title={Can Large Models Teach Student Models to Solve Mathematical Problems Like Human Beings? A Reasoning Distillation Method via Multi-LoRA Interaction},
author={Xinhe Li and Jiajun Liu and Peng Wang},
year={2025},
eprint={2508.13037},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2508.13037},
}
Base model
mistralai/Mistral-7B-v0.1
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-v0.1") model = PeftModel.from_pretrained(base_model, "LoRID-Math/MATH-Mistral-7B-DR")