danielhanchen commited on
Commit
375f4fa
·
verified ·
1 Parent(s): 1a36e6c

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. chat_template.jinja +103 -0
  3. config.json +44 -0
  4. generation_config.json +10 -0
  5. model-00001-of-00093.safetensors +3 -0
  6. model-00002-of-00093.safetensors +3 -0
  7. model-00003-of-00093.safetensors +3 -0
  8. model-00004-of-00093.safetensors +3 -0
  9. model-00005-of-00093.safetensors +3 -0
  10. model-00006-of-00093.safetensors +3 -0
  11. model-00007-of-00093.safetensors +3 -0
  12. model-00008-of-00093.safetensors +3 -0
  13. model-00009-of-00093.safetensors +3 -0
  14. model-00010-of-00093.safetensors +3 -0
  15. model-00011-of-00093.safetensors +3 -0
  16. model-00012-of-00093.safetensors +3 -0
  17. model-00013-of-00093.safetensors +3 -0
  18. model-00014-of-00093.safetensors +3 -0
  19. model-00015-of-00093.safetensors +3 -0
  20. model-00016-of-00093.safetensors +3 -0
  21. model-00017-of-00093.safetensors +3 -0
  22. model-00018-of-00093.safetensors +3 -0
  23. model-00019-of-00093.safetensors +3 -0
  24. model-00020-of-00093.safetensors +3 -0
  25. model-00021-of-00093.safetensors +3 -0
  26. model-00022-of-00093.safetensors +3 -0
  27. model-00023-of-00093.safetensors +3 -0
  28. model-00024-of-00093.safetensors +3 -0
  29. model-00025-of-00093.safetensors +3 -0
  30. model-00026-of-00093.safetensors +3 -0
  31. model-00027-of-00093.safetensors +3 -0
  32. model-00028-of-00093.safetensors +3 -0
  33. model-00029-of-00093.safetensors +3 -0
  34. model-00030-of-00093.safetensors +3 -0
  35. model-00031-of-00093.safetensors +3 -0
  36. model-00032-of-00093.safetensors +3 -0
  37. model-00033-of-00093.safetensors +3 -0
  38. model-00034-of-00093.safetensors +3 -0
  39. model-00035-of-00093.safetensors +3 -0
  40. model-00036-of-00093.safetensors +3 -0
  41. model-00037-of-00093.safetensors +3 -0
  42. model-00038-of-00093.safetensors +3 -0
  43. model-00039-of-00093.safetensors +3 -0
  44. model-00040-of-00093.safetensors +3 -0
  45. model-00041-of-00093.safetensors +3 -0
  46. model-00042-of-00093.safetensors +3 -0
  47. model-00043-of-00093.safetensors +3 -0
  48. model-00044-of-00093.safetensors +3 -0
  49. model-00045-of-00093.safetensors +3 -0
  50. model-00046-of-00093.safetensors +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|string }}
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>')|first).rstrip('\n').split('<think>')|last).lstrip('\n') %}
57
+ {%- set content = (content.split('</think>')|last).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|string 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,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 3,
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 5120,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 12288,
18
+ "max_position_embeddings": 131072,
19
+ "model_type": "glm4_moe",
20
+ "moe_intermediate_size": 1536,
21
+ "n_group": 1,
22
+ "n_routed_experts": 160,
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": 92,
28
+ "num_key_value_heads": 8,
29
+ "num_nextn_predict_layers": 1,
30
+ "pad_token_id": 151330,
31
+ "partial_rotary_factor": 0.5,
32
+ "rms_norm_eps": 1e-05,
33
+ "rope_scaling": null,
34
+ "rope_theta": 1000000,
35
+ "routed_scaling_factor": 2.5,
36
+ "tie_word_embeddings": false,
37
+ "topk_group": 1,
38
+ "torch_dtype": "bfloat16",
39
+ "transformers_version": "4.54.1",
40
+ "unsloth_fixed": true,
41
+ "use_cache": true,
42
+ "use_qk_norm": true,
43
+ "vocab_size": 151552
44
+ }
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.54.0"
10
+ }
model-00001-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3ec0ed85ee95cae5c9b76a7af7272a23169b81705c177c0212f65b24d4b8b41
3
+ size 3753953568
model-00002-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c5ed321e28aa0c3d31c1b9a9ac0e5666d915ffd89dff216a34427b33fb03c55
3
+ size 650168352
model-00003-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c93996707aea7dc24a24e97eb72a57fbfd2d197a3cab970adf334ed28ae67abb
3
+ size 650168352
model-00004-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c76581125a03a274386d8d0cd0e2c84242135bd0b728c33a3b311e1967b53ab7
3
+ size 7871313120
model-00005-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72cdb466003372faf78d647ffec247c33f0f2346177147ecce95e8e50b7b678a
3
+ size 7871313120
model-00006-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e643fc9c4b55c9861a965a744b85ae54453275d7a4dfdfad0ca7a9517ad18011
3
+ size 7871313120
model-00007-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6145a87fc2f1e30123293802181b1c684ac710cdd6c929b2dab145154bbd9b7c
3
+ size 7871313120
model-00008-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22c5cfd2f82adabf3db579a5ff217506d0f5e1b7211492ef73b2209bb138f41f
3
+ size 7871313120
model-00009-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82e37371e81407fd7b5cd543532c6bdca2bf865a2ee567e8f731777b19a9bd43
3
+ size 7871313120
model-00010-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afa2a54871e04125363468a6ca024de373ab38edb6f58b657913c2cd17ce5764
3
+ size 7871313120
model-00011-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049c06bc5a93318dcf91a7c60109c08e8df95a9a5130196a683434d9ede437f8
3
+ size 7871313616
model-00012-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa88ebbabdc43302cf19ac2d81b27f2b16a3154fdd9ed096040615fa65013805
3
+ size 7871313616
model-00013-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5a222612fd47c6ca8166275e66e723819baa3068eee2e1694f326066ac67ce4
3
+ size 7871313616
model-00014-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b8d2da26be63fe9764a4a4cc6a00e58f406aeeda404c31b61612e5e74f9caf8
3
+ size 7871313616
model-00015-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f832318ea861a4841a3ce0886eaa0ca7dee9729f74b5141634d7d7e9d6f2ba9
3
+ size 7871313616
model-00016-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d344913210c96c6695341094e7da2817ccb94f3946ee9698a76eaaaaf60c1b44
3
+ size 7871313616
model-00017-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31a4ce3054f3670fd5a7d1e71f502318e65ebb51ee629bd5eccd98adc736d4f6
3
+ size 7871313616
model-00018-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:006012f1bf7dd33271f12626000418c43e127b56bc70f3a5e314656ad717f424
3
+ size 7871313616
model-00019-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:067349f582d85e7bd9b0326b82ee32cede246cf359b4e0b4c6cfe3f95caf8e21
3
+ size 7871313616
model-00020-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c21f395f920d50618e06b473f64971789746d86f3e20e2eab0483562ced51b2a
3
+ size 7871313616
model-00021-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bde74ebffd96f550117c7b297198eadf75fb8c99603b6e78fd6d6bea62a8da8
3
+ size 7871313616
model-00022-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f9520583b0947a4bc9e3b22ee93dac2f19256f4f889ae17a5239e4275528db8
3
+ size 7871313616
model-00023-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16613154e9ab024458f9acd079d7345db4a05593c5a596176640d68053665753
3
+ size 7871313616
model-00024-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b08d17d951a625b2cac46fcf15d7e4b6a99a28f91befabeb7d361fa7cac01e7b
3
+ size 7871313616
model-00025-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd5cbe90ff83f0b2b91c92d5ba2e100263e8306ce3f6381bdd54051a6a8b6c3d
3
+ size 7871313616
model-00026-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ea400d62257ef3f0412c8496c955a9ec7052fa4761dfbf4b35905aa04e73318
3
+ size 7871313616
model-00027-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:012d00adf402e18bb9a900d5dc549c2c45f047eb486ef2a44517a8e532dd9f2b
3
+ size 7871313616
model-00028-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63de598020c34be07e77fb82319760bd539da4adfc48eecf83f64cc85ac35196
3
+ size 7871313616
model-00029-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ebe5474925c2edf5dea140224c9d506147f44c5accded8a854edb7538e88d3a
3
+ size 7871313616
model-00030-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:272627d9996b600a934e39c285914c04949e9e9ecbde8ddc2cdc228af5a0be42
3
+ size 7871313616
model-00031-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50b8a452aa3db68fa81daa96d04af6b68aaaf2d9565e2b65ce427fbf821d6573
3
+ size 7871313616
model-00032-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12bc051e0ed087b3bcfaba48ecc5a2dab369ec95d0bc43b779daec146b9ab45b
3
+ size 7871313616
model-00033-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d506e1a1ac6faea9b46ece2be12d1d83d3e6987d8c836b0deebdb77a96baeac0
3
+ size 7871313616
model-00034-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22b67f3dfb65d866d6dadeb3b33709641bdf93b34e5cd50ab480f08ca2fe1ab2
3
+ size 7871313616
model-00035-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab5187967ed92ebd28040749a6735e6dc5b5b7a921f26ecc320db909b1af3fab
3
+ size 7871313616
model-00036-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5babc5b903c4e8f30a014d6f63fe679331776eb8e19e1807099604085e506349
3
+ size 7871313616
model-00037-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8696f7e938ddd6a8a578467302b58907106add63ec9d06ada3f58db1e1f35b8a
3
+ size 7871313616
model-00038-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71ad1eda9008b3cca972e8c7637aba3bf598daba0f5f7146fcf70656d6807291
3
+ size 7871313616
model-00039-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbc174288c0a6dfe1ed30e7b9d0b14b4008cef1c44121ecba5d3fc5711f9ffcf
3
+ size 7871313616
model-00040-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33bc1f191e6ece41ac959fae053e56c8d9b7aae4e248396db308df192b0dfdca
3
+ size 7871313616
model-00041-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1086567592913cf955a099e6bd36d69803197a5e737895e82d27e139ee797454
3
+ size 7871313616
model-00042-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd01aed8bd9f3875c999a912c10806379df34083c8d5ea86dbeed586218404e5
3
+ size 7871313616
model-00043-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3757974e615f565fb9179ca721617f92c1c46e02cb27de2173ccf69851a4bbe5
3
+ size 7871313616
model-00044-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:333883124d4baa2d0ad5527832875418c574a9bb9d022184573d73da6b0450bb
3
+ size 7871313616
model-00045-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2347fda76deadd548681a1b96d6868eed8c00a37808ece8ff71011a54989c091
3
+ size 7871313616
model-00046-of-00093.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3be1386859ce861008c1f5333277a91e9b76dd522f4316edc25d5bf48e18934b
3
+ size 7871313616