Model save
Browse files- README.md +58 -0
- all_results.json +8 -0
- generation_config.json +11 -0
- train_results.json +8 -0
- trainer_state.json +71 -0
README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: google/gemma-3-4b-it
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: gemma-3-4b-it-capybara-test
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- trl
|
| 8 |
+
- sft
|
| 9 |
+
licence: license
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for gemma-3-4b-it-capybara-test
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned version of [google/gemma-3-4b-it](https://huggingface.co/google/gemma-3-4b-it).
|
| 15 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 16 |
+
|
| 17 |
+
## Quick start
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from transformers import pipeline
|
| 21 |
+
|
| 22 |
+
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?"
|
| 23 |
+
generator = pipeline("text-generation", model="burtenshaw/gemma-3-4b-it-capybara-test", device="cuda")
|
| 24 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 25 |
+
print(output["generated_text"])
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Training procedure
|
| 29 |
+
|
| 30 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/smartwithfood/huggingface/runs/le76pzhs)
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with SFT.
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 0.16.0.dev0
|
| 38 |
+
- Transformers: 4.50.0.dev0
|
| 39 |
+
- Pytorch: 2.4.1
|
| 40 |
+
- Datasets: 3.4.0
|
| 41 |
+
- Tokenizers: 0.21.1
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
Cite TRL as:
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@misc{vonwerra2022trl,
|
| 51 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 52 |
+
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édec},
|
| 53 |
+
year = 2020,
|
| 54 |
+
journal = {GitHub repository},
|
| 55 |
+
publisher = {GitHub},
|
| 56 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 57 |
+
}
|
| 58 |
+
```
|
all_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"total_flos": 3.336499157376e+17,
|
| 3 |
+
"train_loss": 0.0,
|
| 4 |
+
"train_runtime": 2859.1765,
|
| 5 |
+
"train_samples": 15806,
|
| 6 |
+
"train_samples_per_second": 1.342,
|
| 7 |
+
"train_steps_per_second": 0.671
|
| 8 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 2,
|
| 4 |
+
"cache_implementation": "hybrid",
|
| 5 |
+
"eos_token_id": [
|
| 6 |
+
1,
|
| 7 |
+
106
|
| 8 |
+
],
|
| 9 |
+
"pad_token_id": 0,
|
| 10 |
+
"transformers_version": "4.50.0.dev0"
|
| 11 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"total_flos": 3.336499157376e+17,
|
| 3 |
+
"train_loss": 0.0,
|
| 4 |
+
"train_runtime": 2859.1765,
|
| 5 |
+
"train_samples": 15806,
|
| 6 |
+
"train_samples_per_second": 1.342,
|
| 7 |
+
"train_steps_per_second": 0.671
|
| 8 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 1.0,
|
| 5 |
+
"eval_steps": 500,
|
| 6 |
+
"global_step": 1918,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"epoch": 0.26068821689259647,
|
| 13 |
+
"grad_norm": NaN,
|
| 14 |
+
"learning_rate": 7.393117831074036e-06,
|
| 15 |
+
"loss": 1.1435,
|
| 16 |
+
"mean_token_accuracy": 0.44466638553142546,
|
| 17 |
+
"num_tokens": 3999914.0,
|
| 18 |
+
"step": 500
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"epoch": 0.5213764337851929,
|
| 22 |
+
"grad_norm": NaN,
|
| 23 |
+
"learning_rate": 4.7862356621480715e-06,
|
| 24 |
+
"loss": 0.0,
|
| 25 |
+
"mean_token_accuracy": 0.0,
|
| 26 |
+
"num_tokens": 7989385.0,
|
| 27 |
+
"step": 1000
|
| 28 |
+
},
|
| 29 |
+
{
|
| 30 |
+
"epoch": 0.7820646506777894,
|
| 31 |
+
"grad_norm": NaN,
|
| 32 |
+
"learning_rate": 2.1793534932221064e-06,
|
| 33 |
+
"loss": 0.0,
|
| 34 |
+
"mean_token_accuracy": 0.0,
|
| 35 |
+
"num_tokens": 3993373.0,
|
| 36 |
+
"step": 1500
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"epoch": 1.0,
|
| 40 |
+
"mean_token_accuracy": 0.0,
|
| 41 |
+
"num_tokens": 7324027.0,
|
| 42 |
+
"step": 1918,
|
| 43 |
+
"total_flos": 3.336499157376e+17,
|
| 44 |
+
"train_loss": 0.0,
|
| 45 |
+
"train_runtime": 2859.1765,
|
| 46 |
+
"train_samples_per_second": 1.342,
|
| 47 |
+
"train_steps_per_second": 0.671
|
| 48 |
+
}
|
| 49 |
+
],
|
| 50 |
+
"logging_steps": 500,
|
| 51 |
+
"max_steps": 1918,
|
| 52 |
+
"num_input_tokens_seen": 0,
|
| 53 |
+
"num_train_epochs": 1,
|
| 54 |
+
"save_steps": 500,
|
| 55 |
+
"stateful_callbacks": {
|
| 56 |
+
"TrainerControl": {
|
| 57 |
+
"args": {
|
| 58 |
+
"should_epoch_stop": false,
|
| 59 |
+
"should_evaluate": false,
|
| 60 |
+
"should_log": false,
|
| 61 |
+
"should_save": true,
|
| 62 |
+
"should_training_stop": true
|
| 63 |
+
},
|
| 64 |
+
"attributes": {}
|
| 65 |
+
}
|
| 66 |
+
},
|
| 67 |
+
"total_flos": 3.336499157376e+17,
|
| 68 |
+
"train_batch_size": 2,
|
| 69 |
+
"trial_name": null,
|
| 70 |
+
"trial_params": null
|
| 71 |
+
}
|