Views
No views yet
| Property | Value |
|---|---|
| Base Model | google/gemma-4-E4B-it |
| Parameters | 8B (4B active) |
| Training Method | LoRA (r=8, alpha=8) |
| Learning Rate | 5e-5 |
| Epochs | 0.5 |
| Framework | Unsloth |
Roman1111111/gemini-3.1-pro-hard-high-reasoningRoman1111111/gemini-3-pro-10000x-hard-high-reasoning1# LoRA Configuration
2r = 8
3lora_alpha = 8
4lora_dropout = 0.1
5
6# Training Configuration
7learning_rate = 5e-5
8num_train_epochs = 0.5
9per_device_train_batch_size = 2
10gradient_accumulation_steps = 8
11weight_decay = 0.01| Test Type | Score |
|---|---|
| Simple Math | 3/3 (100%) |
| Logic Reasoning | 1/1 (100%) |
| Complex Problems | 6/8 (75%) |
| Overall | Matches base model |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "Ayodele01/gemma-4-E4B-Gemini-3.1-Pro-Reasoning-Distill",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained("Ayodele01/gemma-4-E4B-Gemini-3.1-Pro-Reasoning-Distill")
10
11messages = [{"role": "user", "content": "Solve step by step: If 3x + 7 = 22, what is x?"}]
12inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
13outputs = model.generate(inputs.to(model.device), max_new_tokens=256)
14print(tokenizer.decode(outputs[0], skip_special_tokens=True))