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 +34 -0
- config.json +69 -0
- configuration_deepseek.py +210 -0
- model-00002-of-00174.safetensors +3 -0
- model-00003-of-00174.safetensors +3 -0
- model-00005-of-00174.safetensors +3 -0
- model-00006-of-00174.safetensors +3 -0
- model-00007-of-00174.safetensors +3 -0
- model-00008-of-00174.safetensors +3 -0
- model-00009-of-00174.safetensors +3 -0
- model-00010-of-00174.safetensors +3 -0
- model-00011-of-00174.safetensors +3 -0
- model-00012-of-00174.safetensors +3 -0
- model-00014-of-00174.safetensors +3 -0
- model-00015-of-00174.safetensors +3 -0
- model-00017-of-00174.safetensors +3 -0
- model-00018-of-00174.safetensors +3 -0
- model-00020-of-00174.safetensors +3 -0
- model-00021-of-00174.safetensors +3 -0
- model-00022-of-00174.safetensors +3 -0
- model-00023-of-00174.safetensors +3 -0
- model-00024-of-00174.safetensors +3 -0
- model-00025-of-00174.safetensors +3 -0
- model-00026-of-00174.safetensors +3 -0
- model-00027-of-00174.safetensors +3 -0
- model-00028-of-00174.safetensors +3 -0
- model-00029-of-00174.safetensors +3 -0
- model-00030-of-00174.safetensors +3 -0
- model-00031-of-00174.safetensors +3 -0
- model-00032-of-00174.safetensors +3 -0
- model-00034-of-00174.safetensors +3 -0
- model-00035-of-00174.safetensors +3 -0
- model-00037-of-00174.safetensors +3 -0
- model-00038-of-00174.safetensors +3 -0
- model-00041-of-00174.safetensors +3 -0
- model-00042-of-00174.safetensors +3 -0
- model-00043-of-00174.safetensors +3 -0
- model-00044-of-00174.safetensors +3 -0
- model-00046-of-00174.safetensors +3 -0
- model-00047-of-00174.safetensors +3 -0
- model-00048-of-00174.safetensors +3 -0
- model-00049-of-00174.safetensors +3 -0
- model-00050-of-00174.safetensors +3 -0
- model-00051-of-00174.safetensors +3 -0
- model-00053-of-00174.safetensors +3 -0
- model-00054-of-00174.safetensors +3 -0
- model-00055-of-00174.safetensors +3 -0
- model-00056-of-00174.safetensors +3 -0
- model-00058-of-00174.safetensors +3 -0
- model-00059-of-00174.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
base_model: perplexity-ai/r1-1776
|
4 |
+
tags:
|
5 |
+
- mlx
|
6 |
+
---
|
7 |
+
|
8 |
+
# mlx-community/perplexity-ai-r1-1776-6bit
|
9 |
+
|
10 |
+
The Model [mlx-community/perplexity-ai-r1-1776-6bit](https://huggingface.co/mlx-community/perplexity-ai-r1-1776-6bit) was
|
11 |
+
converted to MLX format from [perplexity-ai/r1-1776](https://huggingface.co/perplexity-ai/r1-1776)
|
12 |
+
using mlx-lm version **0.21.4**.
|
13 |
+
|
14 |
+
## Use with mlx
|
15 |
+
|
16 |
+
```bash
|
17 |
+
pip install mlx-lm
|
18 |
+
```
|
19 |
+
|
20 |
+
```python
|
21 |
+
from mlx_lm import load, generate
|
22 |
+
|
23 |
+
model, tokenizer = load("mlx-community/perplexity-ai-r1-1776-6bit")
|
24 |
+
|
25 |
+
prompt = "hello"
|
26 |
+
|
27 |
+
if tokenizer.chat_template is not None:
|
28 |
+
messages = [{"role": "user", "content": prompt}]
|
29 |
+
prompt = tokenizer.apply_chat_template(
|
30 |
+
messages, add_generation_prompt=True
|
31 |
+
)
|
32 |
+
|
33 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
34 |
+
```
|
config.json
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"DeepseekV3ForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0,
|
7 |
+
"auto_map": {
|
8 |
+
"AutoConfig": "configuration_deepseek.DeepseekV3Config",
|
9 |
+
"AutoModel": "modeling_deepseek.DeepseekV3Model",
|
10 |
+
"AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
|
11 |
+
},
|
12 |
+
"aux_loss_alpha": 0.001,
|
13 |
+
"bos_token_id": 0,
|
14 |
+
"eos_token_id": 1,
|
15 |
+
"ep_size": 1,
|
16 |
+
"first_k_dense_replace": 3,
|
17 |
+
"hidden_act": "silu",
|
18 |
+
"hidden_size": 7168,
|
19 |
+
"initializer_range": 0.02,
|
20 |
+
"intermediate_size": 18432,
|
21 |
+
"kv_lora_rank": 512,
|
22 |
+
"max_position_embeddings": 163840,
|
23 |
+
"model_type": "deepseek_v3",
|
24 |
+
"moe_intermediate_size": 2048,
|
25 |
+
"moe_layer_freq": 1,
|
26 |
+
"n_group": 8,
|
27 |
+
"n_routed_experts": 256,
|
28 |
+
"n_shared_experts": 1,
|
29 |
+
"norm_topk_prob": true,
|
30 |
+
"num_attention_heads": 128,
|
31 |
+
"num_experts_per_tok": 8,
|
32 |
+
"num_hidden_layers": 61,
|
33 |
+
"num_key_value_heads": 128,
|
34 |
+
"num_nextn_predict_layers": 1,
|
35 |
+
"pretraining_tp": 1,
|
36 |
+
"q_lora_rank": 1536,
|
37 |
+
"qk_nope_head_dim": 128,
|
38 |
+
"qk_rope_head_dim": 64,
|
39 |
+
"quantization": {
|
40 |
+
"group_size": 64,
|
41 |
+
"bits": 6
|
42 |
+
},
|
43 |
+
"quantization_config": {
|
44 |
+
"group_size": 64,
|
45 |
+
"bits": 6
|
46 |
+
},
|
47 |
+
"rms_norm_eps": 1e-06,
|
48 |
+
"rope_scaling": {
|
49 |
+
"beta_fast": 32,
|
50 |
+
"beta_slow": 1,
|
51 |
+
"factor": 40,
|
52 |
+
"mscale": 1,
|
53 |
+
"mscale_all_dim": 1,
|
54 |
+
"original_max_position_embeddings": 4096,
|
55 |
+
"type": "yarn"
|
56 |
+
},
|
57 |
+
"rope_theta": 10000,
|
58 |
+
"routed_scaling_factor": 2.5,
|
59 |
+
"scoring_func": "sigmoid",
|
60 |
+
"seq_aux": true,
|
61 |
+
"tie_word_embeddings": false,
|
62 |
+
"topk_group": 4,
|
63 |
+
"topk_method": "noaux_tc",
|
64 |
+
"torch_dtype": "bfloat16",
|
65 |
+
"transformers_version": "4.46.3",
|
66 |
+
"use_cache": true,
|
67 |
+
"v_head_dim": 128,
|
68 |
+
"vocab_size": 129280
|
69 |
+
}
|
configuration_deepseek.py
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
pretraining_tp (`int`, *optional*, defaults to 1):
|
86 |
+
Experimental feature. Tensor parallelism rank used during pretraining. Please refer to [this
|
87 |
+
document](https://huggingface.co/docs/transformers/parallelism) to understand more about it. This value is
|
88 |
+
necessary to ensure exact reproducibility of the pretraining results. Please refer to [this
|
89 |
+
issue](https://github.com/pytorch/pytorch/issues/76232).
|
90 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
91 |
+
Whether to tie weight embeddings
|
92 |
+
rope_theta (`float`, *optional*, defaults to 10000.0):
|
93 |
+
The base period of the RoPE embeddings.
|
94 |
+
rope_scaling (`Dict`, *optional*):
|
95 |
+
Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
|
96 |
+
strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
|
97 |
+
`{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
|
98 |
+
`max_position_embeddings` to the expected new maximum.
|
99 |
+
attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
|
100 |
+
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
101 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
102 |
+
The dropout ratio for the attention probabilities.
|
103 |
+
|
104 |
+
```python
|
105 |
+
>>> from transformers import DeepseekV3Model, DeepseekV3Config
|
106 |
+
|
107 |
+
>>> # Initializing a Deepseek-V3 style configuration
|
108 |
+
>>> configuration = DeepseekV3Config()
|
109 |
+
|
110 |
+
>>> # Accessing the model configuration
|
111 |
+
>>> configuration = model.config
|
112 |
+
```"""
|
113 |
+
|
114 |
+
model_type = "deepseek_v3"
|
115 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
116 |
+
|
117 |
+
def __init__(
|
118 |
+
self,
|
119 |
+
vocab_size=129280,
|
120 |
+
hidden_size=7168,
|
121 |
+
intermediate_size=18432,
|
122 |
+
moe_intermediate_size = 2048,
|
123 |
+
num_hidden_layers=61,
|
124 |
+
num_nextn_predict_layers=1,
|
125 |
+
num_attention_heads=128,
|
126 |
+
num_key_value_heads=128,
|
127 |
+
n_shared_experts = 1,
|
128 |
+
n_routed_experts = 256,
|
129 |
+
ep_size = 1,
|
130 |
+
routed_scaling_factor = 2.5,
|
131 |
+
kv_lora_rank = 512,
|
132 |
+
q_lora_rank = 1536,
|
133 |
+
qk_rope_head_dim = 64,
|
134 |
+
v_head_dim = 128,
|
135 |
+
qk_nope_head_dim = 128,
|
136 |
+
topk_method = 'noaux_tc',
|
137 |
+
n_group = 8,
|
138 |
+
topk_group = 4,
|
139 |
+
num_experts_per_tok = 8,
|
140 |
+
moe_layer_freq = 1,
|
141 |
+
first_k_dense_replace = 3,
|
142 |
+
norm_topk_prob = True,
|
143 |
+
scoring_func = 'sigmoid',
|
144 |
+
aux_loss_alpha = 0.001,
|
145 |
+
seq_aux = True,
|
146 |
+
hidden_act="silu",
|
147 |
+
max_position_embeddings=4096,
|
148 |
+
initializer_range=0.02,
|
149 |
+
rms_norm_eps=1e-6,
|
150 |
+
use_cache=True,
|
151 |
+
pad_token_id=None,
|
152 |
+
bos_token_id=0,
|
153 |
+
eos_token_id=1,
|
154 |
+
pretraining_tp=1,
|
155 |
+
tie_word_embeddings=False,
|
156 |
+
rope_theta=10000.0,
|
157 |
+
rope_scaling=None,
|
158 |
+
attention_bias=False,
|
159 |
+
attention_dropout=0.0,
|
160 |
+
**kwargs,
|
161 |
+
):
|
162 |
+
self.vocab_size = vocab_size
|
163 |
+
self.max_position_embeddings = max_position_embeddings
|
164 |
+
self.hidden_size = hidden_size
|
165 |
+
self.intermediate_size = intermediate_size
|
166 |
+
self.moe_intermediate_size = moe_intermediate_size
|
167 |
+
self.num_hidden_layers = num_hidden_layers
|
168 |
+
self.num_nextn_predict_layers = num_nextn_predict_layers
|
169 |
+
self.num_attention_heads = num_attention_heads
|
170 |
+
self.n_shared_experts = n_shared_experts
|
171 |
+
self.n_routed_experts = n_routed_experts
|
172 |
+
self.ep_size = ep_size
|
173 |
+
self.routed_scaling_factor = routed_scaling_factor
|
174 |
+
self.kv_lora_rank = kv_lora_rank
|
175 |
+
self.q_lora_rank = q_lora_rank
|
176 |
+
self.qk_rope_head_dim = qk_rope_head_dim
|
177 |
+
self.v_head_dim = v_head_dim
|
178 |
+
self.qk_nope_head_dim = qk_nope_head_dim
|
179 |
+
self.topk_method = topk_method
|
180 |
+
self.n_group = n_group
|
181 |
+
self.topk_group = topk_group
|
182 |
+
self.num_experts_per_tok = num_experts_per_tok
|
183 |
+
self.moe_layer_freq = moe_layer_freq
|
184 |
+
self.first_k_dense_replace = first_k_dense_replace
|
185 |
+
self.norm_topk_prob = norm_topk_prob
|
186 |
+
self.scoring_func = scoring_func
|
187 |
+
self.aux_loss_alpha = aux_loss_alpha
|
188 |
+
self.seq_aux = seq_aux
|
189 |
+
# for backward compatibility
|
190 |
+
if num_key_value_heads is None:
|
191 |
+
num_key_value_heads = num_attention_heads
|
192 |
+
|
193 |
+
self.num_key_value_heads = num_key_value_heads
|
194 |
+
self.hidden_act = hidden_act
|
195 |
+
self.initializer_range = initializer_range
|
196 |
+
self.rms_norm_eps = rms_norm_eps
|
197 |
+
self.pretraining_tp = pretraining_tp
|
198 |
+
self.use_cache = use_cache
|
199 |
+
self.rope_theta = rope_theta
|
200 |
+
self.rope_scaling = rope_scaling
|
201 |
+
self.attention_bias = attention_bias
|
202 |
+
self.attention_dropout = attention_dropout
|
203 |
+
|
204 |
+
super().__init__(
|
205 |
+
pad_token_id=pad_token_id,
|
206 |
+
bos_token_id=bos_token_id,
|
207 |
+
eos_token_id=eos_token_id,
|
208 |
+
tie_word_embeddings=tie_word_embeddings,
|
209 |
+
**kwargs,
|
210 |
+
)
|
model-00002-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e34810650c46c3db731c0870a3920d569b6a3c6d6d4ffd01adb4ead1f03c69b1
|
3 |
+
size 3170894355
|
model-00003-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05dee81bc8d1063bf5bfb6703e8d0dd1cc06758d6849c80f4368d3b67b02f7bf
|
3 |
+
size 3244966256
|
model-00005-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:319d110c0284b0171e165cf658405a65206aa3387fccb22746476f7e34fde76c
|
3 |
+
size 3053453716
|
model-00006-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df1f06cadfce5c8b54c800846451f515b21879feafef283f20f7269217940b26
|
3 |
+
size 3244966260
|
model-00007-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3c4aaad39bc9165906e55c54f2161be9b390e84a5c4ad30725afba812bd9b31c
|
3 |
+
size 3053453722
|
model-00008-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d393072efc1b9248f3c96d573dc22f245388eaa60912deaee998baf2790b3b64
|
3 |
+
size 3053453716
|
model-00009-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0da86749a7a56a49b79b813b33abc03b8d437415b306799114e9dab287b01630
|
3 |
+
size 3244966250
|
model-00010-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:168926b18de8b2e10aa55f97fa38707fb6987fdbd05d55c5aff940d5a50ece7e
|
3 |
+
size 3053453722
|
model-00011-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9a6eacb1392f37565c7aa49d8600b533ff8131ffac6ba7c8c45f78f7e78b6cc9
|
3 |
+
size 3053453716
|
model-00012-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d24e7bb9d52d24a3f42c8fac35c286b977c1932dcd68f438fb57945fbf61787a
|
3 |
+
size 3244966272
|
model-00014-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d406e571e6e3d2d6b31c14747d2047b8171b7f9e35a896304307342215d4328
|
3 |
+
size 3053453716
|
model-00015-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fb1749dc987d25d2a673542caf475d55f1e71ece384c1b7f122df4f1ad68b3a6
|
3 |
+
size 3244966234
|
model-00017-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:85db4e9c422052222f5b604530ee8390b5dea52c4cf87c194eaf10d0dfb660d9
|
3 |
+
size 3053453716
|
model-00018-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93b97a1df14aaa92c87ab17cef2abd32fb66cae625cedfa7afc7366ea1a9a634
|
3 |
+
size 3244966234
|
model-00020-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38c2b1580488c825624de83c075852c7d9f58308d9f08e3620c35bf009bc402f
|
3 |
+
size 3053453716
|
model-00021-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b91725d52f4059a5674c8f491e1d45f326b8528a0894a4f4795903485ddf76b8
|
3 |
+
size 3244966269
|
model-00022-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:81707f675fac99e6431306b5492b59e8dece1c10c5ed6445b33e633e7102c714
|
3 |
+
size 3053453725
|
model-00023-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9056efc90902e840b625c339ac0c4df5f083e59f76a2524c57c722eb67aba6c9
|
3 |
+
size 3053453719
|
model-00024-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05f32f5a31bf473ffd960b56238c0d35d1a70529baeff54fc5e79af78cf0cc57
|
3 |
+
size 3244966251
|
model-00025-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:92541cf35218fd1fa4d76277a9204d5b209ed4f27006dee44e6d5cf89d548dc4
|
3 |
+
size 3053453725
|
model-00026-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0faff521b77f5b2effc461108c23efaed4206bf5d82226d3d37972c06a6f9632
|
3 |
+
size 3053453719
|
model-00027-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1013dc7577707ff8c5828d737698b149b7bb2cd684c3a503379bc377171a4e5
|
3 |
+
size 3244966281
|
model-00028-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3933d361e546cd02b4b5baab442997303e1e4509132fc02305c819661e697d0
|
3 |
+
size 3053453725
|
model-00029-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1e0e015e647d44202b7f83358b8e275eeb42fa7560c1f81ae6a7552fcc258a0c
|
3 |
+
size 3053453719
|
model-00030-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f533926b0bc5df725ac37b7eb8063a952a9a97255227dcb067297fc7cc0874fc
|
3 |
+
size 3244966303
|
model-00031-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:191a7facf307e704fdf51c025def83a33820e8dde4aec1ca3c98e790546d7e4d
|
3 |
+
size 3053453725
|
model-00032-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:764bc7f83087b6c6055d9121a1c39863ea27e9bc9c3cecf8dfd8e4f624f97a79
|
3 |
+
size 3053453719
|
model-00034-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:daa95a918c39ff72373c4f730320c09b5a97b67d776bce30b2a7f9f2daa098d4
|
3 |
+
size 3053453725
|
model-00035-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:03b72cd0c2588bf5d1de6152e1616bb5208c92f4c7dd26809feff125ecbfb213
|
3 |
+
size 3053453719
|
model-00037-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:39b10a80db2989eec32cb4608e2f78acfdc3512d48bf52f78913eaa96bf25968
|
3 |
+
size 3053453725
|
model-00038-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3c3c01b91e4de2c00ac81a5b2e5ab18af7d2b1fa493f5c1af197aabecd7d06a6
|
3 |
+
size 3053453719
|
model-00041-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cab46d52c3d366ceed08e4d6eb30e671efa865f38a50ced117da69754baf76ef
|
3 |
+
size 3053453719
|
model-00042-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65f4890db495987fcc0448e42689595968f9b1d425720345a6fd375038386427
|
3 |
+
size 3244966281
|
model-00043-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dbe5de2cc98189c237d106857d837d73a7807774433d9201d7f88cc65207d394
|
3 |
+
size 3053453725
|
model-00044-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e320508d219d2bb4b1c1b3a11aa5c226d99cf186f0f8b20a669600a3fd6b08e
|
3 |
+
size 3053453719
|
model-00046-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d3c367a05bd3ee3d4882ed7e0d57ca4b89981e4b26a1e6e0a713f21e088e5e0
|
3 |
+
size 3053453725
|
model-00047-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:407845b9c96bb70baaf0d7bcaca7079b978bd2be0e89ec59d9717060efcc7dce
|
3 |
+
size 3053453719
|
model-00048-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c264163db77b5d84f22920d2639d9aec590ca5304545736cf2ec1bbac7ab6303
|
3 |
+
size 3244966283
|
model-00049-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1790fb266836c60a9299b5a9a560adafd4f8a810ebb41efbdd084491c4cc2a3d
|
3 |
+
size 3053453725
|
model-00050-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:342077234e83d63c14464188244c9a7c7c659901932bcd18baff44c85f06afaf
|
3 |
+
size 3053453719
|
model-00051-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ade550a6026b491908738d20bf7ff65fbc401c70523af7a7cb4f4c8c01a9dc98
|
3 |
+
size 3244966287
|
model-00053-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3550c25910b78c5c63161fa25c154d43dddc90d3c5f2a7222f94c44ef98a4dd0
|
3 |
+
size 3053453719
|
model-00054-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:28d8540dedcdee381a51e451f909a21065ccd1c476cd30e43c095068bbe1a3de
|
3 |
+
size 3244966301
|
model-00055-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:90c8172b0d9d57f2d50c2dd0bd18cf826f132fc302fc23ee7790a3ed59ba6f73
|
3 |
+
size 3053453725
|
model-00056-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:28afcc3d5aacb15e0bb16ebae5f7a4c8a60408a3e735bb0f6d5b7524d2e18746
|
3 |
+
size 3053453719
|
model-00058-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:160a36c2143a96ec5d1ca5a4ac37ac3370919ac1b6534a43552225f8577d1211
|
3 |
+
size 3053453725
|
model-00059-of-00174.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4b363b6ba3242e1747b8424a49d5acf7a337baddb010a19401412c8672491c6
|
3 |
+
size 3053453719
|