PumeTu commited on
Commit
ad15825
·
verified ·
1 Parent(s): 2ded385

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. checkpoint-100/chat_template.jinja +85 -0
  2. checkpoint-100/rng_state_0.pth +3 -0
  3. checkpoint-100/rng_state_1.pth +3 -0
  4. checkpoint-100/rng_state_10.pth +3 -0
  5. checkpoint-100/rng_state_100.pth +3 -0
  6. checkpoint-100/rng_state_103.pth +3 -0
  7. checkpoint-100/rng_state_104.pth +3 -0
  8. checkpoint-100/rng_state_105.pth +3 -0
  9. checkpoint-100/rng_state_107.pth +3 -0
  10. checkpoint-100/rng_state_11.pth +3 -0
  11. checkpoint-100/rng_state_110.pth +3 -0
  12. checkpoint-100/rng_state_111.pth +3 -0
  13. checkpoint-100/rng_state_113.pth +3 -0
  14. checkpoint-100/rng_state_114.pth +3 -0
  15. checkpoint-100/rng_state_117.pth +3 -0
  16. checkpoint-100/rng_state_118.pth +3 -0
  17. checkpoint-100/rng_state_121.pth +3 -0
  18. checkpoint-100/rng_state_124.pth +3 -0
  19. checkpoint-100/rng_state_126.pth +3 -0
  20. checkpoint-100/rng_state_127.pth +3 -0
  21. checkpoint-100/rng_state_15.pth +3 -0
  22. checkpoint-100/rng_state_2.pth +3 -0
  23. checkpoint-100/rng_state_20.pth +3 -0
  24. checkpoint-100/rng_state_23.pth +3 -0
  25. checkpoint-100/rng_state_24.pth +3 -0
  26. checkpoint-100/rng_state_25.pth +3 -0
  27. checkpoint-100/rng_state_27.pth +3 -0
  28. checkpoint-100/rng_state_28.pth +3 -0
  29. checkpoint-100/rng_state_29.pth +3 -0
  30. checkpoint-100/rng_state_3.pth +3 -0
  31. checkpoint-100/rng_state_30.pth +3 -0
  32. checkpoint-100/rng_state_33.pth +3 -0
  33. checkpoint-100/rng_state_34.pth +3 -0
  34. checkpoint-100/rng_state_36.pth +3 -0
  35. checkpoint-100/rng_state_37.pth +3 -0
  36. checkpoint-100/rng_state_38.pth +3 -0
  37. checkpoint-100/rng_state_39.pth +3 -0
  38. checkpoint-100/rng_state_4.pth +3 -0
  39. checkpoint-100/rng_state_40.pth +3 -0
  40. checkpoint-100/rng_state_42.pth +3 -0
  41. checkpoint-100/rng_state_43.pth +3 -0
  42. checkpoint-100/rng_state_48.pth +3 -0
  43. checkpoint-100/rng_state_5.pth +3 -0
  44. checkpoint-100/rng_state_51.pth +3 -0
  45. checkpoint-100/rng_state_52.pth +3 -0
  46. checkpoint-100/rng_state_54.pth +3 -0
  47. checkpoint-100/rng_state_58.pth +3 -0
  48. checkpoint-100/rng_state_61.pth +3 -0
  49. checkpoint-100/rng_state_62.pth +3 -0
  50. checkpoint-100/rng_state_63.pth +3 -0
checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
checkpoint-100/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f563a951eafc3c010d27ce0635a50921c7b0f34c659cbe65ea9241c7edee68ff
3
+ size 15429
checkpoint-100/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc547021646860ebff632b37ffa20890aab424a061be75772fecf3826f23d057
3
+ size 15429
checkpoint-100/rng_state_10.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1b005a0e01bbfce4be2a10f2ba4e6c7f14dd3a17405dd4ee447ccc9941a0297
3
+ size 15440
checkpoint-100/rng_state_100.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f26d71ad4f7e72d7b9b54b787fe5dff08ed17bd4be3fdb4bd9eb6c6ff6a7e710
3
+ size 15515
checkpoint-100/rng_state_103.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc9c7465b9754933fee5550448339d17a2ed2d5a274daed07f326c7d9a509d41
3
+ size 15515
checkpoint-100/rng_state_104.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0889aec2891983f59da21379195005477846e3a4b3e4ba7c83335d1c3b7f506e
3
+ size 15515
checkpoint-100/rng_state_105.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:792933c671f1263deb2c94a71d984cad4891449a2669f4ac041ca4ae02dcfe10
3
+ size 15515
checkpoint-100/rng_state_107.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae1bc560dba58adf161c36c28c433c6579d1ff74c7c42586778be31c6c2e683c
3
+ size 15515
checkpoint-100/rng_state_11.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2bbdbd7c5e51eed19d84aedfffd397dfccc0bae2e028685ec2b5c292499a462
3
+ size 15440
checkpoint-100/rng_state_110.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d33da0cfaf111e665c4cb9f82fbe913796c68a85e11be81bab08209dfa371c05
3
+ size 15515
checkpoint-100/rng_state_111.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e10a14ea702d83c10809d776aebfc45b58b2b04babbf8929b0d0d7644f57988
3
+ size 15515
checkpoint-100/rng_state_113.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48a0f37798c718912171093631911e9bfa478e2791831b6d1d595b9b320c5d30
3
+ size 15515
checkpoint-100/rng_state_114.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfbe0e9aaff3b10d2c7a46ca906902ba16a43493116b5f20d2b0c31189fbe41f
3
+ size 15515
checkpoint-100/rng_state_117.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dfcc11a8cea8d7e683ea75f10e301eb212b18168b8f6cb0d88b936ce1eacc6e
3
+ size 15515
checkpoint-100/rng_state_118.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67e161a55b46e2cc9cd152c780c1a476ef47bcb6676ed5b8b1ad621d9aaa859c
3
+ size 15515
checkpoint-100/rng_state_121.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caa5877b07b417e7aae244b5f00e448b7e2775a98ae2e3b3093ebb573e7ca8e8
3
+ size 15515
checkpoint-100/rng_state_124.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e16733ef58a2cb0d970058eaaad07c531f1e221d12f919951ab677eebf0c721
3
+ size 15515
checkpoint-100/rng_state_126.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:003367c6d7d3889096233c84f02ba6a38359532067a5f2e01db8a7dbaf865181
3
+ size 15515
checkpoint-100/rng_state_127.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:978c4b0702dd07b0e0b8c3d976991fc7162042f3b0f92060109703463ef4ef48
3
+ size 15515
checkpoint-100/rng_state_15.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30fd2009317befd849be26f4b229f623a0517fbe8bb5343cd43d691ee474f990
3
+ size 15440
checkpoint-100/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:351d474b8f935ecfa1ca2704892eb3a5a5586e1d50854c62f549d0a38ab85ba5
3
+ size 15429
checkpoint-100/rng_state_20.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3cd98f614cdf89ec122c7b1fb02bce1cd10f223693d97f2069dd0fedc564b82
3
+ size 15440
checkpoint-100/rng_state_23.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4454a3d698aa884e1258413b47262543440409b2c963be8c3e0a2555df5bb1d3
3
+ size 15440
checkpoint-100/rng_state_24.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41f836a584229d2fb9e4462ae210aa61d47dc0f5f87ea7fa2fba21eaa3551c26
3
+ size 15440
checkpoint-100/rng_state_25.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ee6615a38d268fcb35bd3e326f83cb4f494517336507b52ce459252903ba794
3
+ size 15440
checkpoint-100/rng_state_27.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fddcced262f1abca8f93176e249a6fb36f34e24ee910cee3ae2b153035c4abff
3
+ size 15440
checkpoint-100/rng_state_28.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:733ffbe8a09c6d4d55d5e90c2db9e0b75cdacc3cbb36b12d9641173393a3ec76
3
+ size 15440
checkpoint-100/rng_state_29.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74ff02ab958f0ddc0a8a1d156c9821ece96ad97e375d7bc36380b103cbdfba80
3
+ size 15440
checkpoint-100/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:900bd3a638f02da4483f8c99de65e8fc0d8ad340941398d4daec048a5a4f2779
3
+ size 15429
checkpoint-100/rng_state_30.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c892b744659c42dc42d46e1b55e517d8e32bfd3767e2f3eba3031044a5b3c4d
3
+ size 15440
checkpoint-100/rng_state_33.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa52df7768cf4e7bb1594b6fcb78231c6c7a891894e735a61cc69b996541d7df
3
+ size 15440
checkpoint-100/rng_state_34.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c0d8cb1fcb80648549723e712fb3e9127c7dfcaef99f01eb7800896b41de892
3
+ size 15440
checkpoint-100/rng_state_36.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48eb6ad4556c9b9155a41a27203349ba42954e3fb538f676d051ecf1311d6660
3
+ size 15440
checkpoint-100/rng_state_37.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e53eae476b0b957ae75aa78c0af0258d625496d05a14e098882ecafb8b88fae
3
+ size 15440
checkpoint-100/rng_state_38.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5193fc1da4446787c262d93f33638f13a4d578a63530c39219be0265f1155ca8
3
+ size 15440
checkpoint-100/rng_state_39.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44f415b74ec89224651df5d36719da81c921ce5a08a0d484515c7d0c357c83f8
3
+ size 15440
checkpoint-100/rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99b1c862d7a94cb8e625a214b4d91a294b3fe7610c82398dbe40d8010c285276
3
+ size 15429
checkpoint-100/rng_state_40.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03283e7fcf39ded1e03b4bcb33ece33b1744419704e760668e36fbad4eb06da7
3
+ size 15440
checkpoint-100/rng_state_42.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a2d4cc2b20babdd5662ca4feccd7594a649e5c54dbb8a3fe177bb63e660b4be
3
+ size 15440
checkpoint-100/rng_state_43.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2b925633686f564ec814906cde6f54225e63f896350cec2961e30a0b7768696
3
+ size 15440
checkpoint-100/rng_state_48.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e58e0e32598a54b84fa48d0d531c7b2bc3e5c0dc0b44302c4a6c9148b0a4cb2
3
+ size 15440
checkpoint-100/rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63c9c5b6b74cd3db672a9c9b320134650f0f6141e40c0efdfa5890730696e7e7
3
+ size 15429
checkpoint-100/rng_state_51.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70cd038ae2c03423ed586accee67957bb39f3e933f8e89da80540e15605a0543
3
+ size 15440
checkpoint-100/rng_state_52.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:226b7ebf2c9b4b920cb1f23dd55e660a4439dd450a0cf7fc8aefa214dc5dd72a
3
+ size 15440
checkpoint-100/rng_state_54.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e63a1d6d35778a163ddfdedaffede07bfb770fcfe45cd1d639e0ce426c2ee5a
3
+ size 15440
checkpoint-100/rng_state_58.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35c14646b459d9ee937b5425b25831e2005603b929bfe5aa0322fa8a036ca4fa
3
+ size 15440
checkpoint-100/rng_state_61.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9cb8f95731ed797140eef69b4a4575c58693f935359de91951a8c4a62480b52
3
+ size 15440
checkpoint-100/rng_state_62.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7f17b2ac5803e72ae4f69f23281313fdc48ffa7c8d24d065e0d6717762127fb
3
+ size 15440
checkpoint-100/rng_state_63.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec42adf7d95bc351b3fc26984a8e4b40de8a177422237bca0ae2fbfd89f7d0fd
3
+ size 15440