Shubhra Pandit commited on
Commit
3ff1e61
·
1 Parent(s): 7925cb1

Upload model files

Browse files
Files changed (44) hide show
  1. .gitattributes +3 -0
  2. chat_template.jinja +103 -0
  3. config.json +93 -0
  4. generation_config.json +10 -0
  5. model-00001-of-00072.safetensors +3 -0
  6. model-00002-of-00072.safetensors +3 -0
  7. model-00003-of-00072.safetensors +3 -0
  8. model-00004-of-00072.safetensors +3 -0
  9. model-00005-of-00072.safetensors +3 -0
  10. model-00006-of-00072.safetensors +3 -0
  11. model-00007-of-00072.safetensors +3 -0
  12. model-00008-of-00072.safetensors +3 -0
  13. model-00009-of-00072.safetensors +3 -0
  14. model-00010-of-00072.safetensors +3 -0
  15. model-00011-of-00072.safetensors +3 -0
  16. model-00012-of-00072.safetensors +3 -0
  17. model-00013-of-00072.safetensors +3 -0
  18. model-00014-of-00072.safetensors +3 -0
  19. model-00015-of-00072.safetensors +3 -0
  20. model-00016-of-00072.safetensors +3 -0
  21. model-00017-of-00072.safetensors +3 -0
  22. model-00018-of-00072.safetensors +3 -0
  23. model-00019-of-00072.safetensors +3 -0
  24. model-00020-of-00072.safetensors +3 -0
  25. model-00021-of-00072.safetensors +3 -0
  26. model-00022-of-00072.safetensors +3 -0
  27. model-00023-of-00072.safetensors +3 -0
  28. model-00024-of-00072.safetensors +3 -0
  29. model-00025-of-00072.safetensors +3 -0
  30. model-00026-of-00072.safetensors +3 -0
  31. model-00027-of-00072.safetensors +3 -0
  32. model-00028-of-00072.safetensors +3 -0
  33. model-00029-of-00072.safetensors +3 -0
  34. model-00030-of-00072.safetensors +3 -0
  35. model-00031-of-00072.safetensors +3 -0
  36. model-00032-of-00072.safetensors +3 -0
  37. model-00033-of-00072.safetensors +3 -0
  38. model-00034-of-00072.safetensors +3 -0
  39. model-00035-of-00072.safetensors +3 -0
  40. model-00036-of-00072.safetensors +3 -0
  41. model-00037-of-00072.safetensors +3 -0
  42. model-00038-of-00072.safetensors +3 -0
  43. model-00039-of-00072.safetensors +3 -0
  44. model-00040-of-00072.safetensors +3 -0
.gitattributes CHANGED
@@ -33,3 +33,6 @@ 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
37
+ *.index.json filter=lfs diff=lfs merge=lfs -text
38
+ *.index.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,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1,
31
+ "pad_token_id": 151329,
32
+ "partial_rotary_factor": 0.5,
33
+ "quantization_config": {
34
+ "config_groups": {
35
+ "group_0": {
36
+ "format": "int-quantized",
37
+ "input_activations": {
38
+ "actorder": null,
39
+ "block_structure": null,
40
+ "dynamic": true,
41
+ "group_size": null,
42
+ "num_bits": 8,
43
+ "observer": null,
44
+ "observer_kwargs": {},
45
+ "scale_dtype": null,
46
+ "strategy": "token",
47
+ "symmetric": true,
48
+ "type": "int",
49
+ "zp_dtype": null
50
+ },
51
+ "output_activations": null,
52
+ "targets": [
53
+ "Linear"
54
+ ],
55
+ "weights": {
56
+ "actorder": null,
57
+ "block_structure": null,
58
+ "dynamic": false,
59
+ "group_size": null,
60
+ "num_bits": 8,
61
+ "observer": "minmax",
62
+ "observer_kwargs": {},
63
+ "scale_dtype": null,
64
+ "strategy": "channel",
65
+ "symmetric": true,
66
+ "type": "int",
67
+ "zp_dtype": null
68
+ }
69
+ }
70
+ },
71
+ "format": "int-quantized",
72
+ "global_compression_ratio": null,
73
+ "ignore": [
74
+ "lm_head"
75
+ ],
76
+ "kv_cache_scheme": null,
77
+ "quant_method": "compressed-tensors",
78
+ "quantization_status": "compressed",
79
+ "sparsity_config": {},
80
+ "transform_config": {},
81
+ "version": "0.12.3.dev31+gb019b89.d20251216"
82
+ },
83
+ "rms_norm_eps": 1e-05,
84
+ "rope_scaling": null,
85
+ "rope_theta": 1000000,
86
+ "routed_scaling_factor": 2.5,
87
+ "tie_word_embeddings": false,
88
+ "topk_group": 1,
89
+ "transformers_version": "4.57.3",
90
+ "use_cache": true,
91
+ "use_qk_norm": true,
92
+ "vocab_size": 151552
93
+ }
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.57.3"
10
+ }
model-00001-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a0886f87893bec5794056e3da2d63c1097aaa83daf12213ac1d4ee8dfbb4e57
3
+ size 4993428256
model-00002-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d24436194ef43815b2ed6f7f6721cb882f586709b751d29f2fe599a25845f87
3
+ size 4993852128
model-00003-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f59ab7ed855f9de33d9b081d797fb2684bc8c2e1d77fa88a18f3f6499bfa96dc
3
+ size 4998103744
model-00004-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3233e95f2960d95b1f7474558326dd7e53ff726448257ece366eb8278eb6c9cd
3
+ size 4993851864
model-00005-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ad702c53697011d6f384694bbe46768f79e8c90b6e252c0f3707abae2a9631b
3
+ size 4993844760
model-00006-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f36de1272f9d4ba05d1471d89013a8fccc5727b2f7bdb14443ba889693940d7
3
+ size 4993852200
model-00007-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18e57b607476ad1037fb44c9a869cb7b0b728cdcbe081b9f35577e2fc4629d5d
3
+ size 4998104608
model-00008-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0169a1eb58a20e4aa5b1ced1350d06adc8facfb7954b44ac1a544a7ed6b89345
3
+ size 4993853120
model-00009-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2eeb2ce5160727299aebc54cfd9e965ffbe2cc1c8e8ff6c234f0267608482c86
3
+ size 4993846088
model-00010-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f69fad687881b80515227a43d2a68330f3d79db82e10d9a4594aa9f543b3cacb
3
+ size 4998105040
model-00011-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3d54b184e1da8e66e43255eb9e3e6b4b4e6eea2140a24dbbe29d5e409dd01e9
3
+ size 4993853064
model-00012-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31fffabdfa446289a5af0564988190e198f8f87e5d06b63e26e32d640cb485c8
3
+ size 4993853120
model-00013-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a4b84106d5b5a31f630892c626877b62490ff9570a91300425c60f4089e6eb4
3
+ size 4993846160
model-00014-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:777db9e902d2e945b303a93899760246b519820e6a61e343ad3a4f419642c9f5
3
+ size 4998104984
model-00015-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4da8f141e8cfd3b341e428f55f2aa68ee0b1d1dbf7ef762848bbf90ffac51076
3
+ size 4993853120
model-00016-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:180138bccee3af998708befa73d868b7a4d9f038c58e358c0867961972ee784e
3
+ size 4993853128
model-00017-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d426b5842597925c0ed751b7ff63a5afa1ff5f3b5516f29ea55075dd5e59e27
3
+ size 4993846232
model-00018-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74867c5c30cfa0aef93e1be2f0b31baa3d0327ee44496cb47b3980f838bea7b5
3
+ size 4998104984
model-00019-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3be0230a396521d408df04be3c5f6c70b27a8f65a82cc614288ccf34461e97e3
3
+ size 4993853120
model-00020-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b661f947f3cdf25d8bb1d7af676413dcf3f9a1ebe54cf0a88e15072647d3e8f
3
+ size 4993853200
model-00021-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6037305fb4ac34c6862d3e57d1e78a1c66c8b58ce8b7fd0f6727a7e39eb4ff3
3
+ size 4993846304
model-00022-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:621910cfd76f6d5bf54182ecb9e9b4227591797b965062a74498b491b3dfb9c5
3
+ size 4998105000
model-00023-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce665e33c6e1069a9cc656dd4d047a6cb8867eccee1c94092b2bbc630c13cbc5
3
+ size 4993853120
model-00024-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbca94d5e3167c65074009477487a81d619a8993c19f10a58dee8ee22ee8fb4b
3
+ size 4993853272
model-00025-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a99ceba62fa0a4383f33926f0ce07e5e92d9891df0131c1e4b8419b98d0a7a41
3
+ size 4998105016
model-00026-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6060a64b856524f90b4c03ac7ffa503fc877bd313f4ce212297030fc49335943
3
+ size 4993845912
model-00027-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:889a312406e43e08edee921dc2a3bcec37a819cd7527c91caaf218e9af12ba77
3
+ size 4993853120
model-00028-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8219e9105bbc729806c7df4aba097925c16b4c77ae7435d5bf0bdac62ee42f2b
3
+ size 4993853344
model-00029-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:107be9d4afce1a9ea96df744a9bb65c1c89f1e53c847dd7abbb60cbb153e641b
3
+ size 4998104976
model-00030-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da4ca1e4f70701e72d7aa4fcdf205b39eb19b410040360de5e826aeb552f319e
3
+ size 4993845952
model-00031-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7096ab585aea8fa9fcff97be033beb3a6912250a862002232e7f128de7feeb1d
3
+ size 4993853152
model-00032-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4bde3be6084320c8b0199f4140ac085c03e421df9e1488326e8d9137dda09d7
3
+ size 4993853416
model-00033-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c68933d90f2b679822179c09246982c03457d8629d4a55a5c08a8f28d21949b
3
+ size 4998104976
model-00034-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c50b0666dcf385403220c9658746ef3647b1f1b4282f1e49dda36a75a89a582e
3
+ size 4993845952
model-00035-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89beb2ff9396c8aaad64d74f1d474254571b32dddf0e81a138e4e39cfa51713c
3
+ size 4993853224
model-00036-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86efd23f1e866634c50e95ae5dfcba110d4149b8d63b40563475cd98039a91c8
3
+ size 4971903376
model-00037-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:091fb598ec6642f9268d44dd6da024e5f6355d97419bdfc60071c150d14642b3
3
+ size 4996444640
model-00038-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a8257c97d9d027ebfdfe85a1230ca76df248235f15607555eb706eeb4fc05ca
3
+ size 4993845952
model-00039-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c29f5b21de4d9d74efd01508d339edf9bb17d53b3a1630c91ab102a59d74e7cd
3
+ size 4993853288
model-00040-of-00072.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c941bde3fa933aaf98ac169c059efa039a428d9ec378e09a6b9fc3aa1679bf6f
3
+ size 4998105000