End of training
Browse files- .gitattributes +1 -0
- README.md +59 -0
- config.json +62 -0
- generation_config.json +11 -0
- model-00001-of-00005.safetensors +3 -0
- model-00002-of-00005.safetensors +3 -0
- model-00003-of-00005.safetensors +3 -0
- model-00004-of-00005.safetensors +3 -0
- model-00005-of-00005.safetensors +3 -0
- model.safetensors.index.json +0 -0
- special_tokens_map.json +33 -0
- tokenizer.json +3 -0
- tokenizer_config.json +0 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: google/gemma-3-12b-it
|
3 |
+
datasets: open-r1/codeforces-cots
|
4 |
+
library_name: transformers
|
5 |
+
model_name: gemma-3-12b-it-codeforces-SFT
|
6 |
+
tags:
|
7 |
+
- generated_from_trainer
|
8 |
+
- trl
|
9 |
+
- sft
|
10 |
+
licence: license
|
11 |
+
---
|
12 |
+
|
13 |
+
# Model Card for gemma-3-12b-it-codeforces-SFT
|
14 |
+
|
15 |
+
This model is a fine-tuned version of [google/gemma-3-12b-it](https://huggingface.co/google/gemma-3-12b-it) on the [open-r1/codeforces-cots](https://huggingface.co/datasets/open-r1/codeforces-cots) dataset.
|
16 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
17 |
+
|
18 |
+
## Quick start
|
19 |
+
|
20 |
+
```python
|
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="burtenshaw/gemma-3-12b-it-codeforces-SFT", 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 |
+
[<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/1du4aw7n)
|
32 |
+
|
33 |
+
|
34 |
+
This model was trained with SFT.
|
35 |
+
|
36 |
+
### Framework versions
|
37 |
+
|
38 |
+
- TRL: 0.16.0.dev0
|
39 |
+
- Transformers: 4.50.0.dev0
|
40 |
+
- Pytorch: 2.6.0
|
41 |
+
- Datasets: 3.4.1
|
42 |
+
- Tokenizers: 0.21.1
|
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édec},
|
54 |
+
year = 2020,
|
55 |
+
journal = {GitHub repository},
|
56 |
+
publisher = {GitHub},
|
57 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
58 |
+
}
|
59 |
+
```
|
config.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Gemma3ForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"boi_token_index": 255999,
|
6 |
+
"eoi_token_index": 256000,
|
7 |
+
"eos_token_id": [
|
8 |
+
1,
|
9 |
+
106
|
10 |
+
],
|
11 |
+
"image_token_index": 262144,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"mm_tokens_per_image": 256,
|
14 |
+
"model_type": "gemma3",
|
15 |
+
"text_config": {
|
16 |
+
"attention_bias": false,
|
17 |
+
"attention_dropout": 0.0,
|
18 |
+
"attn_logit_softcapping": null,
|
19 |
+
"cache_implementation": "hybrid",
|
20 |
+
"final_logit_softcapping": null,
|
21 |
+
"head_dim": 256,
|
22 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
23 |
+
"hidden_size": 3840,
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"intermediate_size": 15360,
|
26 |
+
"max_position_embeddings": 131072,
|
27 |
+
"model_type": "gemma3_text",
|
28 |
+
"num_attention_heads": 16,
|
29 |
+
"num_hidden_layers": 48,
|
30 |
+
"num_key_value_heads": 8,
|
31 |
+
"query_pre_attn_scalar": 256,
|
32 |
+
"rms_norm_eps": 1e-06,
|
33 |
+
"rope_local_base_freq": 10000.0,
|
34 |
+
"rope_scaling": {
|
35 |
+
"factor": 8.0,
|
36 |
+
"rope_type": "linear"
|
37 |
+
},
|
38 |
+
"rope_theta": 1000000.0,
|
39 |
+
"sliding_window": 1024,
|
40 |
+
"sliding_window_pattern": 6,
|
41 |
+
"torch_dtype": "float32",
|
42 |
+
"use_cache": true,
|
43 |
+
"vocab_size": 262208
|
44 |
+
},
|
45 |
+
"torch_dtype": "bfloat16",
|
46 |
+
"transformers_version": "4.50.0.dev0",
|
47 |
+
"vision_config": {
|
48 |
+
"attention_dropout": 0.0,
|
49 |
+
"hidden_act": "gelu_pytorch_tanh",
|
50 |
+
"hidden_size": 1152,
|
51 |
+
"image_size": 896,
|
52 |
+
"intermediate_size": 4304,
|
53 |
+
"layer_norm_eps": 1e-06,
|
54 |
+
"model_type": "siglip_vision_model",
|
55 |
+
"num_attention_heads": 16,
|
56 |
+
"num_channels": 3,
|
57 |
+
"num_hidden_layers": 27,
|
58 |
+
"patch_size": 14,
|
59 |
+
"torch_dtype": "float32",
|
60 |
+
"vision_use_head": false
|
61 |
+
}
|
62 |
+
}
|
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 |
+
}
|
model-00001-of-00005.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3871e5c4ccaeb68161183c836c6a93dcb8062797cdd64178c102b9167692447
|
3 |
+
size 4979902192
|
model-00002-of-00005.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb21052f81ab544316a46af9abd332255eba3835eb7542ccb4c427e34253f229
|
3 |
+
size 4931296592
|
model-00003-of-00005.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b8d54deb295757705082989f860933c81baaec51e297b7010e3da25a807c4048
|
3 |
+
size 4931296656
|
model-00004-of-00005.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a38d645d443000b2cd4facc2c6d6f6ba9dd588a622acaea72d42d8523831e432
|
3 |
+
size 4931296656
|
model-00005-of-00005.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e0e8d981907853a8f5580b9d2deb2afc03c8dc0501ad6592aa3d34231d73ff90
|
3 |
+
size 4601000928
|
model.safetensors.index.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
special_tokens_map.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"boi_token": "<start_of_image>",
|
3 |
+
"bos_token": {
|
4 |
+
"content": "<bos>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false
|
9 |
+
},
|
10 |
+
"eoi_token": "<end_of_image>",
|
11 |
+
"eos_token": {
|
12 |
+
"content": "<eos>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false
|
17 |
+
},
|
18 |
+
"image_token": "<image_soft_token>",
|
19 |
+
"pad_token": {
|
20 |
+
"content": "<pad>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false
|
25 |
+
},
|
26 |
+
"unk_token": {
|
27 |
+
"content": "<unk>",
|
28 |
+
"lstrip": false,
|
29 |
+
"normalized": false,
|
30 |
+
"rstrip": false,
|
31 |
+
"single_word": false
|
32 |
+
}
|
33 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
3 |
+
size 33384568
|
tokenizer_config.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e27efbe31bf09e1d50cf388d0e9780ac9fdc2a14eb644e313e14dce091816c98
|
3 |
+
size 6968
|