ZAHNGYUXUAN commited on
Commit
89b4764
·
verified ·
1 Parent(s): f2f46ee

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. .gitattributes +1 -0
  2. chat_template.jinja +103 -0
  3. config.json +43 -0
  4. model-00001-of-00047.safetensors +3 -0
  5. model-00002-of-00047.safetensors +3 -0
  6. model-00003-of-00047.safetensors +3 -0
  7. model-00004-of-00047.safetensors +3 -0
  8. model-00005-of-00047.safetensors +3 -0
  9. model-00006-of-00047.safetensors +3 -0
  10. model-00007-of-00047.safetensors +3 -0
  11. model-00008-of-00047.safetensors +3 -0
  12. model-00009-of-00047.safetensors +3 -0
  13. model-00010-of-00047.safetensors +3 -0
  14. model-00011-of-00047.safetensors +3 -0
  15. model-00012-of-00047.safetensors +3 -0
  16. model-00013-of-00047.safetensors +3 -0
  17. model-00014-of-00047.safetensors +3 -0
  18. model-00015-of-00047.safetensors +3 -0
  19. model-00016-of-00047.safetensors +3 -0
  20. model-00017-of-00047.safetensors +3 -0
  21. model-00018-of-00047.safetensors +3 -0
  22. model-00019-of-00047.safetensors +3 -0
  23. model-00020-of-00047.safetensors +3 -0
  24. model-00021-of-00047.safetensors +3 -0
  25. model-00022-of-00047.safetensors +3 -0
  26. model-00023-of-00047.safetensors +3 -0
  27. model-00024-of-00047.safetensors +3 -0
  28. model-00025-of-00047.safetensors +3 -0
  29. model-00026-of-00047.safetensors +3 -0
  30. model-00027-of-00047.safetensors +3 -0
  31. model-00028-of-00047.safetensors +3 -0
  32. model-00029-of-00047.safetensors +3 -0
  33. model-00030-of-00047.safetensors +3 -0
  34. model-00031-of-00047.safetensors +3 -0
  35. model-00032-of-00047.safetensors +3 -0
  36. model-00033-of-00047.safetensors +3 -0
  37. model-00034-of-00047.safetensors +3 -0
  38. model-00035-of-00047.safetensors +3 -0
  39. model-00036-of-00047.safetensors +3 -0
  40. model-00037-of-00047.safetensors +3 -0
  41. model-00038-of-00047.safetensors +3 -0
  42. model-00039-of-00047.safetensors +3 -0
  43. model-00040-of-00047.safetensors +3 -0
  44. model-00041-of-00047.safetensors +3 -0
  45. model-00042-of-00047.safetensors +3 -0
  46. model-00043-of-00047.safetensors +3 -0
  47. model-00045-of-00047.safetensors +3 -0
  48. model-00047-of-00047.safetensors +3 -0
  49. model.safetensors.index.json +0 -0
  50. tokenizer.json +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
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
+ "pad_token_id": 151329,
8
+ "eos_token_id": [
9
+ 151329,
10
+ 151336,
11
+ 151338
12
+ ],
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 4096,
16
+ "partial_rotary_factor": 0.5,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 10944,
19
+ "max_position_embeddings": 131072,
20
+ "model_type": "glm4_moe",
21
+ "moe_intermediate_size": 1408,
22
+ "norm_topk_prob": true,
23
+ "num_attention_heads": 96,
24
+ "n_group": 1,
25
+ "topk_group": 1,
26
+ "n_routed_experts": 128,
27
+ "n_shared_experts": 1,
28
+ "routed_scaling_factor": 1.0,
29
+ "num_experts_per_tok": 8,
30
+ "first_k_dense_replace": 1,
31
+ "num_hidden_layers": 46,
32
+ "num_key_value_heads": 8,
33
+ "rms_norm_eps": 1e-05,
34
+ "rope_scaling": null,
35
+ "rope_theta": 1000000,
36
+ "num_nextn_predict_layers": 1,
37
+ "tie_word_embeddings": false,
38
+ "torch_dtype": "bfloat16",
39
+ "transformers_version": "4.54.0",
40
+ "use_cache": true,
41
+ "use_qk_norm": false,
42
+ "vocab_size": 151552
43
+ }
model-00001-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf40ee4cfb4064cc3bdebddc5eb84808815b3908ad40611e1825e7f8d8bd56f2
3
+ size 2970138176
model-00002-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5df5534eec7264f9a87204715bb81d5bfd55849e1fd0fa0af118e2e0ca67d01f
3
+ size 4683035216
model-00003-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e621684a989e629eb35c884da0c8961c245b157758bb950c8f36a789689b3603
3
+ size 4683035216
model-00004-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d2e2d1028484c15add591acf12e393a492f1adcfae16a09413fdb0d14cd3c7d
3
+ size 4683035216
model-00005-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:701af98fe4f9b04c0e2b81a892bae644e78c49c967ef882cea53a8e8c7bc73d8
3
+ size 4683035216
model-00006-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15d64fea65939fcd4b92e6ab0b7a6b6b7870957d7c6cd052fad0b32a38dd1d26
3
+ size 4683035216
model-00007-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ba688b9f983776c155d21754f429af741963c0e9a54c50361eb323afe603b4d
3
+ size 4683035216
model-00008-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd56cf39c66f2ac667237ad3e4f0fc93d12d63f6a15c5af91c25ac2d59229aaf
3
+ size 4683035216
model-00009-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3d7f37b7723baeb39f9127c58c18808711904554fc762fb00ab4ee5188eefe6
3
+ size 4683035216
model-00010-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e9e60dd8c68a3c4305baf4430a5dbb602ab6a07175c62972c94533ba34f4686
3
+ size 4683035216
model-00011-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96dec0a131067829287e5531022c1614250de3e3699629bccbcbab727b6c3316
3
+ size 4683035616
model-00012-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c09b419e56149d209626e3c2da88c868edb2f41821e4c32b796a52dea292135
3
+ size 4683035616
model-00013-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bda1bd4f1f303327954665261198f6c9e0f89758b1e3469d01ace18c171bd46c
3
+ size 4683035616
model-00014-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1243e0d0c443b50704b6b4d0d1642b24d6aca2f20db81bbd8fa3aaf9afdfd39
3
+ size 4683035616
model-00015-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18e46a491c1631a6f61b5cb0e490b952d877242152e9fca4e1cd265db2a6cdf2
3
+ size 4683035616
model-00016-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdabf61b71c200bf0b3b443b89f20e09129ef45a4eb53680724a74f710ac1e7b
3
+ size 4683035616
model-00017-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c29ae88bbbb1008081488a53d869159df43513f3250efcc14478be2c8574c8b2
3
+ size 4683035616
model-00018-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c85906cfba9319dd4f5ea45190a4115249e0bc092f9a5364ac37decb7261fba8
3
+ size 4683035616
model-00019-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce53f6795024b6dd01939a3781ef2798aa6706cdc2791663bdb5a2a2123e9533
3
+ size 4683035616
model-00020-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44fb25c231b3064b1c42617f0b0ba6febd78dc673db72516c003766f8595d3d8
3
+ size 4683035616
model-00021-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e4dc2f2ca6f192a44a842845591b1cd4ec7f104fbebed8f95c4ebafeddedd4b
3
+ size 4683035616
model-00022-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f97ac4eeed0c452d672ea9294940261a5302a8e9fdcedc5bd6afd95a481134e8
3
+ size 4683035616
model-00023-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7eac740c84803cf4aa648589ef653fbabb061202cad838e58400aa6d3a9d1a57
3
+ size 4683035616
model-00024-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4f5ea9831d1d791a09b67ae1907b9d04a4aec7891e3a06b2061faf46c111fe3
3
+ size 4683035616
model-00025-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0c5f160a451b604603bca502c98d53b2de85526afbd86340d0376ea4f20b2c7
3
+ size 4683035616
model-00026-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e024ae4836ab68412f7aba85708ca84c6d7d6494792d15711505278b2431af9
3
+ size 4683035616
model-00027-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea2d70cefbbae4c9a1b4fb9fea921125415df2cd90bd959726e1acd5f60e1ccc
3
+ size 4683035616
model-00028-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ccac189bb1536d2f3af4670f8009a4344c1141b4002d03b4a0236d63048a787
3
+ size 4683035616
model-00029-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b326f31362528b83655e0d13c30e4484560976a0c2a56d349213db7be37f1a79
3
+ size 4683035616
model-00030-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b8c1d982a8613050cbbb4bccee9b3b9fed114b5c4bdc3caacd2406bffbadd12
3
+ size 4683035616
model-00031-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:665ec1bd1bed6820aa2d09ba82d583a9ef304f64b9b9cdac30caaac8792023c5
3
+ size 4683035616
model-00032-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dc765c6d5d2265a4f5cab5ea78d8770d4b666c8df78dd240a4c0ee3f54ee8f6
3
+ size 4683035616
model-00033-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9044129e80741207d2156f93f0f6e736455c404772d371abe3d2895df72bf2c
3
+ size 4683035616
model-00034-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2588930866ddef08c7e310df044deb0e2ae0ae4ada5a80319fc87b60e9e33914
3
+ size 4683035616
model-00035-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85a67bf4c828c51601ae5a54ecbc030e6e4eb89ff5e29361797b764f3778008b
3
+ size 4683035616
model-00036-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:398234ceda03cf27e800c659df7086c3377c0a86df621c0773cd11d800204a28
3
+ size 4683035616
model-00037-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fb25fbfe67387390e13c58a5e712b5f7f83c3922dda426b26c5c9be1fe4f01c
3
+ size 4683035616
model-00038-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da9eb496ce1fee40dd02fdc8491515270c839730b7562fc8c593a45560e97efe
3
+ size 4683035616
model-00039-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c51db4b6e32fcd495c37ea7e6874ad71a176bd8d593500664dbe57522181e21b
3
+ size 4683035616
model-00040-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ab61c5a5dd731ec385f0fe8b9a00c14ab21aaf1de7f0ef3097e6b4920bde347
3
+ size 4683035616
model-00041-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ebee4e911c738b3cfdd77540553413267d7ab646e34e223dec5daf7334324ef
3
+ size 4683035616
model-00042-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bccab153b1b90f1f510b45ac3c8524772d67c21e349a4303197a794b85b5d248
3
+ size 4683035616
model-00043-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a958b0b38d2a7c9e6a89b3123aa341eadf6ed6f730c0395b75d08f2bedb07b4
3
+ size 4683035616
model-00045-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13a9eef0444c4d25401c8e7008cc693a0a8a3eb2ae2a15620a76ef7f2a2a235a
3
+ size 4683035616
model-00047-of-00047.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd077dc9b9e37b276df529f84227c59c3477f03c53b2538f2bccb2c9806e7c96
3
+ size 4750169496
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9340665016419c825c4bdabbcc9acc43b7ca2c68ce142724afa829abb1be5efd
3
+ size 19970699