varjoranta commited on
Commit
cb092c4
·
verified ·
1 Parent(s): 058c121

Upload GLM-5.1 TQ3 checkpoint (3-bit, 4.9x compression, 309 GB)

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 +2 -0
  2. chat_template.jinja +86 -0
  3. config.json +139 -0
  4. model-00001-of-00058.safetensors +3 -0
  5. model-00002-of-00058.safetensors +3 -0
  6. model-00003-of-00058.safetensors +3 -0
  7. model-00004-of-00058.safetensors +3 -0
  8. model-00005-of-00058.safetensors +3 -0
  9. model-00006-of-00058.safetensors +3 -0
  10. model-00007-of-00058.safetensors +3 -0
  11. model-00008-of-00058.safetensors +3 -0
  12. model-00009-of-00058.safetensors +3 -0
  13. model-00010-of-00058.safetensors +3 -0
  14. model-00011-of-00058.safetensors +3 -0
  15. model-00012-of-00058.safetensors +3 -0
  16. model-00013-of-00058.safetensors +3 -0
  17. model-00014-of-00058.safetensors +3 -0
  18. model-00015-of-00058.safetensors +3 -0
  19. model-00016-of-00058.safetensors +3 -0
  20. model-00017-of-00058.safetensors +3 -0
  21. model-00018-of-00058.safetensors +3 -0
  22. model-00019-of-00058.safetensors +3 -0
  23. model-00020-of-00058.safetensors +3 -0
  24. model-00021-of-00058.safetensors +3 -0
  25. model-00022-of-00058.safetensors +3 -0
  26. model-00023-of-00058.safetensors +3 -0
  27. model-00024-of-00058.safetensors +3 -0
  28. model-00025-of-00058.safetensors +3 -0
  29. model-00026-of-00058.safetensors +3 -0
  30. model-00027-of-00058.safetensors +3 -0
  31. model-00028-of-00058.safetensors +3 -0
  32. model-00029-of-00058.safetensors +3 -0
  33. model-00030-of-00058.safetensors +3 -0
  34. model-00031-of-00058.safetensors +3 -0
  35. model-00032-of-00058.safetensors +3 -0
  36. model-00033-of-00058.safetensors +3 -0
  37. model-00034-of-00058.safetensors +3 -0
  38. model-00035-of-00058.safetensors +3 -0
  39. model-00036-of-00058.safetensors +3 -0
  40. model-00037-of-00058.safetensors +3 -0
  41. model-00038-of-00058.safetensors +3 -0
  42. model-00039-of-00058.safetensors +3 -0
  43. model-00040-of-00058.safetensors +3 -0
  44. model-00041-of-00058.safetensors +3 -0
  45. model-00042-of-00058.safetensors +3 -0
  46. model-00043-of-00058.safetensors +3 -0
  47. model-00044-of-00058.safetensors +3 -0
  48. model-00045-of-00058.safetensors +3 -0
  49. model-00046-of-00058.safetensors +3 -0
  50. model-00047-of-00058.safetensors +3 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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
+ model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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}<arg_key>{arg-key-1}</arg_key><arg_value>{arg-value-1}</arg_value><arg_key>{arg-key-2}</arg_key><arg_value>{arg-value-2}</arg_value>...</tool_call>{%- endif -%}
17
+ {%- macro visible_text(content) -%}
18
+ {%- if content is string -%}
19
+ {{- content }}
20
+ {%- elif content is iterable and content is not mapping -%}
21
+ {%- for item in content -%}
22
+ {%- if item is mapping and item.type == 'text' -%}
23
+ {{- item.text }}
24
+ {%- elif item is string -%}
25
+ {{- item }}
26
+ {%- endif -%}
27
+ {%- endfor -%}
28
+ {%- else -%}
29
+ {{- content }}
30
+ {%- endif -%}
31
+ {%- endmacro -%}
32
+ {%- set ns = namespace(last_user_index=-1) %}
33
+ {%- for m in messages %}
34
+ {%- if m.role == 'user' %}
35
+ {%- set ns.last_user_index = loop.index0 -%}
36
+ {%- endif %}
37
+ {%- endfor %}
38
+ {%- for m in messages -%}
39
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
40
+ {%- elif m.role == 'assistant' -%}
41
+ <|assistant|>
42
+ {%- set reasoning_content = '' %}
43
+ {%- set content = visible_text(m.content) %}
44
+ {%- if m.reasoning_content is string %}
45
+ {%- set reasoning_content = m.reasoning_content %}
46
+ {%- else %}
47
+ {%- if '</think>' in content %}
48
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
49
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
50
+ {%- endif %}
51
+ {%- endif %}
52
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content -%}
53
+ {{ '<think>' + reasoning_content.strip() + '</think>'}}
54
+ {%- else -%}
55
+ {{ '</think>' }}
56
+ {%- endif -%}
57
+ {%- if content.strip() -%}
58
+ {{ content.strip() }}
59
+ {%- endif -%}
60
+ {% if m.tool_calls %}
61
+ {% for tc in m.tool_calls %}
62
+ {%- if tc.function %}
63
+ {%- set tc = tc.function %}
64
+ {%- endif %}
65
+ {{- '<tool_call>' + tc.name -}}
66
+ {% set _args = tc.arguments %}{% for k, v in _args.items() %}<arg_key>{{ k }}</arg_key><arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>{% endfor %}</tool_call>{% endfor %}
67
+ {% endif %}
68
+ {%- elif m.role == 'tool' -%}
69
+ {%- if m.content is string -%}
70
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
71
+ {{- '<|observation|>' }}
72
+ {%- endif %}
73
+ {{- '<tool_response>' }}
74
+ {{- m.content }}
75
+ {{- '</tool_response>' }}
76
+ {%- else -%}
77
+ <|observation|>{% for tr in m.content %}
78
+ <tool_response>{{ tr.output if tr.output is defined else tr }}</tool_response>{% endfor -%}
79
+ {% endif -%}
80
+ {%- elif m.role == 'system' -%}
81
+ <|system|>{{ visible_text(m.content) }}
82
+ {%- endif -%}
83
+ {%- endfor -%}
84
+ {%- if add_generation_prompt -%}
85
+ <|assistant|>{{- '</think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
86
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GlmMoeDsaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 0,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": [
10
+ 154820,
11
+ 154827,
12
+ 154829
13
+ ],
14
+ "ep_size": 1,
15
+ "first_k_dense_replace": 3,
16
+ "hidden_act": "silu",
17
+ "hidden_size": 6144,
18
+ "index_head_dim": 128,
19
+ "index_n_heads": 32,
20
+ "index_topk": 2048,
21
+ "indexer_rope_interleave": true,
22
+ "initializer_range": 0.02,
23
+ "intermediate_size": 12288,
24
+ "kv_lora_rank": 512,
25
+ "max_position_embeddings": 202752,
26
+ "mlp_layer_types": [
27
+ "dense",
28
+ "dense",
29
+ "dense",
30
+ "sparse",
31
+ "sparse",
32
+ "sparse",
33
+ "sparse",
34
+ "sparse",
35
+ "sparse",
36
+ "sparse",
37
+ "sparse",
38
+ "sparse",
39
+ "sparse",
40
+ "sparse",
41
+ "sparse",
42
+ "sparse",
43
+ "sparse",
44
+ "sparse",
45
+ "sparse",
46
+ "sparse",
47
+ "sparse",
48
+ "sparse",
49
+ "sparse",
50
+ "sparse",
51
+ "sparse",
52
+ "sparse",
53
+ "sparse",
54
+ "sparse",
55
+ "sparse",
56
+ "sparse",
57
+ "sparse",
58
+ "sparse",
59
+ "sparse",
60
+ "sparse",
61
+ "sparse",
62
+ "sparse",
63
+ "sparse",
64
+ "sparse",
65
+ "sparse",
66
+ "sparse",
67
+ "sparse",
68
+ "sparse",
69
+ "sparse",
70
+ "sparse",
71
+ "sparse",
72
+ "sparse",
73
+ "sparse",
74
+ "sparse",
75
+ "sparse",
76
+ "sparse",
77
+ "sparse",
78
+ "sparse",
79
+ "sparse",
80
+ "sparse",
81
+ "sparse",
82
+ "sparse",
83
+ "sparse",
84
+ "sparse",
85
+ "sparse",
86
+ "sparse",
87
+ "sparse",
88
+ "sparse",
89
+ "sparse",
90
+ "sparse",
91
+ "sparse",
92
+ "sparse",
93
+ "sparse",
94
+ "sparse",
95
+ "sparse",
96
+ "sparse",
97
+ "sparse",
98
+ "sparse",
99
+ "sparse",
100
+ "sparse",
101
+ "sparse",
102
+ "sparse",
103
+ "sparse",
104
+ "sparse"
105
+ ],
106
+ "model_type": "glm_moe_dsa",
107
+ "moe_intermediate_size": 2048,
108
+ "moe_layer_freq": 1,
109
+ "n_group": 1,
110
+ "n_routed_experts": 256,
111
+ "n_shared_experts": 1,
112
+ "norm_topk_prob": true,
113
+ "num_attention_heads": 64,
114
+ "num_experts_per_tok": 8,
115
+ "num_hidden_layers": 78,
116
+ "num_key_value_heads": 64,
117
+ "num_nextn_predict_layers": 1,
118
+ "pad_token_id": 154820,
119
+ "pretraining_tp": 1,
120
+ "q_lora_rank": 2048,
121
+ "qk_head_dim": 256,
122
+ "qk_nope_head_dim": 192,
123
+ "qk_rope_head_dim": 64,
124
+ "rms_norm_eps": 1e-05,
125
+ "rope_interleave": true,
126
+ "rope_parameters": {
127
+ "rope_theta": 1000000,
128
+ "rope_type": "default"
129
+ },
130
+ "routed_scaling_factor": 2.5,
131
+ "scoring_func": "sigmoid",
132
+ "tie_word_embeddings": false,
133
+ "topk_group": 1,
134
+ "topk_method": "noaux_tc",
135
+ "transformers_version": "5.5.0",
136
+ "use_cache": true,
137
+ "v_head_dim": 256,
138
+ "vocab_size": 154880
139
+ }
model-00001-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:882f2a56adc3186abace86488aacfbd2bf73d30b8c1d5e7a8a48e5e7ea8cc96e
3
+ size 5364137600
model-00002-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c36ac22bb3a08c19cef13624496b23a8b184c2dde0305c9c8ea8afa5fa99b8b
3
+ size 5367624000
model-00003-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a144757b2af469b40cfd9c260257d93b94819c8365308ba43a9f2f695c9a0879
3
+ size 5368676416
model-00004-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98fa498d21a63846a613eb45078d82f39737f7b0ca68a89752d82907576694f3
3
+ size 5366521424
model-00005-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd0af2ff15123793b54003c9e55524f312730af48e740a2ea63e48120aca5d4a
3
+ size 5367624000
model-00006-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8478f5d96ef8978e71d267adfd4ce7cfd119055e662ff54c79de9f7c975cc0e
3
+ size 5366115832
model-00007-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c555f5d3398d5b1cab8b7f2f04611f1868cba7774da2a066ba5389adac02311
3
+ size 5368688664
model-00008-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5410365bd6ebf49bafad6fad71d2b4a56fe9354abb0dd9402f2fb9257c4fa82b
3
+ size 5368017344
model-00009-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3583ffbca901ab8b9d97fbe905ff646cc3cff428fdbc8ba03ac36c1ced13c4fc
3
+ size 5366929928
model-00010-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24cbea826b83a2beeb2c328043773a751f2752b94a2cc8a1667e9be296cdcdf8
3
+ size 5367574280
model-00011-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c83fe039c965ea3a42ace8c9bc5abf8b93f0bbc4a92a619a0bbc0741cb6b8484
3
+ size 5367624000
model-00012-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49235e528d2b5d2de02fda621c022c84493507239da1a2bf849d172399d5c56b
3
+ size 5368263368
model-00013-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ea1c7b2336af2b0e075e787cdc5f4c6cdac5a280313c813b706a986065c5bb
3
+ size 5366934456
model-00014-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14620bd0a57248de2d38b9cf001f0966c32cd111a5cd066b943600b8c7f8b3a7
3
+ size 5367624000
model-00015-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dc430f814a44bd16c51e9bcd73d673ae50b8f6b61640b8168c8378ff8ed42a8
3
+ size 5338591112
model-00016-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:160153396af57873d24bbaced93b13d623c54afdc890683d133312384c1449c3
3
+ size 5365933800
model-00017-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9d3571b7f6f5ca2a304bebc445a20ccad0f82e9c3eb9a207cbf5646e0746130
3
+ size 5367622944
model-00018-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce1252ba081a3b4d26dec27194031d8244351a57290e1a4c898c992b5db321a4
3
+ size 5364153800
model-00019-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f44481312dc360a18f1e577e5dfed3d7de57503158437af4ad7b9ccd12a0ba50
3
+ size 5365931928
model-00020-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:684678638c69482f9cc9e1166c17846173d46569ea51f0bcc7cc4f7caa2a2388
3
+ size 5367624000
model-00021-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:052917380466dcd020965b0433bcde29d7f7ecfa4361ab47300341d93692480c
3
+ size 5367573792
model-00022-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f61cc9a0fad716c651bae6acbca44deea220eda3364092568fcf7b52ebdd47de
3
+ size 5367624008
model-00023-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f515b25806770477f4629d59f70c0ace576a366cfabdd71d286f982e89fb4de
3
+ size 5367623976
model-00024-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60453a0c3c539440a02a812a91171f4559d0fac9acecffbe84b6eb56aa6066f1
3
+ size 5367573784
model-00025-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e520357f1530d6f8ec4df163bc6bc8d4f0c24631de155700dc9a44804a0853f2
3
+ size 5367622480
model-00026-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b66c88d1f17e26fd3e896260c324103aa8364675155729095db500eb1fc5b5d1
3
+ size 5367623960
model-00027-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:713071cc54b62617f745c9dcaa3ebc9a63e46a787dbf2feefbeb859dff2b223a
3
+ size 5367573840
model-00028-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2510d0b1323e6645e470ce0f49196952492b9236a7dab69d77d2cc2c2bc8b1f7
3
+ size 5367624016
model-00029-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:381c95cadfae1451f72a7ef104657b78786fe1a40d1465d10c5fa7a5b4ab31b7
3
+ size 5367623936
model-00030-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e85e2dc3263e982bfd745fe084f688912c273e67b9243cef003ebab4616f358
3
+ size 5367573856
model-00031-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02101859d92d9ffab81a01967426c7966819e00b88907fee12ef3f7c785736d6
3
+ size 5367624016
model-00032-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46590fa60331f842f1522110af2c426e5538a594d6ea799738260f0cc12838c6
3
+ size 5367623912
model-00033-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57a390b83fb2fc5c73a0138dec5be51802e0e72d369d7593c3b559aab0008983
3
+ size 5367572312
model-00034-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea2becfa2b670572460925afe18cb9e8e96d796bf0f32cc6156f694e4a0ce101
3
+ size 5367624008
model-00035-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:766c54779626e960dda871d15737f39916557c9578745f8b201dbf3ece98df5b
3
+ size 5367623896
model-00036-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89765dd7e6558ba46fcd937e7f051a90e880cc5b40d58c7a5fbd5a8b9de24da9
3
+ size 5367573896
model-00037-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da28b3c9a380e49137ed804d2cde9e0e8c22769a715b233123a8bce1ef07cd8c
3
+ size 5367624016
model-00038-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e039f48b1cd4d81dc6a2a9055d82b3cef6a0dfa90dc843ba909f6e3fe9bc2431
3
+ size 5367623880
model-00039-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a24d0a75c0cc9d15bfaf241057d3ac3bb99670e764dd1bc72ad52802e2b70247
3
+ size 5367573920
model-00040-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2591fa35ff82bfc320d6b39854a940f28942711e345b48eba432a3441a684f5
3
+ size 5367624016
model-00041-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6afd61d901c21496df9526cfd1d093a040e85b8a54378f5cd2bc54093cfba6c
3
+ size 5367622656
model-00042-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5739b8b5217a3cfdf88e6d50f7ee66c602360e6a0f8535275c312e72c79f5e87
3
+ size 5367573560
model-00043-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f60903f3d77a3ba7c708e51515bcc066dfe81a6df72357a8a39c5b3d6016928
3
+ size 5367624000
model-00044-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc87626d20cb155a60690cbf0465882d2625f2e0cea1ec396b7b431e278c3fcb
3
+ size 5367623848
model-00045-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:deeea6f04f09670f4a90cdf0ec6c469ba8afdc8a2f74e7ef7e80c74a28fe594d
3
+ size 5367573960
model-00046-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0d6337d52d16900251d2fa32a2b4b87517e31bdebc699f32b17256ab3e32317
3
+ size 5367624000
model-00047-of-00058.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5393b3e5c95baf522c5f00320f22ce9e079acbaa80748bcb01c21beb6630d14c
3
+ size 5367623832