INCModel1 commited on
Commit
5dcf821
·
verified ·
1 Parent(s): aa65366

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. chat_template.jinja +1 -0
  2. config.json +82 -0
  3. configuration_deepseek.py +210 -0
  4. generation_config.json +9 -0
  5. model-00001-of-00139.safetensors +3 -0
  6. model-00002-of-00139.safetensors +3 -0
  7. model-00003-of-00139.safetensors +3 -0
  8. model-00004-of-00139.safetensors +3 -0
  9. model-00005-of-00139.safetensors +3 -0
  10. model-00006-of-00139.safetensors +3 -0
  11. model-00007-of-00139.safetensors +3 -0
  12. model-00008-of-00139.safetensors +3 -0
  13. model-00009-of-00139.safetensors +3 -0
  14. model-00010-of-00139.safetensors +3 -0
  15. model-00011-of-00139.safetensors +3 -0
  16. model-00012-of-00139.safetensors +3 -0
  17. model-00013-of-00139.safetensors +3 -0
  18. model-00014-of-00139.safetensors +3 -0
  19. model-00015-of-00139.safetensors +3 -0
  20. model-00016-of-00139.safetensors +3 -0
  21. model-00017-of-00139.safetensors +3 -0
  22. model-00018-of-00139.safetensors +3 -0
  23. model-00019-of-00139.safetensors +3 -0
  24. model-00020-of-00139.safetensors +3 -0
  25. model-00021-of-00139.safetensors +3 -0
  26. model-00022-of-00139.safetensors +3 -0
  27. model-00023-of-00139.safetensors +3 -0
  28. model-00024-of-00139.safetensors +3 -0
  29. model-00025-of-00139.safetensors +3 -0
  30. model-00026-of-00139.safetensors +3 -0
  31. model-00027-of-00139.safetensors +3 -0
  32. model-00028-of-00139.safetensors +3 -0
  33. model-00029-of-00139.safetensors +3 -0
  34. model-00030-of-00139.safetensors +3 -0
  35. model-00031-of-00139.safetensors +3 -0
  36. model-00032-of-00139.safetensors +3 -0
  37. model-00033-of-00139.safetensors +3 -0
  38. model-00034-of-00139.safetensors +3 -0
  39. model-00035-of-00139.safetensors +3 -0
  40. model-00036-of-00139.safetensors +3 -0
  41. model-00037-of-00139.safetensors +3 -0
  42. model-00038-of-00139.safetensors +3 -0
  43. model-00039-of-00139.safetensors +3 -0
  44. model-00040-of-00139.safetensors +3 -0
  45. model-00041-of-00139.safetensors +3 -0
  46. model-00042-of-00139.safetensors +3 -0
  47. model-00043-of-00139.safetensors +3 -0
  48. model-00044-of-00139.safetensors +3 -0
  49. model-00045-of-00139.safetensors +3 -0
  50. model-00046-of-00139.safetensors +3 -0
chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='', is_first_sp=true) %}{%- for message in messages %}{%- if message['role'] == 'system' %}{%- if ns.is_first_sp %}{% set ns.system_prompt = ns.system_prompt + message['content'] %}{% set ns.is_first_sp = false %}{%- else %}{% set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}{%- endif %}{%- endif %}{%- endfor %}{{ bos_token }}{{ ns.system_prompt }}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and 'tool_calls' in message %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls'] %}{%- if not ns.is_first %}{%- if message['content'] is none %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- else %}{{'<|Assistant|>' + message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- endif %}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- endif %}{%- endfor %}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- if message['role'] == 'assistant' and 'tool_calls' not in message %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|><think>\n'}}{% endif %}
config.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "aux_loss_alpha": 0.001,
13
+ "bos_token_id": 0,
14
+ "dtype": "bfloat16",
15
+ "eos_token_id": 1,
16
+ "ep_size": 1,
17
+ "first_k_dense_replace": 3,
18
+ "head_dim": 64,
19
+ "hidden_act": "silu",
20
+ "hidden_size": 7168,
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 18432,
23
+ "kv_lora_rank": 512,
24
+ "max_position_embeddings": 163840,
25
+ "model_type": "deepseek_v3",
26
+ "moe_intermediate_size": 2048,
27
+ "moe_layer_freq": 1,
28
+ "n_group": 8,
29
+ "n_routed_experts": 256,
30
+ "n_shared_experts": 1,
31
+ "norm_topk_prob": true,
32
+ "num_attention_heads": 128,
33
+ "num_experts_per_tok": 8,
34
+ "num_hidden_layers": 61,
35
+ "num_key_value_heads": 128,
36
+ "num_nextn_predict_layers": 1,
37
+ "pad_token_id": 128815,
38
+ "pretraining_tp": 1,
39
+ "q_lora_rank": 1536,
40
+ "qk_head_dim": 192,
41
+ "qk_nope_head_dim": 128,
42
+ "qk_rope_head_dim": 64,
43
+ "quantization_config": {
44
+ "act_bits": 8,
45
+ "act_data_type": "mx_fp_rceil",
46
+ "act_dynamic": true,
47
+ "act_group_size": 32,
48
+ "act_sym": true,
49
+ "autoround_version": "0.9.3",
50
+ "bits": 8,
51
+ "data_type": "mx_fp",
52
+ "group_size": 32,
53
+ "iters": 0,
54
+ "packing_format": "auto_round:llm_compressor",
55
+ "quant_method": "auto-round",
56
+ "sym": true
57
+ },
58
+ "rms_norm_eps": 1e-06,
59
+ "rope_interleave": true,
60
+ "rope_scaling": {
61
+ "beta_fast": 32.0,
62
+ "beta_slow": 1.0,
63
+ "factor": 40.0,
64
+ "mscale": 1.0,
65
+ "mscale_all_dim": 1.0,
66
+ "original_max_position_embeddings": 4096,
67
+ "rope_type": "yarn",
68
+ "type": "yarn"
69
+ },
70
+ "rope_theta": 10000,
71
+ "routed_scaling_factor": 2.5,
72
+ "scoring_func": "sigmoid",
73
+ "seq_aux": true,
74
+ "tie_word_embeddings": false,
75
+ "topk_group": 4,
76
+ "topk_method": "noaux_tc",
77
+ "transformers_version": "4.57.3",
78
+ "unsloth_fixed": true,
79
+ "use_cache": true,
80
+ "v_head_dim": 128,
81
+ "vocab_size": 129280
82
+ }
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
+ )
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "do_sample": true,
5
+ "eos_token_id": 1,
6
+ "temperature": 0.6,
7
+ "top_p": 0.95,
8
+ "transformers_version": "4.57.3"
9
+ }
model-00001-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c44753d428c956e0a6cf2fbc6b0811c05f6dfafe21f88dc1852f876cf900aa97
3
+ size 4986952920
model-00002-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb0740a692150f0cf922659c27a376e4677a55a54be73159e5ed4bdc403aa4c6
3
+ size 4995893304
model-00003-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b8d77a49798bbd45ccf534026cda1a3fead9aef1df65a9014763554d9d19729
3
+ size 4995893760
model-00004-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99dbb0b5f2f55dd247cdba008e44dbc5cf2b06859bd114754cca489655564bf6
3
+ size 4995742720
model-00005-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd129aea9750b2b5f37b4b70ded795607053254230c4bd43c2c1c617ffb5f8f6
3
+ size 4995893720
model-00006-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e545b26fbb654ae5882185dd115d9972dc33d9a797378ce8674a75b1f2997fc8
3
+ size 4995742968
model-00007-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33655099ac79e4053c304704ee3b2aeb9babfd4b42d0517c9342fa52c70dc390
3
+ size 4995893472
model-00008-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83542df5eba15e59d9d62cc8190591f41f03fbb82c0304039c52799856893197
3
+ size 4995743216
model-00009-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cb8cd02b6186157f348470acba7e12d2079b0683f41f41a734dba71ac635a80
3
+ size 4995893224
model-00010-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62aeb2824c4f206e75f4fbf6fac3684b296a2c00c4c5590d0ffa119d0320791d
3
+ size 4995893760
model-00011-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28ec6fa6c038386ec1271347c6577bd8d7360d887aa564b3e740026f5177d836
3
+ size 4995742808
model-00012-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a09ed1c01dd9089399a3aa61dbb199472b50444029d6669a616aa4ea67d7981
3
+ size 4995893632
model-00013-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82b167297c89e331fc4bb6ec365c7d75ba38ac9fb43318086cccd01bb6ef2d7e
3
+ size 4995743056
model-00014-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e74a08aad9b5d26a31809e934e356023f35d22d30b287cedd319a3a40eacbfdf
3
+ size 4995893384
model-00015-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24350708748d12aab3d20c67765b7eab2e0b8f2a65598ab84a1b32b1e76b7ab4
3
+ size 4993582472
model-00016-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f87f08a43106ebb6f7d35f64d84d596d08298c6a3b43745f26d12e37e2540fd
3
+ size 4998053968
model-00017-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac9ffc6450638c6d7638d25e48e0c92658e61268dbc78e96a98442df85567db5
3
+ size 4995893760
model-00018-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb7d820a98898c4854bd287e9f7d196897824b8cfa323d90ebbdc14b6722b640
3
+ size 4995743280
model-00019-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1563285183cd7df0cd14b6fd72f2b17b445373a1b473db87adcdd65b6af22ad
3
+ size 4995894208
model-00020-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3df796b7da7bf73c5efe8e0725de60ffb5ad420c454b50205e457fd27ba3ae8f
3
+ size 4995743792
model-00021-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bc9124b07cece01a21a0d333b5c3340f9979ec4b1b24b8fac35b228ad7bd807
3
+ size 4995893960
model-00022-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db61abb396040bfdaf78fa052bf62b0c313d3487e1d4b50c3425bd70a1364687
3
+ size 4995894416
model-00023-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0999fb172295278c2583def38ac397a3b090485e92f28978b8addd4e7977341e
3
+ size 4995743376
model-00024-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0a2d9d37683e28db25d8ecc624b5e1ad0c9e2e09bf865f1988abca69bc4a9ad
3
+ size 4995894376
model-00025-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:660f99430c82d28d1050667cab1da43e2d60a59cbe3e267cb4c53dfd76c84878
3
+ size 4995743624
model-00026-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46b1ed8dc362ce63789c59e7ad309f66ca2f400d1d7b3bbfe2e60a6cf05a1ab1
3
+ size 4995894128
model-00027-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0df65fd10d2b65a47e540b07184e614b363a1180f896908177a616a5db06c89b
3
+ size 4995743872
model-00028-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a348a1f49fecea3433affddc321f8e50f1113823016d8577827347c441c365f
3
+ size 4995893880
model-00029-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4760a82bc5e023e4f7504f0684da6c7866ecce5ab67a4c7aabc28cd7782361a
3
+ size 4995894416
model-00030-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e0fbe74c3f51f0f59f4434f1be4853e8540efea79a6cb66d825243073005e85
3
+ size 4995743456
model-00031-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e34b847939f4db4fd77e004fbbd7d1d2a8f9a14ccd9ff20a26f1459762ed894
3
+ size 4995894288
model-00032-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d467f79ccff8e33be7d428af2d452bc7f2bc85812b0862e1e30234b69ea4a347
3
+ size 4995743704
model-00033-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:362ecb457467c112be01a99eec51840ca81d92f948ec959620976709a11e2ce0
3
+ size 4995894040
model-00034-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14603d2b880c4a221ea39e7eabce2d43aebcf08252ecf04abd039028a0b839d6
3
+ size 4980673464
model-00035-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c08c7e0d03dfdee5d08a0785303c3a4e4c56672eb5d1d01ca6655ff459959e2
3
+ size 4995825208
model-00036-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e129511735300ea2fb0347206aff630bf94472cbc3411b15ced8d2afb340e9b3
3
+ size 4995894416
model-00037-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b8abc14fa3911feef82abf3537b23bfafe4c344ef12d5c834dbe5a6cfa3513d
3
+ size 4995743544
model-00038-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ff58f65e8efd6b982fdd385ed23c060e21716283c39de18280d876e2f9369e1
3
+ size 4995894208
model-00039-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:593f8c4b6e5cb16d51df8ac4d39fced498903b6b2834734f6733587702fadd80
3
+ size 4995743792
model-00040-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a64661f5c6b44b0bdcf3ce685ec0174b6509c6829079f35c1467928590d76c7d
3
+ size 4995893960
model-00041-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2758e5919cf3033b4555f01caffcd755f456755df5b4417ec3563ff140f2b99c
3
+ size 4995894416
model-00042-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31c5067b6314f2218609f5b2e5adf745da4d6963700aa64d32e68e0dab4c55f3
3
+ size 4995743376
model-00043-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82bc7ea3e5effa924e584e3ce23ca00ff9d0caf292e26b0924b05db252b7befb
3
+ size 4995894368
model-00044-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00fbcc90c87b59ab8c7c756edd7e2e190ed118067e1ea475e28e3e84d9f88725
3
+ size 4995743632
model-00045-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:862bea6510e93c8c6e1f2bd633215ebb52e39ab8e8461c84c0a0165060c7a905
3
+ size 4995894120
model-00046-of-00139.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8ab5e5041e8addcbc78fda1b60f1e23396ba3c0d40220fdfc93b288d8b63689
3
+ size 4995743880