yuzhe commited on
Commit
65579ec
·
verified ·
1 Parent(s): d4c3f1b

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. Modelfile +13 -0
  3. chat_template.jinja +103 -0
  4. config.json +43 -0
  5. generation_config.json +10 -0
  6. model-00001-of-00043.safetensors +3 -0
  7. model-00002-of-00043.safetensors +3 -0
  8. model-00003-of-00043.safetensors +3 -0
  9. model-00004-of-00043.safetensors +3 -0
  10. model-00005-of-00043.safetensors +3 -0
  11. model-00006-of-00043.safetensors +3 -0
  12. model-00007-of-00043.safetensors +3 -0
  13. model-00008-of-00043.safetensors +3 -0
  14. model-00009-of-00043.safetensors +3 -0
  15. model-00010-of-00043.safetensors +3 -0
  16. model-00011-of-00043.safetensors +3 -0
  17. model-00012-of-00043.safetensors +3 -0
  18. model-00013-of-00043.safetensors +3 -0
  19. model-00014-of-00043.safetensors +3 -0
  20. model-00015-of-00043.safetensors +3 -0
  21. model-00016-of-00043.safetensors +3 -0
  22. model-00017-of-00043.safetensors +3 -0
  23. model-00018-of-00043.safetensors +3 -0
  24. model-00019-of-00043.safetensors +3 -0
  25. model-00020-of-00043.safetensors +3 -0
  26. model-00021-of-00043.safetensors +3 -0
  27. model-00022-of-00043.safetensors +3 -0
  28. model-00023-of-00043.safetensors +3 -0
  29. model-00024-of-00043.safetensors +3 -0
  30. model-00025-of-00043.safetensors +3 -0
  31. model-00026-of-00043.safetensors +3 -0
  32. model-00027-of-00043.safetensors +3 -0
  33. model-00028-of-00043.safetensors +3 -0
  34. model-00029-of-00043.safetensors +3 -0
  35. model-00030-of-00043.safetensors +3 -0
  36. model-00031-of-00043.safetensors +3 -0
  37. model-00032-of-00043.safetensors +3 -0
  38. model-00033-of-00043.safetensors +3 -0
  39. model-00034-of-00043.safetensors +3 -0
  40. model-00035-of-00043.safetensors +3 -0
  41. model-00036-of-00043.safetensors +3 -0
  42. model-00037-of-00043.safetensors +3 -0
  43. model-00038-of-00043.safetensors +3 -0
  44. model-00039-of-00043.safetensors +3 -0
  45. model-00040-of-00043.safetensors +3 -0
  46. model-00041-of-00043.safetensors +3 -0
  47. model-00042-of-00043.safetensors +3 -0
  48. model-00043-of-00043.safetensors +3 -0
  49. model.safetensors.index.json +0 -0
  50. special_tokens_map.json +40 -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
Modelfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ollama modelfile auto-generated by llamafactory
2
+
3
+ FROM .
4
+
5
+ TEMPLATE """[gMASK]<sop>{{ if .System }}<|system|>
6
+ {{ .System }}{{ end }}{{ range .Messages }}{{ if eq .Role "user" }}<|user|>
7
+ {{ .Content }}<|assistant|>{{ else if eq .Role "assistant" }}
8
+ {{ .Content }}{{ end }}{{ end }}"""
9
+
10
+ PARAMETER stop "<|user|>"
11
+ PARAMETER stop "<|endoftext|>"
12
+ PARAMETER stop "<|observation|>"
13
+ PARAMETER num_ctx 4096
chat_template.jinja ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ <|system|>
4
+ # Tools
5
+
6
+ You may call one or more functions to assist with the user query.
7
+
8
+ You are provided with function signatures within <tools></tools> XML tags:
9
+ <tools>
10
+ {% for tool in tools %}
11
+ {{ tool | tojson(ensure_ascii=False) }}
12
+ {% endfor %}
13
+ </tools>
14
+
15
+ For each function call, output the function name and arguments within the following XML format:
16
+ <tool_call>{function-name}
17
+ <arg_key>{arg-key-1}</arg_key>
18
+ <arg_value>{arg-value-1}</arg_value>
19
+ <arg_key>{arg-key-2}</arg_key>
20
+ <arg_value>{arg-value-2}</arg_value>
21
+ ...
22
+ </tool_call>{%- endif -%}
23
+ {%- macro visible_text(content) -%}
24
+ {%- if content is string -%}
25
+ {{- content }}
26
+ {%- elif content is iterable and content is not mapping -%}
27
+ {%- for item in content -%}
28
+ {%- if item is mapping and item.type == 'text' -%}
29
+ {{- item.text }}
30
+ {%- elif item is string -%}
31
+ {{- item }}
32
+ {%- endif -%}
33
+ {%- endfor -%}
34
+ {%- else -%}
35
+ {{- content }}
36
+ {%- endif -%}
37
+ {%- endmacro -%}
38
+ {%- set ns = namespace(last_user_index=-1) %}
39
+ {%- for m in messages %}
40
+ {%- if m.role == 'user' %}
41
+ {% set ns.last_user_index = loop.index0 -%}
42
+ {%- endif %}
43
+ {%- endfor %}
44
+ {% for m in messages %}
45
+ {%- if m.role == 'user' -%}<|user|>
46
+ {{ visible_text(m.content) }}
47
+ {{- '/nothink' if (enable_thinking is defined and not enable_thinking and not visible_text(m.content).endswith("/nothink")) else '' -}}
48
+ {%- elif m.role == 'assistant' -%}
49
+ <|assistant|>
50
+ {%- set reasoning_content = '' %}
51
+ {%- set content = visible_text(m.content) %}
52
+ {%- if m.reasoning_content is string %}
53
+ {%- set reasoning_content = m.reasoning_content %}
54
+ {%- else %}
55
+ {%- if '</think>' in content %}
56
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
57
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {%- if loop.index0 > ns.last_user_index and reasoning_content -%}
61
+ {{ '\n<think>' + reasoning_content.strip() + '</think>'}}
62
+ {%- else -%}
63
+ {{ '\n<think></think>' }}
64
+ {%- endif -%}
65
+ {%- if content.strip() -%}
66
+ {{ '\n' + content.strip() }}
67
+ {%- endif -%}
68
+ {% if m.tool_calls %}
69
+ {% for tc in m.tool_calls %}
70
+ {%- if tc.function %}
71
+ {%- set tc = tc.function %}
72
+ {%- endif %}
73
+ {{ '\n<tool_call>' + tc.name }}
74
+ {% set _args = tc.arguments %}
75
+ {% for k, v in _args.items() %}
76
+ <arg_key>{{ k }}</arg_key>
77
+ <arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>
78
+ {% endfor %}
79
+ </tool_call>{% endfor %}
80
+ {% endif %}
81
+ {%- elif m.role == 'tool' -%}
82
+ {%- if m.content is string -%}
83
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
84
+ {{- '<|observation|>' }}
85
+ {%- endif %}
86
+ {{- '\n<tool_response>\n' }}
87
+ {{- m.content }}
88
+ {{- '\n</tool_response>' }}
89
+ {%- else -%}
90
+ <|observation|>{% for tr in m.content %}
91
+
92
+ <tool_response>
93
+ {{ tr.output if tr.output is defined else tr }}
94
+ </tool_response>{% endfor -%}
95
+ {% endif -%}
96
+ {%- elif m.role == 'system' -%}
97
+ <|system|>
98
+ {{ visible_text(m.content) }}
99
+ {%- endif -%}
100
+ {%- endfor -%}
101
+ {%- if add_generation_prompt -%}
102
+ <|assistant|>{{- '\n<think></think>' if (enable_thinking is defined and not enable_thinking) else '' -}}
103
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Glm4MoeForCausalLM"
4
+ ],
5
+ "attention_bias": true,
6
+ "attention_dropout": 0.0,
7
+ "eos_token_id": [
8
+ 151329,
9
+ 151336,
10
+ 151338
11
+ ],
12
+ "first_k_dense_replace": 1,
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 4096,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 10944,
18
+ "max_position_embeddings": 131072,
19
+ "model_type": "glm4_moe",
20
+ "moe_intermediate_size": 1408,
21
+ "n_group": 1,
22
+ "n_routed_experts": 128,
23
+ "n_shared_experts": 1,
24
+ "norm_topk_prob": true,
25
+ "num_attention_heads": 96,
26
+ "num_experts_per_tok": 8,
27
+ "num_hidden_layers": 46,
28
+ "num_key_value_heads": 8,
29
+ "num_nextn_predict_layers": 1,
30
+ "pad_token_id": 151329,
31
+ "partial_rotary_factor": 0.5,
32
+ "rms_norm_eps": 1e-05,
33
+ "rope_scaling": null,
34
+ "rope_theta": 1000000,
35
+ "routed_scaling_factor": 1.0,
36
+ "tie_word_embeddings": false,
37
+ "topk_group": 1,
38
+ "torch_dtype": "bfloat16",
39
+ "transformers_version": "4.56.0.dev0",
40
+ "use_cache": true,
41
+ "use_qk_norm": false,
42
+ "vocab_size": 151552
43
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 151329,
5
+ 151336,
6
+ 151338
7
+ ],
8
+ "pad_token_id": 151329,
9
+ "transformers_version": "4.56.0.dev0"
10
+ }
model-00001-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84e4797b923360e45ddd528743082fa3219cf12667c2f77eebc1c32d7a31640b
3
+ size 4991854888
model-00002-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12afe30c2d8d2730e857a4eca6d39c1e2278a0949b2b3908694214d5d71ab93c
3
+ size 4994465432
model-00003-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a94f09da829b707867782634636de19ddfcc905b55e5cae223846d63349c6e24
3
+ size 4994465456
model-00004-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbf00c65cc00771a681377c0edbd2e0ce21b684fa4a7d3df747dace683e72860
3
+ size 4994465456
model-00005-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c2a264250bdf6a235ba8c92bf49c454a6d969ca2c38d991079774e8f372f2e2
3
+ size 4994465456
model-00006-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51ec6d11ea61d088254cf2846957a085b0ae42479a41ef25f3022b9713ada547
3
+ size 4974587472
model-00007-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79a4c82bcd373a0d503b4dda4234991abcc66634368d6ef422e368a741aab971
3
+ size 4991318688
model-00008-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c8ac7af722f3f2c1a01c2107fe6c7a2633b05f0b61bc792b053b5d8df1b1925
3
+ size 4994465424
model-00009-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:874b345a9741853533b236d9a29c2cc9087c181157f135c6eed87383a7fb452e
3
+ size 4994465544
model-00010-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f165b5f57fac130f25a95a530c01ffde97447f6fa2ff2afc15813e8abdddee37
3
+ size 4994465856
model-00011-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84f2499ccf0465de3d08d44f4b6ce8c66a9e5642e19fe34c31450e6b0b59e39a
3
+ size 4994465856
model-00012-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e94daf86352642d811cdf7bc0f7f9f7e4576414fefc7da83a101951fa2ef3363
3
+ size 4994465856
model-00013-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd635fc8d5efa1e854a43526d8130a317a616bedf0e428fd7cd3f2213722f97f
3
+ size 4994465856
model-00014-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2f2ed9d8ff91765b8b90a068e8c7f52c9d877ccd0e0b20105bcb3123ffc1994
3
+ size 4994465856
model-00015-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b00197ebaa6f2e26364bdf4dd3d97cbc61d926b7a87bb01a62a199f1f39d113
3
+ size 4994465856
model-00016-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:289b88073a8f7ceff0be0019e89917c435a14450a8e7963c93c65b254c35bb8a
3
+ size 4994465856
model-00017-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fb5cdd007f89b007ebb3c5c8ce07f96758f369cc1ce0f6db2f92c13d5a02284
3
+ size 4994465856
model-00018-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f51324da2985ad06efd6f542425838de311920089cb1e4604df67723b006b4af
3
+ size 4994465872
model-00019-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6476b510a2dda718222b43a727b4992f57fd4b7f0e709eb0dc92d2c62c2a6ff5
3
+ size 4994465880
model-00020-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:608a87f4178049fda07770a4f325ec56b443627ebd2b8c0f9d55d2f78dd8948b
3
+ size 4994465880
model-00021-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dca8106d50a7c040763cb253a57df0485fe224337f7a15fdcf9ec537ffddc4a4
3
+ size 4992409512
model-00022-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:639b27d1245a12ce73d41f95d6a7786708de8c054e51a908cc3bfc72ae83dffa
3
+ size 4996566416
model-00023-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb7dc654b14e59b3fc4bdceb58077484f29883d0332b43daeb257d8f711a5218
3
+ size 4994465848
model-00024-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c0d52d1ff5e6dc6c1a7c5c8c687ed13374443afe914979e8b594c1774c2b16f
3
+ size 4994465856
model-00025-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc0dbd2f6dfc1b8be1669371d4b96a09ca3f37e6a4cf92f29a12e508c4a6574d
3
+ size 4994465856
model-00026-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d3855aa6e7b3531f4654953acf1632c0cb4c83eb4664af75aab69fced4b1bc0
3
+ size 4994465856
model-00027-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfbff51133889ad5d7c1e865fdb76eb5e35af51c9f09b312f3b39381c3a68bf4
3
+ size 4994465856
model-00028-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8765872659c5f4becbd189db1544c0adb06853ce9a65b02730f3e753c21f7c52
3
+ size 4994465856
model-00029-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb4e4b1cb031324775792656707819a60c35f6ef7903a97577f4810cb7324d3c
3
+ size 4994465856
model-00030-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f345af1337423c9cec05b240896457a597cc96d32c16e4c3db8f597e9c49956
3
+ size 4994465856
model-00031-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f3a2528e9bce3553fb6e15c9b8179bb869aff2622ae8d3905efaec25c109176
3
+ size 4994465856
model-00032-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83f87e68ccc54a6352c6696a6638fbb78572f05b023ad527e5e5638ea6cc389d
3
+ size 4994465856
model-00033-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54ce0f4dee522e265dd9c3a9557f6813fbe5a2dd68c790a686e51dd8bf5b545c
3
+ size 4994465872
model-00034-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:305d687bb88a1086a2f40fd31be0554349fe98ba72eb8ce10eb9912c802cb9d9
3
+ size 4994465880
model-00035-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e300cc912ac8afc8d61322cda7cb83b03e496703a875b513448212e33f2a356
3
+ size 4994465880
model-00036-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fa960d6a0239d981fb4b9cb7cd5dd937486ff2c96a2d4f900f32e24c2346a8c
3
+ size 4903255872
model-00037-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:698c1848517f71752df5b55106b042682adbc08f5713700a81d38d6f04a875cc
3
+ size 4993444376
model-00038-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca9698e6d8c9d7d6693618b3cce7109a531e4017710cecccedb8e7efd3087ebe
3
+ size 4994465840
model-00039-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3999a639dd7eb01c08e84b1d36a2cd48fb11ff81554ffe1af286c6eb57a41001
3
+ size 4994465856
model-00040-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:924065b39beec0d5de82b1c86f63e8ce3ea2c7cd658ab08b5c7ee1bac6680926
3
+ size 4994465856
model-00041-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd8cabda80a11bb8ce209e9b8581f53c149bfa66b4b90aabaa9dc20252dc78a6
3
+ size 4994465856
model-00042-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25ea3efbee2727d6b2619e619d6bce7b3590dadd5e523488bf0d6a178bcb28eb
3
+ size 4994465856
model-00043-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eddc2e6b0ab9621e6f7505483ad68604f39db8fb17675e78b018526278551de3
3
+ size 4056996736
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,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>",
4
+ "[MASK]",
5
+ "[gMASK]",
6
+ "[sMASK]",
7
+ "<sop>",
8
+ "<eop>",
9
+ "<|system|>",
10
+ "<|user|>",
11
+ "<|assistant|>",
12
+ "<|observation|>",
13
+ "<|begin_of_image|>",
14
+ "<|end_of_image|>",
15
+ "<|begin_of_video|>",
16
+ "<|end_of_video|>",
17
+ "<|begin_of_audio|>",
18
+ "<|end_of_audio|>",
19
+ "<|begin_of_transcription|>",
20
+ "<|end_of_transcription|>",
21
+ "<|code_prefix|>",
22
+ "<|code_middle|>",
23
+ "<|code_suffix|>",
24
+ "/nothink"
25
+ ],
26
+ "eos_token": {
27
+ "content": "<|endoftext|>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ },
33
+ "pad_token": {
34
+ "content": "<|endoftext|>",
35
+ "lstrip": false,
36
+ "normalized": false,
37
+ "rstrip": false,
38
+ "single_word": false
39
+ }
40
+ }