williamium commited on
Commit
3336dbd
·
verified ·
1 Parent(s): 0894f5a

Upload folder using huggingface_hub

Browse files
Files changed (31) hide show
  1. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/chat_template.jinja +1 -0
  2. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/config.json +60 -0
  3. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_0.pt +3 -0
  4. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_1.pt +3 -0
  5. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_2.pt +3 -0
  6. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_3.pt +3 -0
  7. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_4.pt +3 -0
  8. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_5.pt +3 -0
  9. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_6.pt +3 -0
  10. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_7.pt +3 -0
  11. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/generation_config.json +9 -0
  12. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_0.pt +3 -0
  13. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_1.pt +3 -0
  14. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_2.pt +3 -0
  15. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_3.pt +3 -0
  16. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_4.pt +3 -0
  17. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_5.pt +3 -0
  18. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_6.pt +3 -0
  19. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_7.pt +3 -0
  20. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_0.pt +3 -0
  21. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_1.pt +3 -0
  22. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_2.pt +3 -0
  23. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_3.pt +3 -0
  24. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_4.pt +3 -0
  25. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_5.pt +3 -0
  26. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_6.pt +3 -0
  27. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_7.pt +3 -0
  28. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/special_tokens_map.json +23 -0
  29. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/tokenizer.json +3 -0
  30. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/tokenizer_config.json +194 -0
  31. planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/data.pt +3 -0
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='') %}{%- for message in messages %}{%- if message['role'] == 'system' %}{% set ns.system_prompt = message['content'] %}{%- endif %}{%- endfor %}{{bos_token}}{{ns.system_prompt}}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is none %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls']%}{%- if not ns.is_first %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- endfor %}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is not none %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|><think>\n'}}{% endif %}
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151646,
7
+ "dtype": "float32",
8
+ "eos_token_id": 151643,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 1536,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 8960,
13
+ "layer_types": [
14
+ "full_attention",
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention"
42
+ ],
43
+ "max_position_embeddings": 131072,
44
+ "max_window_layers": 21,
45
+ "model_type": "qwen2",
46
+ "num_attention_heads": 12,
47
+ "num_hidden_layers": 28,
48
+ "num_key_value_heads": 2,
49
+ "pad_token_id": 151643,
50
+ "rms_norm_eps": 1e-06,
51
+ "rope_scaling": null,
52
+ "rope_theta": 10000,
53
+ "sliding_window": null,
54
+ "tie_word_embeddings": false,
55
+ "transformers_version": "4.57.0",
56
+ "use_cache": true,
57
+ "use_mrope": false,
58
+ "use_sliding_window": false,
59
+ "vocab_size": 151936
60
+ }
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_0.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d312aea1b3428d6c1a0631fb803e8266003ee17dde25dacc886b825389b18386
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_1.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b97bdb0097293a2bece6031ebb80d69be4b8a5ab759e1cf8fe4c01a6616fe75
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2795b19a3ed3b6ec6ef2c17ada9b7f2933074e26a243036a14b216b901fc4b5c
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bd43e65deebfdcbb9f1224d9cf15fab7a755e529be255dc5ca9613cd296e773
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_4.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e703c749bfd5950e2dd08507665634147637b0aef5c321dd404dbb52ae6b39e2
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_5.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d45874e79d38b6e282e273627732cf172f8c5390436acf32ea4b9d55860181e
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_6.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94a4334db5b26d6358a6cb5bf589a46652ff33dde635bc3f8a05b1d08d47785d
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/extra_state_world_size_8_rank_7.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08296af7330b35086f689cb814a94dd513ae22ad6ec2c4dd97c0ee3630921b6a
3
+ size 15077
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 151646,
4
+ "do_sample": true,
5
+ "eos_token_id": 151643,
6
+ "temperature": 0.6,
7
+ "top_p": 0.95,
8
+ "transformers_version": "4.57.0"
9
+ }
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_0.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ef29fd63dc65102a1e94992a3485394b549a855956a460b015ca3d758d63267
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_1.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cea97b0429b2f736f7eb7880ce0375c13bd2017b8b6eb37d4528d8344a447401
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1de7dc194021cc50a5cc2bd74a0683a34be01137c53cc779eadeb006d5989b8f
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:361aa951f5c719cec39bfd1919f17a31b749d98353758125bab586d73a95c85a
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_4.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b0c12d841cc873a8ea2c07755a35f9c80114f6394e73f5314fa6aa8a441e178
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_5.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97b28f5e704842de111cd97ec9a1f459b870afa783e36158a5d5c097a38eced5
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_6.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:585773f5814b03d7247df6a50c67687a69a1d0f84f03249a05c92c21d233d2e3
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/model_world_size_8_rank_7.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc2591630c1de22a495dd8e636c42171e9e5f2bea49fcb8d1198ea54c66e0fc7
3
+ size 888730923
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_0.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba9fcf9c9f32936757e847f83e8c7c146cf35922583bbc085615d03d1cd3fced
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_1.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a06ba066a72bde8f28462b74e31cac1fd78cf1f7d71040fca9df421f82aa4286
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eb7965eb3a55652a40b6feb1f09c9aafb62740f39ff5603f0c899c3649cfbc8
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6411129ff5a828bc486de49d2dd4d70bcd5d7af852e89e02e751813ce18bc319
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_4.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10acbad1c06ae95abcd7c9589275cb7caeebfeb54823c62ed530d2950592a107
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_5.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d791ed02cb2b34f7d6171f7ff77df5fa0a80e49ae7105325e1d11bed341f30d4
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_6.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83a2128e1bd9bf59556bbe23840f51243ad61a01b64d26c29b2298ed22ccef68
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/optim_world_size_8_rank_7.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:486f3ec382d7a2c0b1ed6d4228b724a9f747d0aabc38cc9c7c61d451433a9f02
3
+ size 1777113832
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e20ddafc659ba90242154b55275402edeca0715e5dbb30f56815a4ce081f4893
3
+ size 11422778
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/actor/tokenizer_config.json ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "151643": {
7
+ "content": "<|end▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "151644": {
15
+ "content": "<|User|>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": false
21
+ },
22
+ "151645": {
23
+ "content": "<|Assistant|>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": false
29
+ },
30
+ "151646": {
31
+ "content": "<|begin▁of▁sentence|>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "151647": {
39
+ "content": "<|EOT|>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "151648": {
47
+ "content": "<think>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "151649": {
55
+ "content": "</think>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "151650": {
63
+ "content": "<|quad_start|>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "151651": {
71
+ "content": "<|quad_end|>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
+ },
78
+ "151652": {
79
+ "content": "<|vision_start|>",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": true
85
+ },
86
+ "151653": {
87
+ "content": "<|vision_end|>",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": true
93
+ },
94
+ "151654": {
95
+ "content": "<|vision_pad|>",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": true
101
+ },
102
+ "151655": {
103
+ "content": "<|image_pad|>",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": true
109
+ },
110
+ "151656": {
111
+ "content": "<|video_pad|>",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "151657": {
119
+ "content": "<tool_call>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": false
125
+ },
126
+ "151658": {
127
+ "content": "</tool_call>",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "151659": {
135
+ "content": "<|fim_prefix|>",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "151660": {
143
+ "content": "<|fim_middle|>",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "151661": {
151
+ "content": "<|fim_suffix|>",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "151662": {
159
+ "content": "<|fim_pad|>",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "151663": {
167
+ "content": "<|repo_name|>",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "151664": {
175
+ "content": "<|file_sep|>",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ }
182
+ },
183
+ "bos_token": "<|begin▁of▁sentence|>",
184
+ "clean_up_tokenization_spaces": false,
185
+ "eos_token": "<|end▁of▁sentence|>",
186
+ "extra_special_tokens": {},
187
+ "legacy": true,
188
+ "model_max_length": 16384,
189
+ "pad_token": "<|end▁of▁sentence|>",
190
+ "sp_model_kwargs": {},
191
+ "tokenizer_class": "LlamaTokenizerFast",
192
+ "unk_token": null,
193
+ "use_default_system_prompt": false
194
+ }
planning_2509_DeepSeek-R1-Distill-Qwen-1.5B_grpo/data.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f52c89a5bb665880ec72df26792f8689bc02c77f057f93ac05a8aaf8bb4cf0e5
3
+ size 1947