Text Generation
PEFT
Safetensors
lora
vision-language
qwen3-vl
coding
math
darija
fine-tuned
beginner-friendly
conversational
Instructions to use CompiwerAI/Mtrini-SVL-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use CompiwerAI/Mtrini-SVL-1.0 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-VL-8B-Instruct") model = PeftModel.from_pretrained(base_model, "CompiwerAI/Mtrini-SVL-1.0") - Notebooks
- Google Colab
- Kaggle
Add training_metrics.json
Browse files- training_metrics.json +8 -0
training_metrics.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"train_runtime": 13482.8442,
|
| 3 |
+
"train_samples_per_second": 1.187,
|
| 4 |
+
"train_steps_per_second": 0.074,
|
| 5 |
+
"total_flos": 1.6093386789050798e+18,
|
| 6 |
+
"train_loss": 0.4571214294433594,
|
| 7 |
+
"epoch": 1.0
|
| 8 |
+
}
|