Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- README.md +36 -0
- config.json +66 -0
- configuration_deepseek.py +199 -0
- model-00001-of-00175.safetensors +3 -0
- model-00002-of-00175.safetensors +3 -0
- model-00004-of-00175.safetensors +3 -0
- model-00005-of-00175.safetensors +3 -0
- model-00007-of-00175.safetensors +3 -0
- model-00008-of-00175.safetensors +3 -0
- model-00010-of-00175.safetensors +3 -0
- model-00012-of-00175.safetensors +3 -0
- model-00013-of-00175.safetensors +3 -0
- model-00014-of-00175.safetensors +3 -0
- model-00015-of-00175.safetensors +3 -0
- model-00016-of-00175.safetensors +3 -0
- model-00017-of-00175.safetensors +3 -0
- model-00018-of-00175.safetensors +3 -0
- model-00019-of-00175.safetensors +3 -0
- model-00020-of-00175.safetensors +3 -0
- model-00021-of-00175.safetensors +3 -0
- model-00022-of-00175.safetensors +3 -0
- model-00024-of-00175.safetensors +3 -0
- model-00025-of-00175.safetensors +3 -0
- model-00026-of-00175.safetensors +3 -0
- model-00027-of-00175.safetensors +3 -0
- model-00028-of-00175.safetensors +3 -0
- model-00029-of-00175.safetensors +3 -0
- model-00030-of-00175.safetensors +3 -0
- model-00032-of-00175.safetensors +3 -0
- model-00033-of-00175.safetensors +3 -0
- model-00035-of-00175.safetensors +3 -0
- model-00036-of-00175.safetensors +3 -0
- model-00037-of-00175.safetensors +3 -0
- model-00038-of-00175.safetensors +3 -0
- model-00039-of-00175.safetensors +3 -0
- model-00040-of-00175.safetensors +3 -0
- model-00041-of-00175.safetensors +3 -0
- model-00043-of-00175.safetensors +3 -0
- model-00044-of-00175.safetensors +3 -0
- model-00045-of-00175.safetensors +3 -0
- model-00046-of-00175.safetensors +3 -0
- model-00049-of-00175.safetensors +3 -0
- model-00050-of-00175.safetensors +3 -0
- model-00051-of-00175.safetensors +3 -0
- model-00052-of-00175.safetensors +3 -0
- model-00053-of-00175.safetensors +3 -0
- model-00054-of-00175.safetensors +3 -0
- model-00055-of-00175.safetensors +3 -0
- model-00056-of-00175.safetensors +3 -0
- model-00057-of-00175.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
library_name: mlx
|
4 |
+
pipeline_tag: text-generation
|
5 |
+
base_model: deepseek-ai/DeepSeek-v3-0324
|
6 |
+
tags:
|
7 |
+
- mlx
|
8 |
+
---
|
9 |
+
|
10 |
+
# mlx-community/DeepSeek-v3-0324-8bit
|
11 |
+
|
12 |
+
This model [mlx-community/DeepSeek-v3-0324-8bit](https://huggingface.co/mlx-community/DeepSeek-v3-0324-8bit) was
|
13 |
+
converted to MLX format from [deepseek-ai/DeepSeek-v3-0324](https://huggingface.co/deepseek-ai/DeepSeek-v3-0324)
|
14 |
+
using mlx-lm version **0.22.2**.
|
15 |
+
|
16 |
+
## Use with mlx
|
17 |
+
|
18 |
+
```bash
|
19 |
+
pip install mlx-lm
|
20 |
+
```
|
21 |
+
|
22 |
+
```python
|
23 |
+
from mlx_lm import load, generate
|
24 |
+
|
25 |
+
model, tokenizer = load("mlx-community/DeepSeek-v3-0324-8bit")
|
26 |
+
|
27 |
+
prompt = "hello"
|
28 |
+
|
29 |
+
if tokenizer.chat_template is not None:
|
30 |
+
messages = [{"role": "user", "content": prompt}]
|
31 |
+
prompt = tokenizer.apply_chat_template(
|
32 |
+
messages, add_generation_prompt=True
|
33 |
+
)
|
34 |
+
|
35 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
36 |
+
```
|
config.json
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"DeepseekV3ForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"auto_map": {
|
8 |
+
"AutoConfig": "configuration_deepseek.DeepseekV3Config",
|
9 |
+
"AutoModel": "modeling_deepseek.DeepseekV3Model",
|
10 |
+
"AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
|
11 |
+
},
|
12 |
+
"bos_token_id": 0,
|
13 |
+
"eos_token_id": 1,
|
14 |
+
"ep_size": 1,
|
15 |
+
"first_k_dense_replace": 3,
|
16 |
+
"hidden_act": "silu",
|
17 |
+
"hidden_size": 7168,
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 18432,
|
20 |
+
"kv_lora_rank": 512,
|
21 |
+
"max_position_embeddings": 163840,
|
22 |
+
"model_type": "deepseek_v3",
|
23 |
+
"moe_intermediate_size": 2048,
|
24 |
+
"moe_layer_freq": 1,
|
25 |
+
"n_group": 8,
|
26 |
+
"n_routed_experts": 256,
|
27 |
+
"n_shared_experts": 1,
|
28 |
+
"norm_topk_prob": true,
|
29 |
+
"num_attention_heads": 128,
|
30 |
+
"num_experts_per_tok": 8,
|
31 |
+
"num_hidden_layers": 61,
|
32 |
+
"num_key_value_heads": 128,
|
33 |
+
"num_nextn_predict_layers": 1,
|
34 |
+
"q_lora_rank": 1536,
|
35 |
+
"qk_nope_head_dim": 128,
|
36 |
+
"qk_rope_head_dim": 64,
|
37 |
+
"quantization": {
|
38 |
+
"group_size": 64,
|
39 |
+
"bits": 8
|
40 |
+
},
|
41 |
+
"quantization_config": {
|
42 |
+
"group_size": 64,
|
43 |
+
"bits": 8
|
44 |
+
},
|
45 |
+
"rms_norm_eps": 1e-06,
|
46 |
+
"rope_scaling": {
|
47 |
+
"beta_fast": 32,
|
48 |
+
"beta_slow": 1,
|
49 |
+
"factor": 40,
|
50 |
+
"mscale": 1.0,
|
51 |
+
"mscale_all_dim": 1.0,
|
52 |
+
"original_max_position_embeddings": 4096,
|
53 |
+
"type": "yarn"
|
54 |
+
},
|
55 |
+
"rope_theta": 10000,
|
56 |
+
"routed_scaling_factor": 2.5,
|
57 |
+
"scoring_func": "sigmoid",
|
58 |
+
"tie_word_embeddings": false,
|
59 |
+
"topk_group": 4,
|
60 |
+
"topk_method": "noaux_tc",
|
61 |
+
"torch_dtype": "bfloat16",
|
62 |
+
"transformers_version": "4.46.3",
|
63 |
+
"use_cache": true,
|
64 |
+
"v_head_dim": 128,
|
65 |
+
"vocab_size": 129280
|
66 |
+
}
|
configuration_deepseek.py
ADDED
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers.configuration_utils import PretrainedConfig
|
2 |
+
from transformers.utils import logging
|
3 |
+
|
4 |
+
logger = logging.get_logger(__name__)
|
5 |
+
|
6 |
+
DEEPSEEK_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
|
7 |
+
class DeepseekV3Config(PretrainedConfig):
|
8 |
+
r"""
|
9 |
+
This is the configuration class to store the configuration of a [`DeepseekV3Model`]. It is used to instantiate an DeepSeek
|
10 |
+
model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
|
11 |
+
defaults will yield a similar configuration to that of the DeepSeek-V3.
|
12 |
+
|
13 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
14 |
+
documentation from [`PretrainedConfig`] for more information.
|
15 |
+
|
16 |
+
|
17 |
+
Args:
|
18 |
+
vocab_size (`int`, *optional*, defaults to 129280):
|
19 |
+
Vocabulary size of the Deep model. Defines the number of different tokens that can be represented by the
|
20 |
+
`inputs_ids` passed when calling [`DeepseekV3Model`]
|
21 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
22 |
+
Dimension of the hidden representations.
|
23 |
+
intermediate_size (`int`, *optional*, defaults to 11008):
|
24 |
+
Dimension of the MLP representations.
|
25 |
+
moe_intermediate_size (`int`, *optional*, defaults to 1407):
|
26 |
+
Dimension of the MoE representations.
|
27 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
28 |
+
Number of hidden layers in the Transformer decoder.
|
29 |
+
num_nextn_predict_layers (`int`, *optional*, defaults to 1):
|
30 |
+
Number of nextn predict layers in the DeepSeekV3 Model.
|
31 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
32 |
+
Number of attention heads for each attention layer in the Transformer decoder.
|
33 |
+
n_shared_experts (`int`, *optional*, defaults to None):
|
34 |
+
Number of shared experts, None means dense model.
|
35 |
+
n_routed_experts (`int`, *optional*, defaults to None):
|
36 |
+
Number of routed experts, None means dense model.
|
37 |
+
routed_scaling_factor (`float`, *optional*, defaults to 1.0):
|
38 |
+
Scaling factor or routed experts.
|
39 |
+
topk_method (`str`, *optional*, defaults to `gready`):
|
40 |
+
Topk method used in routed gate.
|
41 |
+
n_group (`int`, *optional*, defaults to None):
|
42 |
+
Number of groups for routed experts.
|
43 |
+
topk_group (`int`, *optional*, defaults to None):
|
44 |
+
Number of selected groups for each token(for each token, ensuring the selected experts is only within `topk_group` groups).
|
45 |
+
num_experts_per_tok (`int`, *optional*, defaults to None):
|
46 |
+
Number of selected experts, None means dense model.
|
47 |
+
moe_layer_freq (`int`, *optional*, defaults to 1):
|
48 |
+
The frequency of the MoE layer: one expert layer for every `moe_layer_freq - 1` dense layers.
|
49 |
+
first_k_dense_replace (`int`, *optional*, defaults to 0):
|
50 |
+
Number of dense layers in shallow layers(embed->dense->dense->...->dense->moe->moe...->lm_head).
|
51 |
+
\--k dense layers--/
|
52 |
+
norm_topk_prob (`bool`, *optional*, defaults to False):
|
53 |
+
Whether to normalize the weights of the routed experts.
|
54 |
+
scoring_func (`str`, *optional*, defaults to 'softmax'):
|
55 |
+
Method of computing expert weights.
|
56 |
+
aux_loss_alpha (`float`, *optional*, defaults to 0.001):
|
57 |
+
Auxiliary loss weight coefficient.
|
58 |
+
seq_aux = (`bool`, *optional*, defaults to True):
|
59 |
+
Whether to compute the auxiliary loss for each individual sample.
|
60 |
+
num_key_value_heads (`int`, *optional*):
|
61 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
62 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
63 |
+
`num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
64 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
65 |
+
by meanpooling all the original heads within that group. For more details checkout [this
|
66 |
+
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
67 |
+
`num_attention_heads`.
|
68 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
69 |
+
The non-linear activation function (function or string) in the decoder.
|
70 |
+
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
71 |
+
The maximum sequence length that this model might ever be used with.
|
72 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
73 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
74 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
75 |
+
The epsilon used by the rms normalization layers.
|
76 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
77 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
78 |
+
relevant if `config.is_decoder=True`.
|
79 |
+
pad_token_id (`int`, *optional*):
|
80 |
+
Padding token id.
|
81 |
+
bos_token_id (`int`, *optional*, defaults to 1):
|
82 |
+
Beginning of stream token id.
|
83 |
+
eos_token_id (`int`, *optional*, defaults to 2):
|
84 |
+
End of stream token id.
|
85 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
86 |
+
Whether to tie weight embeddings
|
87 |
+
rope_theta (`float`, *optional*, defaults to 10000.0):
|
88 |
+
The base period of the RoPE embeddings.
|
89 |
+
rope_scaling (`Dict`, *optional*):
|
90 |
+
Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
|
91 |
+
strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
|
92 |
+
`{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
|
93 |
+
`max_position_embeddings` to the expected new maximum.
|
94 |
+
attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
|
95 |
+
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
96 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
97 |
+
The dropout ratio for the attention probabilities.
|
98 |
+
|
99 |
+
```python
|
100 |
+
>>> from transformers import DeepseekV3Model, DeepseekV3Config
|
101 |
+
|
102 |
+
>>> # Initializing a Deepseek-V3 style configuration
|
103 |
+
>>> configuration = DeepseekV3Config()
|
104 |
+
|
105 |
+
>>> # Accessing the model configuration
|
106 |
+
>>> configuration = model.config
|
107 |
+
```"""
|
108 |
+
|
109 |
+
model_type = "deepseek_v3"
|
110 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
111 |
+
|
112 |
+
def __init__(
|
113 |
+
self,
|
114 |
+
vocab_size=129280,
|
115 |
+
hidden_size=7168,
|
116 |
+
intermediate_size=18432,
|
117 |
+
moe_intermediate_size = 2048,
|
118 |
+
num_hidden_layers=61,
|
119 |
+
num_nextn_predict_layers=1,
|
120 |
+
num_attention_heads=128,
|
121 |
+
num_key_value_heads=128,
|
122 |
+
n_shared_experts = 1,
|
123 |
+
n_routed_experts = 256,
|
124 |
+
ep_size = 1,
|
125 |
+
routed_scaling_factor = 2.5,
|
126 |
+
kv_lora_rank = 512,
|
127 |
+
q_lora_rank = 1536,
|
128 |
+
qk_rope_head_dim = 64,
|
129 |
+
v_head_dim = 128,
|
130 |
+
qk_nope_head_dim = 128,
|
131 |
+
topk_method = 'noaux_tc',
|
132 |
+
n_group = 8,
|
133 |
+
topk_group = 4,
|
134 |
+
num_experts_per_tok = 8,
|
135 |
+
moe_layer_freq = 1,
|
136 |
+
first_k_dense_replace = 3,
|
137 |
+
norm_topk_prob = True,
|
138 |
+
scoring_func = 'sigmoid',
|
139 |
+
hidden_act="silu",
|
140 |
+
max_position_embeddings=4096,
|
141 |
+
initializer_range=0.02,
|
142 |
+
rms_norm_eps=1e-6,
|
143 |
+
use_cache=True,
|
144 |
+
pad_token_id=None,
|
145 |
+
bos_token_id=0,
|
146 |
+
eos_token_id=1,
|
147 |
+
tie_word_embeddings=False,
|
148 |
+
rope_theta=10000.0,
|
149 |
+
rope_scaling=None,
|
150 |
+
attention_bias=False,
|
151 |
+
attention_dropout=0.0,
|
152 |
+
**kwargs,
|
153 |
+
):
|
154 |
+
self.vocab_size = vocab_size
|
155 |
+
self.max_position_embeddings = max_position_embeddings
|
156 |
+
self.hidden_size = hidden_size
|
157 |
+
self.intermediate_size = intermediate_size
|
158 |
+
self.moe_intermediate_size = moe_intermediate_size
|
159 |
+
self.num_hidden_layers = num_hidden_layers
|
160 |
+
self.num_nextn_predict_layers = num_nextn_predict_layers
|
161 |
+
self.num_attention_heads = num_attention_heads
|
162 |
+
self.n_shared_experts = n_shared_experts
|
163 |
+
self.n_routed_experts = n_routed_experts
|
164 |
+
self.ep_size = ep_size
|
165 |
+
self.routed_scaling_factor = routed_scaling_factor
|
166 |
+
self.kv_lora_rank = kv_lora_rank
|
167 |
+
self.q_lora_rank = q_lora_rank
|
168 |
+
self.qk_rope_head_dim = qk_rope_head_dim
|
169 |
+
self.v_head_dim = v_head_dim
|
170 |
+
self.qk_nope_head_dim = qk_nope_head_dim
|
171 |
+
self.topk_method = topk_method
|
172 |
+
self.n_group = n_group
|
173 |
+
self.topk_group = topk_group
|
174 |
+
self.num_experts_per_tok = num_experts_per_tok
|
175 |
+
self.moe_layer_freq = moe_layer_freq
|
176 |
+
self.first_k_dense_replace = first_k_dense_replace
|
177 |
+
self.norm_topk_prob = norm_topk_prob
|
178 |
+
self.scoring_func = scoring_func
|
179 |
+
# for backward compatibility
|
180 |
+
if num_key_value_heads is None:
|
181 |
+
num_key_value_heads = num_attention_heads
|
182 |
+
|
183 |
+
self.num_key_value_heads = num_key_value_heads
|
184 |
+
self.hidden_act = hidden_act
|
185 |
+
self.initializer_range = initializer_range
|
186 |
+
self.rms_norm_eps = rms_norm_eps
|
187 |
+
self.use_cache = use_cache
|
188 |
+
self.rope_theta = rope_theta
|
189 |
+
self.rope_scaling = rope_scaling
|
190 |
+
self.attention_bias = attention_bias
|
191 |
+
self.attention_dropout = attention_dropout
|
192 |
+
|
193 |
+
super().__init__(
|
194 |
+
pad_token_id=pad_token_id,
|
195 |
+
bos_token_id=bos_token_id,
|
196 |
+
eos_token_id=eos_token_id,
|
197 |
+
tie_word_embeddings=tie_word_embeddings,
|
198 |
+
**kwargs,
|
199 |
+
)
|
model-00001-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05cb2dc89be3fab765634c894bf6c394d1d3a87801b71b41573fc6b61c297c8c
|
3 |
+
size 3043311353
|
model-00002-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cf855fc5617b6ea5dcbb95d84d087f28cfd999a0ec3062df0f901d17ba2eb518
|
3 |
+
size 3992977818
|
model-00004-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a338e4d49dbf63803dfc72f96c0e124b46c2c5f339a208e324f304c726e0d2a1
|
3 |
+
size 4242276741
|
model-00005-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:074c3c180f885495f034f97fb5e9216e1f183248b050e7353ae003ecf3d63df0
|
3 |
+
size 3992977818
|
model-00007-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b43eed517d76db7cf1fdc63f7556f0aba21fe0ec9c588216348ce7cb1a05619
|
3 |
+
size 4242276739
|
model-00008-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e764008a8476289b3bb973504d8c51f573a0f511c05820beb8163d2f4ace754d
|
3 |
+
size 3992977818
|
model-00010-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:979e121c6a4f83970a550cd9302024109abad6919d72e0266b9e9bca74a56928
|
3 |
+
size 4242276717
|
model-00012-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5d9887b4f171328548ead6ff135a4cbe12211b19a4860e61717565d76f90e018
|
3 |
+
size 3992977812
|
model-00013-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b98f882fca0238f48461db6705a078c48ee28f18cee60ca219906db01fd7c4e6
|
3 |
+
size 4242276737
|
model-00014-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f85623bad4f4f901ee1d2f82cf093dfea6c3e7f382014d8bd187a5f2c2caa0fd
|
3 |
+
size 3992977818
|
model-00015-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:257d5dbc9d9d150e50a88836b5bb7c45a737a039b5e2003b933b0e85322e22eb
|
3 |
+
size 3992977812
|
model-00016-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2acd9865470330b2695a45197c2875f78aa87232f9032874a06a7b7c038d3e40
|
3 |
+
size 4242276699
|
model-00017-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:96482f71ebb2ddf174a5e7bf03d0b173aa8c63b51f59796deb9bdcbdfe63ab6e
|
3 |
+
size 3992977818
|
model-00018-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:83a799faabdd12a7870295473aecb58a143bec2ea9c19cca3fe7682ff47a3511
|
3 |
+
size 3992977812
|
model-00019-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c1faa33f4cef38d967279d90c25993b4ee0eb77ff23aab9eef0774ca0536dc4
|
3 |
+
size 4242276709
|
model-00020-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3acaf798e2a1674dc550f61d25a839ab4e11181b56987adc779bd32332eadca0
|
3 |
+
size 3992977818
|
model-00021-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c6b31afdf9006e6ba84757f078d4e88adb64a63d12fa25d4bb0924caadedec7c
|
3 |
+
size 3992977812
|
model-00022-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b9c2f04a453cd959f40a7a2bc2624f5cf61dc91c07a11d9139395459ccc2497
|
3 |
+
size 4242276734
|
model-00024-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b26e860b6d1033d606763e01ce3324f6de658a0f7e44ad9cb5f412f94d07579b
|
3 |
+
size 3992977815
|
model-00025-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:44439b61d55c1924aed37fa2e79f1657bbfa61f422aca6e440cdf6e93b78e021
|
3 |
+
size 4242276724
|
model-00026-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b2eb202b5ac5495fb026debfdd4d18d730da0986f424d3b9f87ecf811f541d2
|
3 |
+
size 3992977821
|
model-00027-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68933bed57da27760ad606d93827c8d2ef6d66fb0af5fd4b456feabb1c67f999
|
3 |
+
size 3992977815
|
model-00028-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6605cb46a77bcc5d1f6db4b411bced5518ab977b7c1e6266ad6b829755901f7b
|
3 |
+
size 4242276750
|
model-00029-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:83e921c1e9291d86dabf0ed3760d5aa812452f1aea1146a41e8333389fbe2666
|
3 |
+
size 3992977821
|
model-00030-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5d3be073e4c16e606bc06977bf70488c46a54c235725f3567525e11f7e65a14c
|
3 |
+
size 3992977815
|
model-00032-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:818b86e533c68074c688fb57eb96e66370bf0f7873cc2d1b10c24d925a67eda5
|
3 |
+
size 3992977821
|
model-00033-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f304886c806dadba4929e5069bf9cc49646a88167f86251d08453a37e0b6b6c0
|
3 |
+
size 3992977815
|
model-00035-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c51a9b14fc2ae29e0ab1f12b7ca1003a6bcbc2309e6c3a8f4a8794aa03e963dd
|
3 |
+
size 3992977821
|
model-00036-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:968b892782aa1a2507562e25cc83eff5481bc66f44cfd7802f3dbac33773f55e
|
3 |
+
size 3992977815
|
model-00037-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b02e9dded34bf8bda58d20f242e19949003b5a826d0f7bd9e603532ae766006d
|
3 |
+
size 4242276758
|
model-00038-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3703e4ef831a8eaf995e1ecf17e33bc3f1dece893ae152bd8e62324e5075cd11
|
3 |
+
size 3992977821
|
model-00039-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4ce13ec38b210d03944072896776555675259a1d9611ae20d40d854cd509168c
|
3 |
+
size 3992977815
|
model-00040-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d83e08ea17a649e7e25d44fa5e2e4c1bea74412547e11754a430fd197a74b3ee
|
3 |
+
size 4242276782
|
model-00041-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d84cd24ff2209a249d5c17553722efde895297df97c3d979f45eed2ccd39f54
|
3 |
+
size 3992977821
|
model-00043-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d31431a3d04ae2bfbbc06baca9c90803d8a71a7e3d2188f74c662799e3f36442
|
3 |
+
size 4242276758
|
model-00044-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ceb7d99761e653af2fa40e0a02546a89ad14872b446beec1103ed066db111bf
|
3 |
+
size 3992977821
|
model-00045-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3492bb327b6d18f30a9aeb2dcd0345fb28dbce8d9fddbde155ca9f8d1cf7375
|
3 |
+
size 3992977815
|
model-00046-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:18375b3a406bfcdc89f10e6e42cec211da0d3b884019ca32475d012a9c40078f
|
3 |
+
size 4242276770
|
model-00049-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0cc84082c7ab142a810a94bee484fbb6c5ab7688ee78eaf804c528a45eff4de9
|
3 |
+
size 4242276750
|
model-00050-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f89d98b2f874fea0bb8c09a36ec9112b057713d0a17c649c7d3a5c3d3724e064
|
3 |
+
size 3992977821
|
model-00051-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:841f746ca081000804754f86602fb30cb84b9c458bd881aee8b0efe551a9fbc1
|
3 |
+
size 3992977815
|
model-00052-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:61eab91bef680feefad7845bde511ee700aa7ffc0f572c5bee841f18740b8d58
|
3 |
+
size 4242276758
|
model-00053-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c57a5cf3b2fa8f6cdc7bcb8069ef0d4404ccac3f031d2b7c53546b3c0550551f
|
3 |
+
size 3992977821
|
model-00054-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b216f04d9843114b3cc41cf71ccc3224585642e0ec56edeef3eac66fa16d9bdd
|
3 |
+
size 3992977815
|
model-00055-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4de048278f5463ec8f30daaf1c5dc8e441df21c92ef504fba8fa8d8ee8eb666
|
3 |
+
size 4242276780
|
model-00056-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac8fb2994e6307c6452a117ed69ba018f9573c647d7c1057b6931011ec858d41
|
3 |
+
size 3992977821
|
model-00057-of-00175.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:745b922028b2d4ba872069d26afc539020f17b34e65018abfd7e778ae46a35af
|
3 |
+
size 3992977815
|