kernelpool commited on
Commit
7258439
·
verified ·
1 Parent(s): 209c3af

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 +117 -0
  4. config.json +69 -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-00010-of-00091.safetensors +3 -0
  10. model-00011-of-00091.safetensors +3 -0
  11. model-00012-of-00091.safetensors +3 -0
  12. model-00014-of-00091.safetensors +3 -0
  13. model-00015-of-00091.safetensors +3 -0
  14. model-00020-of-00091.safetensors +3 -0
  15. model-00022-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-00027-of-00091.safetensors +3 -0
  20. model-00028-of-00091.safetensors +3 -0
  21. model-00029-of-00091.safetensors +3 -0
  22. model-00031-of-00091.safetensors +3 -0
  23. model-00034-of-00091.safetensors +3 -0
  24. model-00038-of-00091.safetensors +3 -0
  25. model-00041-of-00091.safetensors +3 -0
  26. model-00042-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-00061-of-00091.safetensors +3 -0
  35. model-00062-of-00091.safetensors +3 -0
  36. model-00063-of-00091.safetensors +3 -0
  37. model-00066-of-00091.safetensors +3 -0
  38. model-00067-of-00091.safetensors +3 -0
  39. model-00068-of-00091.safetensors +3 -0
  40. model-00069-of-00091.safetensors +3 -0
  41. model-00070-of-00091.safetensors +3 -0
  42. model-00073-of-00091.safetensors +3 -0
  43. model-00075-of-00091.safetensors +3 -0
  44. model-00083-of-00091.safetensors +3 -0
  45. model-00086-of-00091.safetensors +3 -0
  46. model-00089-of-00091.safetensors +3 -0
  47. model-00090-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
+ tags:
9
+ - mlx
10
+ base_model: zai-org/GLM-5.1
11
+ ---
12
+
13
+ # catalystsec/GLM-5.1-4bit
14
+
15
+ This model [catalystsec/GLM-5.1-4bit](https://huggingface.co/catalystsec/GLM-5.1-4bit) was
16
+ converted to MLX format from [zai-org/GLM-5.1](https://huggingface.co/zai-org/GLM-5.1)
17
+ using mlx-lm version **0.31.2**.
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("catalystsec/GLM-5.1-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,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ {%- macro tool_to_json(tool) -%}
4
+ {%- set ns_tool = namespace(first=true) -%}
5
+ {{ '{' -}}
6
+ {%- for k, v in tool.items() -%}
7
+ {%- if k != 'defer_loading' and k != 'strict' -%}
8
+ {%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}
9
+ {%- set ns_tool.first = false -%}
10
+ "{{ k }}": {{ v | tojson(ensure_ascii=False) }}
11
+ {%- endif -%}
12
+ {%- endfor -%}
13
+ {{- '}' -}}
14
+ {%- endmacro -%}
15
+ <|system|>
16
+ # Tools
17
+
18
+ You may call one or more functions to assist with the user query.
19
+
20
+ You are provided with function signatures within <tools></tools> XML tags:
21
+ <tools>
22
+ {% for tool in tools %}
23
+ {%- if 'function' in tool -%}
24
+ {%- set tool = tool['function'] -%}
25
+ {%- endif -%}
26
+ {% if tool.defer_loading is not defined or not tool.defer_loading %}
27
+ {{ tool_to_json(tool) }}
28
+ {% endif %}
29
+ {% endfor %}
30
+ </tools>
31
+
32
+ For each function call, output the function name and arguments within the following XML format:
33
+ <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 -%}
34
+ {%- macro visible_text(content) -%}
35
+ {%- if content is string -%}
36
+ {{- content }}
37
+ {%- elif content is iterable and content is not mapping -%}
38
+ {%- for item in content -%}
39
+ {%- if item is mapping and item.type == 'text' -%}
40
+ {{- item.text }}
41
+ {%- elif item is string -%}
42
+ {{- item }}
43
+ {%- endif -%}
44
+ {%- endfor -%}
45
+ {%- else -%}
46
+ {{- content }}
47
+ {%- endif -%}
48
+ {%- endmacro -%}
49
+ {%- set ns = namespace(last_user_index=-1, thinking_indices='') -%}
50
+ {%- for m in messages %}
51
+ {%- if m.role == 'user' %}
52
+ {%- set ns.last_user_index = loop.index0 -%}
53
+ {%- elif m.role == 'assistant' %}
54
+ {%- if m.reasoning_content is string %}
55
+ {%- set ns.thinking_indices = ns.thinking_indices ~ ',' ~ ns.last_user_index ~ ',' -%}
56
+ {%- endif %}
57
+ {%- endif %}
58
+ {%- endfor %}
59
+ {%- set ns.has_thinking = false -%}
60
+ {%- for m in messages -%}
61
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}{% set ns.has_thinking = (',' ~ loop.index0 ~ ',') in ns.thinking_indices -%}
62
+ {%- elif m.role == 'assistant' -%}
63
+ <|assistant|>
64
+ {%- set content = visible_text(m.content) %}
65
+ {%- if m.reasoning_content is string %}
66
+ {%- set reasoning_content = m.reasoning_content %}
67
+ {%- elif '</think>' in content %}
68
+ {%- set reasoning_content = content.split('</think>')[0].split('<think>')[-1] %}
69
+ {%- set content = content.split('</think>')[-1] %}
70
+ {%- elif loop.index0 > ns.last_user_index and not (enable_thinking is defined and not enable_thinking) %}
71
+ {%- set reasoning_content = '' %}
72
+ {%- elif loop.index0 < ns.last_user_index and ns.has_thinking %}
73
+ {%- set reasoning_content = '' %}
74
+ {%- endif %}
75
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content is defined -%}
76
+ {{ '<think>' + reasoning_content + '</think>'}}
77
+ {%- else -%}
78
+ {{ '</think>' }}
79
+ {%- endif -%}
80
+ {%- if content.strip() -%}
81
+ {{ content.strip() }}
82
+ {%- endif -%}
83
+ {% if m.tool_calls %}
84
+ {% for tc in m.tool_calls %}
85
+ {%- if tc.function %}
86
+ {%- set tc = tc.function %}
87
+ {%- endif %}
88
+ {{- '<tool_call>' + tc.name -}}
89
+ {% 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 %}
90
+ {% endif %}
91
+ {%- elif m.role == 'tool' -%}
92
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
93
+ {{- '<|observation|>' -}}
94
+ {%- endif %}
95
+ {%- if m.content is string -%}
96
+ {{- '<tool_response>' + m.content + '</tool_response>' -}}
97
+ {%- else -%}
98
+ {{- '<tool_response><tools>\n' -}}
99
+ {% for tr in m.content %}
100
+ {%- for tool in tools -%}
101
+ {%- if 'function' in tool -%}
102
+ {%- set tool = tool['function'] -%}
103
+ {%- endif -%}
104
+ {%- if tool.name == tr.name -%}
105
+ {{- tool_to_json(tool) + '\n' -}}
106
+ {%- endif -%}
107
+ {%- endfor -%}
108
+ {%- endfor -%}
109
+ {{- '</tools></tool_response>' -}}
110
+ {% endif -%}
111
+ {%- elif m.role == 'system' -%}
112
+ <|system|>{{ visible_text(m.content) }}
113
+ {%- endif -%}
114
+ {%- endfor -%}
115
+ {%- if add_generation_prompt -%}
116
+ <|assistant|>{{- '</think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
117
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GlmMoeDsaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": [
9
+ 154820,
10
+ 154827,
11
+ 154829
12
+ ],
13
+ "ep_size": 1,
14
+ "first_k_dense_replace": 3,
15
+ "head_dim": 64,
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
+ "model_type": "glm_moe_dsa",
27
+ "moe_intermediate_size": 2048,
28
+ "moe_layer_freq": 1,
29
+ "n_group": 1,
30
+ "n_routed_experts": 256,
31
+ "n_shared_experts": 1,
32
+ "norm_topk_prob": true,
33
+ "num_attention_heads": 64,
34
+ "num_experts_per_tok": 8,
35
+ "num_hidden_layers": 78,
36
+ "num_key_value_heads": 64,
37
+ "num_nextn_predict_layers": 1,
38
+ "pad_token_id": 154820,
39
+ "pretraining_tp": 1,
40
+ "q_lora_rank": 2048,
41
+ "qk_head_dim": 256,
42
+ "qk_nope_head_dim": 192,
43
+ "qk_rope_head_dim": 64,
44
+ "quantization": {
45
+ "group_size": 64,
46
+ "bits": 4,
47
+ "mode": "affine"
48
+ },
49
+ "quantization_config": {
50
+ "group_size": 64,
51
+ "bits": 4,
52
+ "mode": "affine"
53
+ },
54
+ "rms_norm_eps": 1e-05,
55
+ "rope_interleave": true,
56
+ "rope_parameters": {
57
+ "rope_theta": 1000000,
58
+ "rope_type": "default"
59
+ },
60
+ "routed_scaling_factor": 2.5,
61
+ "scoring_func": "sigmoid",
62
+ "tie_word_embeddings": false,
63
+ "topk_group": 1,
64
+ "topk_method": "noaux_tc",
65
+ "transformers_version": "5.4.0",
66
+ "use_cache": true,
67
+ "v_head_dim": 256,
68
+ "vocab_size": 154880
69
+ }
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.4.0"
12
+ }
model-00003-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79099169ceacbb845091a31ce7c5be43be4d45cbb8db9fcc39e0583320aec15
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:1ed74077c6af97a484a61dedf0616f2310738e62ea8530e52f19d34bbfb36e85
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:7a0eb85e4927348720709e5f7a4d934cbac7d75012dd16538a613621fb0f6afc
3
+ size 3947717362
model-00010-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad50882d0ace08f77c4086291c095c2a7b0643e45525e5c95b1fba45c6ef3015
3
+ size 5357003398
model-00011-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4655079c79dee65cc05f8d35bafe8bbb7f7b94fa26a2ae4d11f56a427c6d7f4c
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:a1748c370ef34c1cf89571bfaf2f3af7d13c0c87bcea170917ddbdf120b7b54b
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:b9cfa97eb01846afac0d2974b95b0e23dc6beee6d150b890d10c8837c56c7fc8
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:37a1728be9b6b7ebac95bae34850c24f8eff85e774d29c4f9c1978804edac286
3
+ size 3947717380
model-00020-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97dc6e5b6dd98a86699648fa43d4d9d6cc7d6eba7c974f42ec792b47bfe02c49
3
+ size 5357003394
model-00022-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:724537dc4971c8e04927caf6f4b3ff9c93e489cac8217574e63e1385acfc9514
3
+ size 5357003398
model-00023-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6752d168ef6dbe5ae8b6aba82bc18c214e4115dfdcb252cacddcbbb5a88ca864
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:2a4eabed2d32d3abab15e1cbc312b96328391a1eb74a66b23d6153619da7a841
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:9689b3cc2ca5c2d7854bfd41a088ef143a4576bb84634a2dcf8377ca72a355d4
3
+ size 5357003402
model-00027-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6195d8b43945b7bc6bf311acc41f8b5ead7d313ff66088601e913c4bc43083a4
3
+ size 3947717384
model-00028-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed9180004097c2508fd8a91a0da68045469fc5f6f96e56aa42d4d435bc3ee376
3
+ size 5357003398
model-00029-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4182cbb09c494d74bc045f000eb094bfc88eb78bb5ac23b644f25eaa5ab75e94
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:e316e7e2e360501bed7af89abd2bc1d38522d0bf2aa1a399f8f607e01f280a4a
3
+ size 3847053956
model-00034-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f20a9ee594a13ef549d83057aa53c7296009b4d89c1708b3de11b101ca89e51
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:5a8a980afc55899182ddc33dd40060f532fc39bb2043186e98c7f29515d2cbc8
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:08691dc51962f2d806be37e19b3549f1885206e7a87a5ae13c44940a78b4fd4e
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:1f337bb03a1f510b78d214ff91cf742af6db9bda80c6bcea44adc9e55cfbbc7e
3
+ size 5335155738
model-00047-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:677ccc4ba65b17648732af64174525eedef343aa50dd27f1e7ed9516b15612f5
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:1fb320895a964353722432ff36a47f8ba9d5ef24f2183d2215e64c6328454428
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:1ffd6a5430cfdcd63205facb17acc710d491151595dc3e67b54780c0cf69ba26
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:169c7dea6e4db05cbe4f8d821edfba36e1dea48ed7878ab148c4adb56aa40e2e
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:073766ec18761334f5bfec190f0727e2bf289ca7100c50210b29733100ea85de
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:857def919a5f9b78203469c2b72be9e56fc07f05c71dbd0aa356158b08a60aa8
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:7bad2bc81a73b14184b240252d9e4bcce4b6692547a1adc8024d3441d0f5c311
3
+ size 3847053918
model-00061-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83fee6c50228c3b690d89d5dfd043849c575856aeaf3155cdff6426588025f90
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:db48505e0c38aac1a6121ac6722d93db4937e525b34ff688835f227485845b53
3
+ size 5357003388
model-00063-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb9b5a2383a037a85fff72bb619b4012773f9e18127bd16a32f7baf32d00598d
3
+ size 3947717356
model-00066-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b4a4aa2f51d29c06bf1cf85c1f84a53372a4ae75f2f23329681001bc39ac442
3
+ size 5335155734
model-00067-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6efc115600b3d9ba770c8d8e3445acdc9d3ef32988b1a0e0e3066856e0294cee
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:772db26190b6f876bb6becf268f1f52d3333ddaa4043f72dffbd8ac53c10090e
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:04cd01c84c5841b69cfcdffe816a5ca0a62d5b9c28afc8796f10d46139ba9524
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:64d57bb63e3a6a43b3bd44ce1c1c9813f4955e3e19bc312d17d1a56a4f942c5d
3
+ size 5357003398
model-00073-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b223acb29bbf70320df36d588ca3ce782142ecaba848a2976a1e18fd80598aa8
3
+ size 3847053950
model-00075-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:802476b9c73a79f7b4f0e02e3123c114a851de9319b9276db1919ce4c662ca26
3
+ size 3947717358
model-00083-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15f916e6cf6582bd059b37c319792cf4197c56d95009ab775ffd75cb288d5d61
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:6e9fd527cf28fc0cdd57c9771acc817f3910fbf2b6c8be4e3354517a7a0072be
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:69afc20b3d872474e471187e558c086db797aa688f90b7ef6141b3e6c357c6b7
3
+ size 3947717258
model-00090-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea48c7ff47af4d152c5737f653563f0db1f4e96bd08aba1d02eddb99fcfd528b
3
+ size 5335155736
model-00091-of-00091.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13a9a2a609eff3fbb05e40be6cea16de70caeb2dfb122e04896281c73b66cb17
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