mindchain commited on
Commit
3dd6c05
·
verified ·
1 Parent(s): 0e52da3

mindchain/qwen35-08b-fullft-kaggle-smoke

Browse files
README.md CHANGED
@@ -1,53 +1,59 @@
1
  ---
2
- library_name: transformers
3
- license: apache-2.0
4
  base_model: Qwen/Qwen3.5-0.8B
 
 
5
  tags:
6
  - generated_from_trainer
7
- model-index:
8
- - name: outputs
9
- results: []
 
10
  ---
11
 
12
- <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
- should probably proofread and complete it, then remove this comment. -->
14
-
15
- # outputs
16
-
17
- This model is a fine-tuned version of [Qwen/Qwen3.5-0.8B](https://huggingface.co/Qwen/Qwen3.5-0.8B) on the None dataset.
18
 
19
- ## Model description
 
20
 
21
- More information needed
22
 
23
- ## Intended uses & limitations
 
24
 
25
- More information needed
 
 
 
 
26
 
27
- ## Training and evaluation data
28
 
29
- More information needed
30
 
31
- ## Training procedure
32
 
33
- ### Training hyperparameters
34
 
35
- The following hyperparameters were used during training:
36
- - learning_rate: 2e-05
37
- - train_batch_size: 2
38
- - eval_batch_size: 16
39
- - seed: 42
40
- - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
41
- - lr_scheduler_type: linear
42
- - num_epochs: 1
43
 
44
- ### Training results
 
 
 
 
45
 
 
46
 
47
 
48
- ### Framework versions
49
 
50
- - Transformers 5.2.0
51
- - Pytorch 2.9.0+cu126
52
- - Datasets 4.0.0
53
- - Tokenizers 0.22.2
 
 
 
 
 
 
 
 
 
1
  ---
 
 
2
  base_model: Qwen/Qwen3.5-0.8B
3
+ library_name: transformers
4
+ model_name: outputs
5
  tags:
6
  - generated_from_trainer
7
+ - sft
8
+ - unsloth
9
+ - trl
10
+ licence: license
11
  ---
12
 
13
+ # Model Card for outputs
 
 
 
 
 
14
 
15
+ This model is a fine-tuned version of [Qwen/Qwen3.5-0.8B](https://huggingface.co/Qwen/Qwen3.5-0.8B).
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="mindchain/outputs", 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.24.0
39
+ - Transformers: 5.2.0
40
+ - Pytorch: 2.10.0
41
+ - Datasets: 4.3.0
42
+ - Tokenizers: 0.22.2
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
+ ```
config.json CHANGED
@@ -1,75 +1,106 @@
1
  {
2
  "architectures": [
3
- "Qwen3_5ForCausalLM"
4
  ],
5
- "attention_bias": false,
6
- "attention_dropout": 0.0,
7
- "attn_output_gate": true,
8
- "bos_token_id": null,
9
- "dtype": "bfloat16",
10
- "eos_token_id": 248044,
11
- "full_attention_interval": 4,
12
- "head_dim": 256,
13
- "hidden_act": "silu",
14
- "hidden_size": 1024,
15
- "initializer_range": 0.02,
16
- "intermediate_size": 3584,
17
- "layer_types": [
18
- "linear_attention",
19
- "linear_attention",
20
- "linear_attention",
21
- "full_attention",
22
- "linear_attention",
23
- "linear_attention",
24
- "linear_attention",
25
- "full_attention",
26
- "linear_attention",
27
- "linear_attention",
28
- "linear_attention",
29
- "full_attention",
30
- "linear_attention",
31
- "linear_attention",
32
- "linear_attention",
33
- "full_attention",
34
- "linear_attention",
35
- "linear_attention",
36
- "linear_attention",
37
- "full_attention",
38
- "linear_attention",
39
- "linear_attention",
40
- "linear_attention",
41
- "full_attention"
42
- ],
43
- "linear_conv_kernel_dim": 4,
44
- "linear_key_head_dim": 128,
45
- "linear_num_key_heads": 16,
46
- "linear_num_value_heads": 16,
47
- "linear_value_head_dim": 128,
48
- "mamba_ssm_dtype": "float32",
49
- "max_position_embeddings": 262144,
50
- "mlp_only_layers": [],
51
- "model_type": "qwen3_5_text",
52
- "mtp_num_hidden_layers": 1,
53
- "mtp_use_dedicated_embeddings": false,
54
- "num_attention_heads": 8,
55
- "num_hidden_layers": 24,
56
- "num_key_value_heads": 2,
57
- "pad_token_id": null,
58
- "partial_rotary_factor": 0.25,
59
- "rms_norm_eps": 1e-06,
60
- "rope_parameters": {
61
- "mrope_interleaved": true,
62
- "mrope_section": [
63
- 11,
64
- 11,
65
- 10
66
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  "partial_rotary_factor": 0.25,
68
- "rope_theta": 10000000,
69
- "rope_type": "default"
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  },
71
  "tie_word_embeddings": true,
72
  "transformers_version": "5.2.0",
 
73
  "use_cache": false,
74
- "vocab_size": 248320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
 
1
  {
2
  "architectures": [
3
+ "Qwen3_5ForConditionalGeneration"
4
  ],
5
+ "dtype": "float16",
6
+ "eos_token_id": 248046,
7
+ "image_token_id": 248056,
8
+ "model_name": "Qwen/Qwen3.5-0.8B",
9
+ "model_type": "qwen3_5",
10
+ "pad_token_id": 248044,
11
+ "text_config": {
12
+ "attention_bias": false,
13
+ "attention_dropout": 0.0,
14
+ "attn_output_gate": true,
15
+ "bos_token_id": null,
16
+ "dtype": "float16",
17
+ "eos_token_id": 248044,
18
+ "full_attention_interval": 4,
19
+ "head_dim": 256,
20
+ "hidden_act": "silu",
21
+ "hidden_size": 1024,
22
+ "initializer_range": 0.02,
23
+ "intermediate_size": 3584,
24
+ "layer_types": [
25
+ "linear_attention",
26
+ "linear_attention",
27
+ "linear_attention",
28
+ "full_attention",
29
+ "linear_attention",
30
+ "linear_attention",
31
+ "linear_attention",
32
+ "full_attention",
33
+ "linear_attention",
34
+ "linear_attention",
35
+ "linear_attention",
36
+ "full_attention",
37
+ "linear_attention",
38
+ "linear_attention",
39
+ "linear_attention",
40
+ "full_attention",
41
+ "linear_attention",
42
+ "linear_attention",
43
+ "linear_attention",
44
+ "full_attention",
45
+ "linear_attention",
46
+ "linear_attention",
47
+ "linear_attention",
48
+ "full_attention"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  ],
50
+ "linear_conv_kernel_dim": 4,
51
+ "linear_key_head_dim": 128,
52
+ "linear_num_key_heads": 16,
53
+ "linear_num_value_heads": 16,
54
+ "linear_value_head_dim": 128,
55
+ "mamba_ssm_dtype": "float32",
56
+ "max_position_embeddings": 262144,
57
+ "mlp_only_layers": [],
58
+ "model_type": "qwen3_5_text",
59
+ "mtp_num_hidden_layers": 1,
60
+ "mtp_use_dedicated_embeddings": false,
61
+ "num_attention_heads": 8,
62
+ "num_hidden_layers": 24,
63
+ "num_key_value_heads": 2,
64
+ "pad_token_id": null,
65
  "partial_rotary_factor": 0.25,
66
+ "rms_norm_eps": 1e-06,
67
+ "rope_parameters": {
68
+ "mrope_interleaved": true,
69
+ "mrope_section": [
70
+ 11,
71
+ 11,
72
+ 10
73
+ ],
74
+ "partial_rotary_factor": 0.25,
75
+ "rope_theta": 10000000,
76
+ "rope_type": "default"
77
+ },
78
+ "tie_word_embeddings": true,
79
+ "use_cache": true,
80
+ "vocab_size": 248320
81
  },
82
  "tie_word_embeddings": true,
83
  "transformers_version": "5.2.0",
84
+ "unsloth_version": "2026.3.4",
85
  "use_cache": false,
86
+ "video_token_id": 248057,
87
+ "vision_config": {
88
+ "deepstack_visual_indexes": [],
89
+ "depth": 12,
90
+ "dtype": "float16",
91
+ "hidden_act": "gelu_pytorch_tanh",
92
+ "hidden_size": 768,
93
+ "in_channels": 3,
94
+ "initializer_range": 0.02,
95
+ "intermediate_size": 3072,
96
+ "model_type": "qwen3_5",
97
+ "num_heads": 12,
98
+ "num_position_embeddings": 2304,
99
+ "out_hidden_size": 1024,
100
+ "patch_size": 16,
101
+ "spatial_merge_size": 2,
102
+ "temporal_patch_size": 2
103
+ },
104
+ "vision_end_token_id": 248054,
105
+ "vision_start_token_id": 248053
106
  }
generation_config.json CHANGED
@@ -1,6 +1,10 @@
1
  {
2
  "_from_model_config": true,
3
- "eos_token_id": 248044,
 
 
 
 
4
  "transformers_version": "5.2.0",
5
  "use_cache": true
6
  }
 
1
  {
2
  "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 248046,
5
+ 248044
6
+ ],
7
+ "pad_token_id": 248044,
8
  "transformers_version": "5.2.0",
9
  "use_cache": true
10
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e59c71f60f117d3ef40a381b1aff3bb2bfbf63ff0c0ab0def4e875bb3571c00b
3
- size 1504827608
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f87e433c1fe3113364134d74bdd4b4822fe17baf18415d658f9a1b902865a2d
3
+ size 1706030056
processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:16e71421c5d4e5b01c8be19a0ed8c9b91f9fd257ed0b17b39182561f48376ca9
3
- size 19989441
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
tokenizer_config.json CHANGED
@@ -21,7 +21,9 @@
21
  "vision_eos_token": "<|vision_end|>"
22
  },
23
  "pad_token": "<|endoftext|>",
 
24
  "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
 
25
  "split_special_tokens": false,
26
  "tokenizer_class": "TokenizersBackend",
27
  "unk_token": null,
 
21
  "vision_eos_token": "<|vision_end|>"
22
  },
23
  "pad_token": "<|endoftext|>",
24
+ "padding_side": "right",
25
  "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
26
+ "processor_class": "Qwen3VLProcessor",
27
  "split_special_tokens": false,
28
  "tokenizer_class": "TokenizersBackend",
29
  "unk_token": null,
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:68c7020c15dc8548fc47a78610f940668504546b180052b84b1d8c45f40c8e0c
3
- size 5137
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e1228d543a1963a524818d62c1fcf58704f34e38c271cd9b5f53fd914ea81b3
3
+ size 5713