This is a LoRA checkpoint. To use it, you'll need to:
1# Example usage (requires tunix/qwix)
2from tunix.models.gemma3 import params, model
3import qwix
4
5# Load base model
6base_model = params.create_model_from_checkpoint(params.GEMMA3_1B_IT, model.ModelConfig.gemma3_1b())
7
8# Apply LoRA (load from this checkpoint)
9# ... (implementation depends on your framework)
10
11Citation
12
13@misc{gemma3-gsm8k-grpo,
14 author = {sairambokka},
15 title = {Gemma 3 1B Fine-tuned on GSM8K with GRPO},
16 year = {2024},
17 publisher = {HuggingFace},
18 howpublished = {\url{https://huggingface.co/sairambokka/gemma3-1b-gsm8k-grpo-reasoning}}
19}