Early experimental model uses unique advance form of supervised tuning. This training program loads the model, and than loads the data from dataset. It will provide data in inference time. Than it trains the LLM.
During inference and than checks if it reaches the answer or goal. If not, it will keep training until it reaches the answer or solution.
1from transformers import pipeline
2model_id = "EpistemeAI/OpenReasoner-Llama-3.2-1B-rs1"
3pipe = pipeline(
4 "text-generation",
5 model=model_id,
6 torch_dtype=torch.bfloat16,
7 device_map="auto"
8)
9print(pipe("What is larger 9.9 or 9.11?"))
Thank you so much to Hugging Face H4 and the dataset:
Math-500
We use this as evaluator. It was not directly trained, it was used as a test
This llama model was trained 2x faster with
Unsloth and Huggingface's TRL library.