nullswan commited on
Commit
29542ef
·
verified ·
1 Parent(s): 704c836

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 +2 -0
  2. chat_template.jinja +86 -0
  3. config.json +90 -0
  4. generation_config.json +11 -0
  5. model-00001-of-00045.safetensors +3 -0
  6. model-00002-of-00045.safetensors +3 -0
  7. model-00003-of-00045.safetensors +3 -0
  8. model-00004-of-00045.safetensors +3 -0
  9. model-00005-of-00045.safetensors +3 -0
  10. model-00006-of-00045.safetensors +3 -0
  11. model-00007-of-00045.safetensors +3 -0
  12. model-00008-of-00045.safetensors +3 -0
  13. model-00009-of-00045.safetensors +3 -0
  14. model-00010-of-00045.safetensors +3 -0
  15. model-00011-of-00045.safetensors +3 -0
  16. model-00012-of-00045.safetensors +3 -0
  17. model-00013-of-00045.safetensors +3 -0
  18. model-00014-of-00045.safetensors +3 -0
  19. model-00015-of-00045.safetensors +3 -0
  20. model-00016-of-00045.safetensors +3 -0
  21. model-00017-of-00045.safetensors +3 -0
  22. model-00018-of-00045.safetensors +3 -0
  23. model-00019-of-00045.safetensors +3 -0
  24. model-00020-of-00045.safetensors +3 -0
  25. model-00021-of-00045.safetensors +3 -0
  26. model-00022-of-00045.safetensors +3 -0
  27. model-00023-of-00045.safetensors +3 -0
  28. model-00024-of-00045.safetensors +3 -0
  29. model-00025-of-00045.safetensors +3 -0
  30. model-00026-of-00045.safetensors +3 -0
  31. model-00027-of-00045.safetensors +3 -0
  32. model-00028-of-00045.safetensors +3 -0
  33. model-00029-of-00045.safetensors +3 -0
  34. model-00030-of-00045.safetensors +3 -0
  35. model-00031-of-00045.safetensors +3 -0
  36. model-00032-of-00045.safetensors +3 -0
  37. model-00033-of-00045.safetensors +3 -0
  38. model-00034-of-00045.safetensors +3 -0
  39. model-00035-of-00045.safetensors +3 -0
  40. model-00036-of-00045.safetensors +3 -0
  41. model-00037-of-00045.safetensors +3 -0
  42. model-00038-of-00045.safetensors +3 -0
  43. model-00039-of-00045.safetensors +3 -0
  44. model-00040-of-00045.safetensors +3 -0
  45. model-00041-of-00045.safetensors +3 -0
  46. model-00042-of-00045.safetensors +3 -0
  47. model-00043-of-00045.safetensors +3 -0
  48. model-00044-of-00045.safetensors +3 -0
  49. model-00045-of-00045.safetensors +3 -0
  50. model.safetensors.index.json +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,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Glm4MoeForCausalLM"
4
+ ],
5
+ "attention_bias": true,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": [
9
+ 151329,
10
+ 151336,
11
+ 151338
12
+ ],
13
+ "first_k_dense_replace": 3,
14
+ "head_dim": 128,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 5120,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 12288,
19
+ "max_position_embeddings": 202752,
20
+ "model_type": "glm4_moe",
21
+ "moe_intermediate_size": 1536,
22
+ "n_group": 1,
23
+ "n_routed_experts": 160,
24
+ "n_shared_experts": 1,
25
+ "norm_topk_prob": true,
26
+ "num_attention_heads": 96,
27
+ "num_experts_per_tok": 8,
28
+ "num_hidden_layers": 92,
29
+ "num_key_value_heads": 8,
30
+ "num_nextn_predict_layers": 0,
31
+ "pad_token_id": 151329,
32
+ "partial_rotary_factor": 0.5,
33
+ "quantization_config": {
34
+ "bits": 4,
35
+ "checkpoint_format": "llm-awq",
36
+ "desc_act": true,
37
+ "format": "llm-awq",
38
+ "group_size": 128,
39
+ "lm_head": false,
40
+ "meta": {
41
+ "act_group_aware": false,
42
+ "auto_forward_data_parallel": true,
43
+ "damp_auto_increment": 0.01,
44
+ "damp_percent": 0.05,
45
+ "failsafe": {
46
+ "smooth": {
47
+ "group_size_threshold": 128,
48
+ "k": 2.75,
49
+ "type": "mad"
50
+ },
51
+ "strategy": "rtn",
52
+ "threshold": "0.5%"
53
+ },
54
+ "gc_mode": "interval",
55
+ "gptaq": null,
56
+ "hessian": {
57
+ "chunk_bytes": null,
58
+ "chunk_size": null,
59
+ "staging_dtype": "float32"
60
+ },
61
+ "mock_quantization": false,
62
+ "mse": 0.0,
63
+ "offload_to_disk": true,
64
+ "offload_to_disk_path": "/scratch/gptqmodel_offload",
65
+ "pack_impl": "cpu",
66
+ "quantizer": [
67
+ "gptqmodel:5.7.0"
68
+ ],
69
+ "static_groups": false,
70
+ "true_sequential": true,
71
+ "uri": "https://github.com/modelcloud/gptqmodel",
72
+ "vram_strategy": "exclusive",
73
+ "wait_for_submodule_finalizers": false
74
+ },
75
+ "pack_dtype": "int16",
76
+ "quant_method": "awq",
77
+ "version": "llm-awq",
78
+ "zero_point": false
79
+ },
80
+ "rms_norm_eps": 1e-05,
81
+ "rope_scaling": null,
82
+ "rope_theta": 1000000,
83
+ "routed_scaling_factor": 2.5,
84
+ "tie_word_embeddings": false,
85
+ "topk_group": 1,
86
+ "transformers_version": "4.57.3",
87
+ "use_cache": true,
88
+ "use_qk_norm": true,
89
+ "vocab_size": 151552
90
+ }
generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151329,
6
+ 151336,
7
+ 151338
8
+ ],
9
+ "pad_token_id": 151329,
10
+ "transformers_version": "4.57.3"
11
+ }
model-00001-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6269e79c20c5cbb35d5cc1aba9268ccdd536d4faa9aa2998291ac80d5f678d42
3
+ size 4292308489
model-00002-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c07e18071519532e0026a7a19eb0a4b4fd2e5ffc23e3314e3198505ed33d896
3
+ size 4291603282
model-00003-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29d21ed3e8520318930b5accae11ca9311c7f7b5ed6082d31185f0892bfbc179
3
+ size 4291644240
model-00004-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99c471d6d3f2c9f8073d1eedc9e6d58f91d50d5beace394f678d70de22fb9777
3
+ size 4291603277
model-00005-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:faa98cc52f06eb0de1db90946a1036e526f3001adc9d04811dbef1a8274388fb
3
+ size 4291605324
model-00006-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae53128b70a82bed4dd2179ea0c640bed9d2dd25a3fe1436835480c1314636ef
3
+ size 4291647230
model-00007-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4de44b5bce1bd2bd0ca65f1d66e3ef635d726316d19bb79af47b90a649791f9c
3
+ size 4291606267
model-00008-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cd083f8b39435830835b3dc283fa950e10678b542460a28113fedd86f1358bf
3
+ size 4291606272
model-00009-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f3d31c269daa145751ebb0e356d420f89dfa0175b53b51af5bb94266779edb5
3
+ size 4291647232
model-00010-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3894d129f0753c216ecfdc651b37971878e3ea143e81c60c51d76089b5e47d8
3
+ size 4291606337
model-00011-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28f3ae1e38b19bf1999b71f2fe18f8d9f68fec7c704639e836b1947c37cd10f9
3
+ size 4291606364
model-00012-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:119781a33d696fe60cf86d7c87336dbf0b7b349388f895cbcf485ab727bd5b4e
3
+ size 4291647360
model-00013-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8756d8c6ea93b3fd6dcec8366e8dd6082b1b1396c7dd333357a58a3eff3b9193
3
+ size 4291606397
model-00014-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efaeabd5a0d5545be29856aa60db754f97c3d1abdfc84e9576c320dc9ce756f0
3
+ size 4291606402
model-00015-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:278cabdb2865c777079ef1d53505222591c9db0bd20985a8ad1250e6f5437de6
3
+ size 4291647360
model-00016-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e0f80566cca3644432af935ad9c45f24a74e32f518cec95a1b220401d720552
3
+ size 4291606397
model-00017-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b6927e41d2bd9da0f1fcebbb4bc2605f85271cddb85a315a3d859c0373eed08
3
+ size 4291606402
model-00018-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41d6f7a9c82af4983a5bad7ddcf7a4fc1377a80a7515528dcd9a3caa41411471
3
+ size 4291647360
model-00019-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1bb7a93887317471c88b5fb205d4994eb30d63f98658bb583b6d5075eb28207
3
+ size 4291606397
model-00020-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9435f073fd27918a3b27d18cf084789eb4e96cff7b81e7a36c264a54366177b7
3
+ size 4275696951
model-00021-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b495696c2fa13383d4babf223e671938f8cf0c25b14c74da6d64296baf0b9105
3
+ size 4291687699
model-00022-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5b49a01bddc6832dd6f846186bc5ca973026ab7dac312d89898371c6bd6a6e
3
+ size 4291606207
model-00023-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ab2a8af5bbf83c5f35459de82e5fb0fd294245e502131efbdf2fa9ca1e36c78
3
+ size 4291606252
model-00024-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66097947099269127c98cff62749a5aa876cb7cb440b5cc268a5ae89832304fc
3
+ size 4291647230
model-00025-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9b2ba6be1a2380a0197006ee91edd9292dde8522d34215d0c076edca5db572b
3
+ size 4291606267
model-00026-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02eff524971e09f830b63fcef46c8934f884d8c8d20980d72af93d58faf44ef9
3
+ size 4291606272
model-00027-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67980979cc564214a2f778afa1c85e91951cfd37ffbf21e81bb83efce7b45c0e
3
+ size 4291647230
model-00028-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3973957a1768b2a9f5ef40323df6ef31c4083ff537bd5380a080643bbbc1865f
3
+ size 4291606267
model-00029-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3724a55cf425ddeba965a972c28f82db655a02b11d9d5ab299d07c79b150c5d6
3
+ size 4291606272
model-00030-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ba520df0dbab9c4761131372869c2d3d66adcd2d37206af39ae307839a8e7f0
3
+ size 4291647230
model-00031-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af8945781dce61ceab2ff87a58b02c73b861d072f0204c73820f49d7f50fb94a
3
+ size 4291606267
model-00032-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42a08396d8eef40d5e9b794b1c81763fa413a9683053e4f94235c14a3da4c250
3
+ size 4291606272
model-00033-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6905bb2a7e7dc0a4038124001c08dcc9853785a3cfbcd43eb7419a765d23aef
3
+ size 4291647230
model-00034-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:834f3f29399161a3a12301c5fba0ff1606074879caaac5a5d8798839badb8858
3
+ size 4291606265
model-00035-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57ad3961b82963f2cb95f233337ffe0a1e3a784e8f4eadfd329b551d40114a11
3
+ size 4291606342
model-00036-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:807b89b38d317000379fb6f4cf7c6deacf044fce9fa16d3c7a4dbe224472cefe
3
+ size 4291647310
model-00037-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:321cf759c1e18406eba0650dc8ce12222942490b8d9ad2ed9ac4288558dd967a
3
+ size 4291606397
model-00038-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b4bfbc06f6559926a81671a8b7a96f35b9d5bd5ad813ae92983516d0e05c772
3
+ size 4291606402
model-00039-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf2c6f1d5f59e1dc33c5ec1de9f29f040b9fa4ab07fd33de700e221e4ece9819
3
+ size 4291647360
model-00040-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b539b76efa6c1e5f05e37350b00a3efe3864001b9d2c71a6b3ccbd5dbccebe27
3
+ size 4291606397
model-00041-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f68f0441a327f4314856d66110a0fe140b8710fa2302e8f146f8b8f9575006d6
3
+ size 4291606402
model-00042-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f000e48937cb39ef464a225386e6835331836adaf1cadab891511a8e9555a336
3
+ size 4291647360
model-00043-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ab66d0f295fc0209f11505b636f4956f9ef86e9b771a507b06e7c79d7dfb468
3
+ size 4291606397
model-00044-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c62d2058366bbbe5e3a779477df59a97e2f72fefd603ea16da1649df5e46d508
3
+ size 4291606402
model-00045-of-00045.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:421ea1c0f00361a759c1ef1c9522f44949fe589f0d272e2c6a268cfee50035d0
3
+ size 2187770445
model.safetensors.index.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72c43cdb6f61e6a9ffa2e0db8e71e5f6708fbf16def04c6166939c4af0bde4da
3
+ size 12148351