Unsloth Model Card
Browse files
README.md
CHANGED
|
@@ -1,59 +1,21 @@
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/gemma-3-270m-it-unsloth-bnb-4bit
|
| 3 |
-
library_name: transformers
|
| 4 |
-
model_name: mathgemma-3-270m
|
| 5 |
tags:
|
| 6 |
-
-
|
|
|
|
| 7 |
- unsloth
|
| 8 |
-
-
|
| 9 |
-
-
|
| 10 |
-
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
| 21 |
-
from transformers import pipeline
|
| 22 |
-
|
| 23 |
-
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 24 |
-
generator = pipeline("text-generation", model="mdsam33r/mathgemma-3-270m", device="cuda")
|
| 25 |
-
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 26 |
-
print(output["generated_text"])
|
| 27 |
-
```
|
| 28 |
-
|
| 29 |
-
## Training procedure
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
This model was trained with SFT.
|
| 35 |
-
|
| 36 |
-
### Framework versions
|
| 37 |
-
|
| 38 |
-
- TRL: 0.21.0
|
| 39 |
-
- Transformers: 4.55.2
|
| 40 |
-
- Pytorch: 2.8.0+cu126
|
| 41 |
-
- Datasets: 3.6.0
|
| 42 |
-
- Tokenizers: 0.21.4
|
| 43 |
-
|
| 44 |
-
## Citations
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
Cite TRL as:
|
| 49 |
-
|
| 50 |
-
```bibtex
|
| 51 |
-
@misc{vonwerra2022trl,
|
| 52 |
-
title = {{TRL: Transformer Reinforcement Learning}},
|
| 53 |
-
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 54 |
-
year = 2020,
|
| 55 |
-
journal = {GitHub repository},
|
| 56 |
-
publisher = {GitHub},
|
| 57 |
-
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 58 |
-
}
|
| 59 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/gemma-3-270m-it-unsloth-bnb-4bit
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
+
- text-generation-inference
|
| 5 |
+
- transformers
|
| 6 |
- unsloth
|
| 7 |
+
- gemma3_text
|
| 8 |
+
license: apache-2.0
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Uploaded finetuned model
|
| 14 |
|
| 15 |
+
- **Developed by:** mdsam33r
|
| 16 |
+
- **License:** apache-2.0
|
| 17 |
+
- **Finetuned from model :** unsloth/gemma-3-270m-it-unsloth-bnb-4bit
|
| 18 |
|
| 19 |
+
This gemma3_text model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 20 |
|
| 21 |
+
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|