async0x42 commited on
Commit
446a70b
·
verified ·
1 Parent(s): e09f927

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. README.md +39 -0
  3. chat_template.jinja +86 -0
  4. config.json +152 -0
  5. generation_config.json +12 -0
  6. model-00003-of-00091.safetensors +3 -0
  7. model-00006-of-00091.safetensors +3 -0
  8. model-00009-of-00091.safetensors +3 -0
  9. model-00011-of-00091.safetensors +3 -0
  10. model-00012-of-00091.safetensors +3 -0
  11. model-00014-of-00091.safetensors +3 -0
  12. model-00015-of-00091.safetensors +3 -0
  13. model-00017-of-00091.safetensors +3 -0
  14. model-00018-of-00091.safetensors +3 -0
  15. model-00020-of-00091.safetensors +3 -0
  16. model-00023-of-00091.safetensors +3 -0
  17. model-00025-of-00091.safetensors +3 -0
  18. model-00026-of-00091.safetensors +3 -0
  19. model-00029-of-00091.safetensors +3 -0
  20. model-00031-of-00091.safetensors +3 -0
  21. model-00032-of-00091.safetensors +3 -0
  22. model-00034-of-00091.safetensors +3 -0
  23. model-00038-of-00091.safetensors +3 -0
  24. model-00041-of-00091.safetensors +3 -0
  25. model-00042-of-00091.safetensors +3 -0
  26. model-00044-of-00091.safetensors +3 -0
  27. model-00047-of-00091.safetensors +3 -0
  28. model-00048-of-00091.safetensors +3 -0
  29. model-00050-of-00091.safetensors +3 -0
  30. model-00051-of-00091.safetensors +3 -0
  31. model-00053-of-00091.safetensors +3 -0
  32. model-00054-of-00091.safetensors +3 -0
  33. model-00055-of-00091.safetensors +3 -0
  34. model-00056-of-00091.safetensors +3 -0
  35. model-00059-of-00091.safetensors +3 -0
  36. model-00061-of-00091.safetensors +3 -0
  37. model-00062-of-00091.safetensors +3 -0
  38. model-00064-of-00091.safetensors +3 -0
  39. model-00067-of-00091.safetensors +3 -0
  40. model-00068-of-00091.safetensors +3 -0
  41. model-00069-of-00091.safetensors +3 -0
  42. model-00070-of-00091.safetensors +3 -0
  43. model-00075-of-00091.safetensors +3 -0
  44. model-00080-of-00091.safetensors +3 -0
  45. model-00083-of-00091.safetensors +3 -0
  46. model-00086-of-00091.safetensors +3 -0
  47. model-00089-of-00091.safetensors +3 -0
  48. model-00091-of-00091.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
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - zh
5
+ library_name: mlx
6
+ license: mit
7
+ pipeline_tag: text-generation
8
+ base_model: unsloth/GLM-5
9
+ tags:
10
+ - mlx
11
+ ---
12
+
13
+ # async0x42/GLM-5-4bit
14
+
15
+ This model [async0x42/GLM-5-4bit](https://huggingface.co/async0x42/GLM-5-4bit) was
16
+ converted to MLX format from [unsloth/GLM-5](https://huggingface.co/unsloth/GLM-5)
17
+ using mlx-lm version **0.30.7**.
18
+
19
+ ## Use with mlx
20
+
21
+ ```bash
22
+ pip install mlx-lm
23
+ ```
24
+
25
+ ```python
26
+ from mlx_lm import load, generate
27
+
28
+ model, tokenizer = load("async0x42/GLM-5-4bit")
29
+
30
+ prompt = "hello"
31
+
32
+ if tokenizer.chat_template is not None:
33
+ messages = [{"role": "user", "content": prompt}]
34
+ prompt = tokenizer.apply_chat_template(
35
+ messages, add_generation_prompt=True, return_dict=False,
36
+ )
37
+
38
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
39
+ ```
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,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GlmMoeDsaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "eos_token_id": [
8
+ 154820,
9
+ 154827,
10
+ 154829
11
+ ],
12
+ "ep_size": 1,
13
+ "first_k_dense_replace": 3,
14
+ "head_dim": 64,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 6144,
17
+ "index_head_dim": 128,
18
+ "index_n_heads": 32,
19
+ "index_topk": 2048,
20
+ "indexer_rope_interleave": true,
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 12288,
23
+ "kv_lora_rank": 512,
24
+ "max_position_embeddings": 202752,
25
+ "mlp_layer_types": [
26
+ "dense",
27
+ "dense",
28
+ "dense",
29
+ "sparse",
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
+ ],
105
+ "model_type": "glm_moe_dsa",
106
+ "moe_intermediate_size": 2048,
107
+ "moe_layer_freq": 1,
108
+ "n_group": 1,
109
+ "n_routed_experts": 256,
110
+ "n_shared_experts": 1,
111
+ "norm_topk_prob": true,
112
+ "num_attention_heads": 64,
113
+ "num_experts_per_tok": 8,
114
+ "num_hidden_layers": 78,
115
+ "num_key_value_heads": 64,
116
+ "num_nextn_predict_layers": 1,
117
+ "pad_token_id": 154821,
118
+ "partial_rotary_factor": 1.0,
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
+ "quantization": {
125
+ "group_size": 64,
126
+ "bits": 4,
127
+ "mode": "affine"
128
+ },
129
+ "quantization_config": {
130
+ "group_size": 64,
131
+ "bits": 4,
132
+ "mode": "affine"
133
+ },
134
+ "rms_norm_eps": 1e-05,
135
+ "rope_interleave": true,
136
+ "rope_parameters": {
137
+ "partial_rotary_factor": 1.0,
138
+ "rope_theta": 1000000,
139
+ "rope_type": "default"
140
+ },
141
+ "routed_scaling_factor": 2.5,
142
+ "scoring_func": "sigmoid",
143
+ "tie_word_embeddings": false,
144
+ "topk_group": 1,
145
+ "topk_method": "noaux_tc",
146
+ "torch_dtype": "bfloat16",
147
+ "transformers_version": "5.2.0.dev0",
148
+ "unsloth_fixed": true,
149
+ "use_cache": true,
150
+ "v_head_dim": 256,
151
+ "vocab_size": 154880
152
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 154820,
5
+ 154827,
6
+ 154829
7
+ ],
8
+ "pad_token_id": 154820,
9
+ "temperature": 1.0,
10
+ "top_p": 0.95,
11
+ "transformers_version": "5.0.2.dev0"
12
+ }
model-00003-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a55c45ab728c2df37e29b224ca4b6be3892a06333bc15eb36986da18d2141ab2
3
+ size 3947717330
model-00006-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3776116d2028d3fa2e117817dfda73d8e712e1cf3f6a53b508a6bc76fdeedcd0
3
+ size 5335155728
model-00009-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e1fc6ef3ebe2b78258df5756bc297c521dc177e70b7a85af2838908ba1cdf3f
3
+ size 3947717362
model-00011-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:936c350081f4c836782d37e6c6cac1442d058a4a4c7d16f43c13d76a4644cf6a
3
+ size 3947717358
model-00012-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8936f1cc1e0397f9fdbd5bede886019820b275aab7db10b4a7f1f1e3de6945e4
3
+ size 5335155736
model-00014-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5df851ee107e59e8480c957256868fd706cd684f7ac19fd39e57bd1662a22718
3
+ size 5357003402
model-00015-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a359215a77ae3a4609a737271ad7ce3190f45a8de034cb5b4757b2e1ab331d9
3
+ size 3947717380
model-00017-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1089db8e0a259ae289aa491d1c8f67750d3afb2929e77279728054051ee68fc
3
+ size 3947717212
model-00018-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a31705ca9b986eea7b4d5f832db4d3dd6bc719712cad051d5d8237da2dec3a7
3
+ size 5335155738
model-00020-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffa7b0c2214d4a257fa077d23ba839bb37778c3ff8df321f3046c370655454df
3
+ size 5357003394
model-00023-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:883a7a2c1949d29b6f9a99acc6633beb3b690b29e59d0f996e6281a336e30fdc
3
+ size 3947717338
model-00025-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8a2ff1aa7170e8e4623d833b19c1824caf584829448546fb5fdec22ecb6876c
3
+ size 3847053950
model-00026-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59b34d890d599d0584f3ba7af8cd7a37fd1f4198560b434f2109761181631cc7
3
+ size 5357003402
model-00029-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5cccfb21344335cfa5d48a106ece94b4b73e319a14a7a457eccf125ffbceedf
3
+ size 3947717260
model-00031-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a2a72031aa99128ae31064595c9cc79d8b78b8e1c8227d60b2ac78d318b869
3
+ size 3847053956
model-00032-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f004db6da20a37967215070885af018131fd9ea983b73de181b47929ca36c187
3
+ size 5357003402
model-00034-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e80e4e24d30f8ebdc6dbe1af0f2f6f804031b2998a411c59e201fcf0e022b5f2
3
+ size 5357003398
model-00038-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18872e40dc6c1e106530bbb7aad77f3d1a3c1d3a01eb8dfeba23d59174419783
3
+ size 5357003400
model-00041-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:651ac755d7ffc36bc70856f9cfc37eb43a52344735523c71861959c64751373e
3
+ size 3947717182
model-00042-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cda63172e00ade852e858109807ce20e6b836554217347bf2ed839430a72729e
3
+ size 5335155738
model-00044-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d310f1b7f931550ec43e6d4997c1d3a0fdb3898133fb0934a6698123067d5a5
3
+ size 5357003402
model-00047-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efbd7523e35bfac87004db629f293e8ef1802d91589f2a0ba98eca3e9cbf15a1
3
+ size 3947717206
model-00048-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90c7ba175da56606cbfd4fe33fa7ad9565455582700dd7a815626ec5a465453b
3
+ size 5335155736
model-00050-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12cc3d368b1e8119fbde2464eb4e719405b98fa2fc82ef547cef3b83f6fadbe9
3
+ size 5357003402
model-00051-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b35d0c685d734f8de676699663498fb7c978d591ff5b18e6dac814869f3620be
3
+ size 3947717380
model-00053-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43bea20c452b4b17a0ea18837acdb68c0145bbe14a545494449b6b2b67a6756f
3
+ size 3947717308
model-00054-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:847442e71b2a275cffbff518ae385a068b7bab71e819e2087d4ff2b6327d8e2d
3
+ size 5335155738
model-00055-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c8baa28d54d8dd1d840055bfcbe31c083b65c1d8db15e95304ccd12de5de36e
3
+ size 3847053918
model-00056-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:957fa4730e6f30d2c4fa35d45a253043fc8ea0360cca7b8527e89e61cdadd2a2
3
+ size 5357003402
model-00059-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0698314dfdb74f4d23dc0a0a330ced642d28817ca9c545b0a900d1f725a8656
3
+ size 3947717312
model-00061-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4e4546d206bedbd88ed4e853d9b11ccc08dc286b578ec644ab9528fa8f59d13
3
+ size 3847053956
model-00062-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52dd9f48ef1aea85f688696058396cea05a50406e0650145cba56edfeab931c6
3
+ size 5357003388
model-00064-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b611bd3df3f2bfc8c9b99ff24465c8635f01420039004aa2edab9009a1f26ba0
3
+ size 5357003398
model-00067-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41fc25ba10d0ee929ece8057831918327c47acc8246f7711752da04702fea927
3
+ size 3847053928
model-00068-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9135d8e84d7990a8004e439f1ae5bec031f5ec50c2cd6cf1f81bd4ce4daa4904
3
+ size 5357003402
model-00069-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51d7dbd508806905b224cbcf5d00ee6a329676c92c38822e38cca045faf9959b
3
+ size 3947717300
model-00070-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4316b86d40a45eecf9719eb53cce515fc7b9da579d7b85519f6bc9ef4debc1c8
3
+ size 5357003398
model-00075-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1b42e970ff93c1ef3f768c2640c69fd454d37ae08e1f186e074edab37c5e961
3
+ size 3947717358
model-00080-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6a5128f9c32fa572d1ad93aa5dceb81a9a66e6276bfdadff38e07e3cfedcfa0
3
+ size 5357003400
model-00083-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a0a9e9e3733b8938cf232e25154cfe8ae16de446756df41750a0873606d0770
3
+ size 3947717200
model-00086-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fded92bfa1c5b0b2709ed49c6406a88e9508217b8437edcad24b01077ff68d0e
3
+ size 5357003402
model-00089-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:542a764f9b91514fe67074aa197a42c1185193a5ee6760cd1df3ec6d43a6529d
3
+ size 3947717258
model-00091-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e05b3469f93f0ec9d4341052fa58e45c1c7ecf55f34f712cfa8cb276356b5090
3
+ size 660347957
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:19e773648cb4e65de8660ea6365e10acca112d42a854923df93db4a6f333a82d
3
+ size 20217442