mirror of
https://www.modelscope.cn/unsloth/DeepSeek-V3.1-Base.git
synced 2026-04-02 10:02:57 +08:00
Upload folder using ModelScope SDK
This commit is contained in:
4
.gitattributes
vendored
4
.gitattributes
vendored
@ -44,4 +44,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
||||
*.tar filter=lfs diff=lfs merge=lfs -text
|
||||
*.wasm filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
||||
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 DeepSeek
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
55
README.md
55
README.md
@ -1,47 +1,10 @@
|
||||
---
|
||||
license: Apache License 2.0
|
||||
|
||||
#model-type:
|
||||
##如 gpt、phi、llama、chatglm、baichuan 等
|
||||
#- gpt
|
||||
|
||||
#domain:
|
||||
##如 nlp、cv、audio、multi-modal
|
||||
#- nlp
|
||||
|
||||
#language:
|
||||
##语言代码列表 https://help.aliyun.com/document_detail/215387.html?spm=a2c4g.11186623.0.0.9f8d7467kni6Aa
|
||||
#- cn
|
||||
|
||||
#metrics:
|
||||
##如 CIDEr、Blue、ROUGE 等
|
||||
#- CIDEr
|
||||
|
||||
#tags:
|
||||
##各种自定义,包括 pretrained、fine-tuned、instruction-tuned、RL-tuned 等训练方法和其他
|
||||
#- pretrained
|
||||
|
||||
#tools:
|
||||
##如 vllm、fastchat、llamacpp、AdaSeq 等
|
||||
#- vllm
|
||||
---
|
||||
### 当前模型的贡献者未提供更加详细的模型介绍。模型文件和权重,可浏览“模型文件”页面获取。
|
||||
#### 您可以通过如下git clone命令,或者ModelScope SDK来下载模型
|
||||
|
||||
SDK下载
|
||||
```bash
|
||||
#安装ModelScope
|
||||
pip install modelscope
|
||||
```
|
||||
```python
|
||||
#SDK模型下载
|
||||
from modelscope import snapshot_download
|
||||
model_dir = snapshot_download('unsloth/DeepSeek-V3.1-Base')
|
||||
```
|
||||
Git下载
|
||||
```
|
||||
#Git模型下载
|
||||
git clone https://www.modelscope.cn/unsloth/DeepSeek-V3.1-Base.git
|
||||
```
|
||||
|
||||
<p style="color: lightgrey;">如果您是本模型的贡献者,我们邀请您根据<a href="https://modelscope.cn/docs/ModelScope%E6%A8%A1%E5%9E%8B%E6%8E%A5%E5%85%A5%E6%B5%81%E7%A8%8B%E6%A6%82%E8%A7%88" style="color: lightgrey; text-decoration: underline;">模型贡献文档</a>,及时完善模型卡片内容。</p>
|
||||
base_model:
|
||||
- deepseek-ai/DeepSeek-V3.1-Base
|
||||
license: mit
|
||||
tags:
|
||||
- deepseek
|
||||
- unsloth
|
||||
pipeline_tag: text-generation
|
||||
library_name: transformers
|
||||
---
|
||||
3
chat_template.jinja
Normal file
3
chat_template.jinja
Normal file
@ -0,0 +1,3 @@
|
||||
{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% if not thinking is defined %}{% set thinking = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, system_prompt='', is_first_sp=true, is_last_user=false) %}{%- 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 + '
|
||||
|
||||
' + message['content'] %}{%- endif %}{%- endif %}{%- endfor %}{{ bos_token }}{{ ns.system_prompt }}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{%- set ns.is_first = false -%}{%- set ns.is_last_user = true -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['tool_calls'] is defined and message['tool_calls'] is not none %}{%- if ns.is_last_user %}{{'<|Assistant|></think>'}}{%- endif %}{%- set ns.is_last_user = false -%}{%- set ns.is_first = false %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls'] %}{%- if not ns.is_first %}{%- if message['content'] is none %}{{'<|tool▁calls▁begin|><|tool▁call▁begin|>'+ tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}{%- else %}{{message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}{%- endif %}{%- set ns.is_first = true -%}{%- else %}{{'<|tool▁call▁begin|>'+ tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}{%- endif %}{%- endfor %}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- if message['role'] == 'assistant' and (message['tool_calls'] is not defined or message['tool_calls'] is none) %}{%- if ns.is_last_user %}{{'<|Assistant|>'}}{%- if message['prefix'] is defined and message['prefix'] and thinking %}{{'<think>'}} {%- else %}{{'</think>'}}{%- endif %}{%- endif %}{%- set ns.is_last_user = false -%}{%- if ns.is_tool %}{{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)[1] -%}{%- endif %}{{content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_last_user = false -%}{%- set ns.is_tool = true -%}{{'<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endfor -%}{%- if add_generation_prompt and ns.is_last_user and not ns.is_tool %}{{'<|Assistant|>'}}{%- if not thinking %}{{'</think>'}}{%- else %}{{'<think>'}}{%- endif %}{% endif %}
|
||||
69
config.json
Normal file
69
config.json
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"architectures": [
|
||||
"DeepseekV3ForCausalLM"
|
||||
],
|
||||
"attention_bias": false,
|
||||
"attention_dropout": 0.0,
|
||||
"auto_map": {
|
||||
"AutoConfig": "configuration_deepseek.DeepseekV3Config",
|
||||
"AutoModel": "modeling_deepseek.DeepseekV3Model",
|
||||
"AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
|
||||
},
|
||||
"bos_token_id": 0,
|
||||
"eos_token_id": 1,
|
||||
"ep_size": 1,
|
||||
"first_k_dense_replace": 3,
|
||||
"hidden_act": "silu",
|
||||
"hidden_size": 7168,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 18432,
|
||||
"kv_lora_rank": 512,
|
||||
"max_position_embeddings": 163840,
|
||||
"model_type": "deepseek_v3",
|
||||
"moe_intermediate_size": 2048,
|
||||
"moe_layer_freq": 1,
|
||||
"n_group": 8,
|
||||
"n_routed_experts": 256,
|
||||
"n_shared_experts": 1,
|
||||
"norm_topk_prob": true,
|
||||
"num_attention_heads": 128,
|
||||
"num_experts_per_tok": 8,
|
||||
"num_hidden_layers": 61,
|
||||
"num_key_value_heads": 128,
|
||||
"num_nextn_predict_layers": 1,
|
||||
"pad_token_id": 2,
|
||||
"q_lora_rank": 1536,
|
||||
"qk_nope_head_dim": 128,
|
||||
"qk_rope_head_dim": 64,
|
||||
"quantization_config": {
|
||||
"activation_scheme": "dynamic",
|
||||
"fmt": "e4m3",
|
||||
"quant_method": "fp8",
|
||||
"weight_block_size": [
|
||||
128,
|
||||
128
|
||||
]
|
||||
},
|
||||
"rms_norm_eps": 1e-06,
|
||||
"rope_scaling": {
|
||||
"beta_fast": 32,
|
||||
"beta_slow": 1,
|
||||
"factor": 40,
|
||||
"mscale": 1.0,
|
||||
"mscale_all_dim": 1.0,
|
||||
"original_max_position_embeddings": 4096,
|
||||
"type": "yarn"
|
||||
},
|
||||
"rope_theta": 10000,
|
||||
"routed_scaling_factor": 2.5,
|
||||
"scoring_func": "sigmoid",
|
||||
"tie_word_embeddings": false,
|
||||
"topk_group": 4,
|
||||
"topk_method": "noaux_tc",
|
||||
"torch_dtype": "bfloat16",
|
||||
"transformers_version": "4.55.2",
|
||||
"unsloth_fixed": true,
|
||||
"use_cache": true,
|
||||
"v_head_dim": 128,
|
||||
"vocab_size": 129280
|
||||
}
|
||||
1
configuration.json
Normal file
1
configuration.json
Normal file
@ -0,0 +1 @@
|
||||
{"framework": "pytorch", "task": "text-generation", "allow_remote": true}
|
||||
199
configuration_deepseek.py
Normal file
199
configuration_deepseek.py
Normal file
@ -0,0 +1,199 @@
|
||||
from transformers.configuration_utils import PretrainedConfig
|
||||
from transformers.utils import logging
|
||||
|
||||
logger = logging.get_logger(__name__)
|
||||
|
||||
DEEPSEEK_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
|
||||
class DeepseekV3Config(PretrainedConfig):
|
||||
r"""
|
||||
This is the configuration class to store the configuration of a [`DeepseekV3Model`]. It is used to instantiate an DeepSeek
|
||||
model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
|
||||
defaults will yield a similar configuration to that of the DeepSeek-V3.
|
||||
|
||||
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
||||
documentation from [`PretrainedConfig`] for more information.
|
||||
|
||||
|
||||
Args:
|
||||
vocab_size (`int`, *optional*, defaults to 129280):
|
||||
Vocabulary size of the Deep model. Defines the number of different tokens that can be represented by the
|
||||
`inputs_ids` passed when calling [`DeepseekV3Model`]
|
||||
hidden_size (`int`, *optional*, defaults to 4096):
|
||||
Dimension of the hidden representations.
|
||||
intermediate_size (`int`, *optional*, defaults to 11008):
|
||||
Dimension of the MLP representations.
|
||||
moe_intermediate_size (`int`, *optional*, defaults to 1407):
|
||||
Dimension of the MoE representations.
|
||||
num_hidden_layers (`int`, *optional*, defaults to 32):
|
||||
Number of hidden layers in the Transformer decoder.
|
||||
num_nextn_predict_layers (`int`, *optional*, defaults to 1):
|
||||
Number of nextn predict layers in the DeepSeekV3 Model.
|
||||
num_attention_heads (`int`, *optional*, defaults to 32):
|
||||
Number of attention heads for each attention layer in the Transformer decoder.
|
||||
n_shared_experts (`int`, *optional*, defaults to None):
|
||||
Number of shared experts, None means dense model.
|
||||
n_routed_experts (`int`, *optional*, defaults to None):
|
||||
Number of routed experts, None means dense model.
|
||||
routed_scaling_factor (`float`, *optional*, defaults to 1.0):
|
||||
Scaling factor or routed experts.
|
||||
topk_method (`str`, *optional*, defaults to `gready`):
|
||||
Topk method used in routed gate.
|
||||
n_group (`int`, *optional*, defaults to None):
|
||||
Number of groups for routed experts.
|
||||
topk_group (`int`, *optional*, defaults to None):
|
||||
Number of selected groups for each token(for each token, ensuring the selected experts is only within `topk_group` groups).
|
||||
num_experts_per_tok (`int`, *optional*, defaults to None):
|
||||
Number of selected experts, None means dense model.
|
||||
moe_layer_freq (`int`, *optional*, defaults to 1):
|
||||
The frequency of the MoE layer: one expert layer for every `moe_layer_freq - 1` dense layers.
|
||||
first_k_dense_replace (`int`, *optional*, defaults to 0):
|
||||
Number of dense layers in shallow layers(embed->dense->dense->...->dense->moe->moe...->lm_head).
|
||||
\--k dense layers--/
|
||||
norm_topk_prob (`bool`, *optional*, defaults to False):
|
||||
Whether to normalize the weights of the routed experts.
|
||||
scoring_func (`str`, *optional*, defaults to 'softmax'):
|
||||
Method of computing expert weights.
|
||||
aux_loss_alpha (`float`, *optional*, defaults to 0.001):
|
||||
Auxiliary loss weight coefficient.
|
||||
seq_aux = (`bool`, *optional*, defaults to True):
|
||||
Whether to compute the auxiliary loss for each individual sample.
|
||||
num_key_value_heads (`int`, *optional*):
|
||||
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
||||
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
||||
`num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
||||
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
||||
by meanpooling all the original heads within that group. For more details checkout [this
|
||||
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
||||
`num_attention_heads`.
|
||||
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
||||
The non-linear activation function (function or string) in the decoder.
|
||||
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
||||
The maximum sequence length that this model might ever be used with.
|
||||
initializer_range (`float`, *optional*, defaults to 0.02):
|
||||
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
||||
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
||||
The epsilon used by the rms normalization layers.
|
||||
use_cache (`bool`, *optional*, defaults to `True`):
|
||||
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
||||
relevant if `config.is_decoder=True`.
|
||||
pad_token_id (`int`, *optional*):
|
||||
Padding token id.
|
||||
bos_token_id (`int`, *optional*, defaults to 1):
|
||||
Beginning of stream token id.
|
||||
eos_token_id (`int`, *optional*, defaults to 2):
|
||||
End of stream token id.
|
||||
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
||||
Whether to tie weight embeddings
|
||||
rope_theta (`float`, *optional*, defaults to 10000.0):
|
||||
The base period of the RoPE embeddings.
|
||||
rope_scaling (`Dict`, *optional*):
|
||||
Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
|
||||
strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
|
||||
`{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
|
||||
`max_position_embeddings` to the expected new maximum.
|
||||
attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
|
||||
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
||||
attention_dropout (`float`, *optional*, defaults to 0.0):
|
||||
The dropout ratio for the attention probabilities.
|
||||
|
||||
```python
|
||||
>>> from transformers import DeepseekV3Model, DeepseekV3Config
|
||||
|
||||
>>> # Initializing a Deepseek-V3 style configuration
|
||||
>>> configuration = DeepseekV3Config()
|
||||
|
||||
>>> # Accessing the model configuration
|
||||
>>> configuration = model.config
|
||||
```"""
|
||||
|
||||
model_type = "deepseek_v3"
|
||||
keys_to_ignore_at_inference = ["past_key_values"]
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
vocab_size=129280,
|
||||
hidden_size=7168,
|
||||
intermediate_size=18432,
|
||||
moe_intermediate_size = 2048,
|
||||
num_hidden_layers=61,
|
||||
num_nextn_predict_layers=1,
|
||||
num_attention_heads=128,
|
||||
num_key_value_heads=128,
|
||||
n_shared_experts = 1,
|
||||
n_routed_experts = 256,
|
||||
ep_size = 1,
|
||||
routed_scaling_factor = 2.5,
|
||||
kv_lora_rank = 512,
|
||||
q_lora_rank = 1536,
|
||||
qk_rope_head_dim = 64,
|
||||
v_head_dim = 128,
|
||||
qk_nope_head_dim = 128,
|
||||
topk_method = 'noaux_tc',
|
||||
n_group = 8,
|
||||
topk_group = 4,
|
||||
num_experts_per_tok = 8,
|
||||
moe_layer_freq = 1,
|
||||
first_k_dense_replace = 3,
|
||||
norm_topk_prob = True,
|
||||
scoring_func = 'sigmoid',
|
||||
hidden_act="silu",
|
||||
max_position_embeddings=4096,
|
||||
initializer_range=0.02,
|
||||
rms_norm_eps=1e-6,
|
||||
use_cache=True,
|
||||
pad_token_id=None,
|
||||
bos_token_id=0,
|
||||
eos_token_id=1,
|
||||
tie_word_embeddings=False,
|
||||
rope_theta=10000.0,
|
||||
rope_scaling=None,
|
||||
attention_bias=False,
|
||||
attention_dropout=0.0,
|
||||
**kwargs,
|
||||
):
|
||||
self.vocab_size = vocab_size
|
||||
self.max_position_embeddings = max_position_embeddings
|
||||
self.hidden_size = hidden_size
|
||||
self.intermediate_size = intermediate_size
|
||||
self.moe_intermediate_size = moe_intermediate_size
|
||||
self.num_hidden_layers = num_hidden_layers
|
||||
self.num_nextn_predict_layers = num_nextn_predict_layers
|
||||
self.num_attention_heads = num_attention_heads
|
||||
self.n_shared_experts = n_shared_experts
|
||||
self.n_routed_experts = n_routed_experts
|
||||
self.ep_size = ep_size
|
||||
self.routed_scaling_factor = routed_scaling_factor
|
||||
self.kv_lora_rank = kv_lora_rank
|
||||
self.q_lora_rank = q_lora_rank
|
||||
self.qk_rope_head_dim = qk_rope_head_dim
|
||||
self.v_head_dim = v_head_dim
|
||||
self.qk_nope_head_dim = qk_nope_head_dim
|
||||
self.topk_method = topk_method
|
||||
self.n_group = n_group
|
||||
self.topk_group = topk_group
|
||||
self.num_experts_per_tok = num_experts_per_tok
|
||||
self.moe_layer_freq = moe_layer_freq
|
||||
self.first_k_dense_replace = first_k_dense_replace
|
||||
self.norm_topk_prob = norm_topk_prob
|
||||
self.scoring_func = scoring_func
|
||||
# for backward compatibility
|
||||
if num_key_value_heads is None:
|
||||
num_key_value_heads = num_attention_heads
|
||||
|
||||
self.num_key_value_heads = num_key_value_heads
|
||||
self.hidden_act = hidden_act
|
||||
self.initializer_range = initializer_range
|
||||
self.rms_norm_eps = rms_norm_eps
|
||||
self.use_cache = use_cache
|
||||
self.rope_theta = rope_theta
|
||||
self.rope_scaling = rope_scaling
|
||||
self.attention_bias = attention_bias
|
||||
self.attention_dropout = attention_dropout
|
||||
|
||||
super().__init__(
|
||||
pad_token_id=pad_token_id,
|
||||
bos_token_id=bos_token_id,
|
||||
eos_token_id=eos_token_id,
|
||||
tie_word_embeddings=tie_word_embeddings,
|
||||
**kwargs,
|
||||
)
|
||||
9
generation_config.json
Normal file
9
generation_config.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"_from_model_config": true,
|
||||
"bos_token_id": 0,
|
||||
"eos_token_id": 1,
|
||||
"do_sample": true,
|
||||
"temperature": 0.6,
|
||||
"top_p": 0.95,
|
||||
"transformers_version": "4.46.3"
|
||||
}
|
||||
3
model-00001-of-000163.safetensors
Normal file
3
model-00001-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2668b4d448e73199bff9a5b3a1a5f788bcbfa49b7f4b93e96e67bec00c545a57
|
||||
size 135
|
||||
3
model-00002-of-000163.safetensors
Normal file
3
model-00002-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f58ffd56aa8cba99c0e95875c98ef0483c712865182f62846d3dff7fc83a7d41
|
||||
size 135
|
||||
3
model-00003-of-000163.safetensors
Normal file
3
model-00003-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc791f38a19044e0736bb4d9054a54d7e9cef2300c5e016d0c68bebb1d348ff1
|
||||
size 135
|
||||
3
model-00004-of-000163.safetensors
Normal file
3
model-00004-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9ed432b78307315333608bf742abd27140a1aa81acd82a4e3571e4dcf21e8abc
|
||||
size 135
|
||||
3
model-00005-of-000163.safetensors
Normal file
3
model-00005-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2bf7355f7079a253371a4ed668bc81c280ad14844d3e432753bd7bcbcc96a7ea
|
||||
size 135
|
||||
3
model-00006-of-000163.safetensors
Normal file
3
model-00006-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb2ecb04bacc8b5c02d9c2cde350f7a7504cd985cfd7811de54f60ae5c67ffea
|
||||
size 135
|
||||
3
model-00007-of-000163.safetensors
Normal file
3
model-00007-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:39a054e8c7dd397ea7b6e949e7dd910b3181d1e343c0b32bb1f5fd866decef55
|
||||
size 135
|
||||
3
model-00008-of-000163.safetensors
Normal file
3
model-00008-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2a52475e56372ad21b584395f438574d4071960d6f36f44a6145d225e569dcb
|
||||
size 135
|
||||
3
model-00009-of-000163.safetensors
Normal file
3
model-00009-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d7f7c6444a9799e7f4c9e55259abc7149dc9535b1cfa91b48694cf53f24d0ce
|
||||
size 135
|
||||
3
model-00010-of-000163.safetensors
Normal file
3
model-00010-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2dbcf9e10ecedcf764ebf18944ded22ac4da332de8f4cb48ee2d1c08ce9e092b
|
||||
size 135
|
||||
3
model-00011-of-000163.safetensors
Normal file
3
model-00011-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f58da1bacdd06ee92ec23431b5a328b4c96c6ad8e236e91140573675823acff9
|
||||
size 135
|
||||
3
model-00012-of-000163.safetensors
Normal file
3
model-00012-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbd32497450fe9a60f20606c661ac05276d9084f45c36895763fe462b4db51d4
|
||||
size 135
|
||||
3
model-00013-of-000163.safetensors
Normal file
3
model-00013-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a25990066ee05072c079624b22db37477e7fbeb54d48e5cb49d0b5433e48af8
|
||||
size 135
|
||||
3
model-00014-of-000163.safetensors
Normal file
3
model-00014-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ad4596ca52064e34a94a48066192b888ef8fb15236f32a1837b2eb5ac3c9f858
|
||||
size 135
|
||||
3
model-00015-of-000163.safetensors
Normal file
3
model-00015-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:06fd2aed7564c2038e3da1aab80e9d05a7823586f98a817faa33bce24a07a429
|
||||
size 135
|
||||
3
model-00016-of-000163.safetensors
Normal file
3
model-00016-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f619b812dbf922cbc87a89f0d4e4cf87bc11fb108e4f7e45b926ae0d803ceb8
|
||||
size 135
|
||||
3
model-00017-of-000163.safetensors
Normal file
3
model-00017-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:599c722fcd03215bcb9b67aad7c79710a485507b305b5d2e57ab545b8515d9a8
|
||||
size 135
|
||||
3
model-00018-of-000163.safetensors
Normal file
3
model-00018-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f689f307ddfd68bb79ee13b6b355898bf55c9ea26212303c16eeedeeac666dad
|
||||
size 135
|
||||
3
model-00019-of-000163.safetensors
Normal file
3
model-00019-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7bab82e7159bc2817a42e84e3db916fb39398bfa807edab4678abb7e3e41aae5
|
||||
size 135
|
||||
3
model-00020-of-000163.safetensors
Normal file
3
model-00020-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55119f2bb00b5a29522f85d726bd8be77cebe02f7af39fbd407c11b26feeb3f9
|
||||
size 135
|
||||
3
model-00021-of-000163.safetensors
Normal file
3
model-00021-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ac2cb0f4ae8754554217b8f16c714ab1b265f710ad87d95db6ba853fba8663a
|
||||
size 135
|
||||
3
model-00022-of-000163.safetensors
Normal file
3
model-00022-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd0fc0a440175e2ae630c3a182ff64fa6706ee992c6c30febedcea7c64703b52
|
||||
size 135
|
||||
3
model-00023-of-000163.safetensors
Normal file
3
model-00023-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95d262bac52c827bb4cb60b5e757f04749ef66105d4cdc933112541583ff7d11
|
||||
size 135
|
||||
3
model-00024-of-000163.safetensors
Normal file
3
model-00024-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a55227356ca83ac3451f1525835cba139a030342dad26b7fb78aca561d88f575
|
||||
size 135
|
||||
3
model-00025-of-000163.safetensors
Normal file
3
model-00025-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bda6c025980d3ed183524ef05a37f61b05e55cb0307fe798a9fc73b0cedef0a4
|
||||
size 135
|
||||
3
model-00026-of-000163.safetensors
Normal file
3
model-00026-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:41918ba65ed14914ec1f8b2f69c60b0617fd560037332b1f86cd288e748b4bf1
|
||||
size 135
|
||||
3
model-00027-of-000163.safetensors
Normal file
3
model-00027-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:96b5e5b908e2cb2cfa45a531bdfbf1ce2cb0babf059dfb022e82df150b4c22fa
|
||||
size 135
|
||||
3
model-00028-of-000163.safetensors
Normal file
3
model-00028-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4849cfe03f358aef1842e68c8a53f8ea46eeff1e00323adfcae538d0ca3a85f2
|
||||
size 135
|
||||
3
model-00029-of-000163.safetensors
Normal file
3
model-00029-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cacaca536cfc99ba59a59999cb28763bf68c88225b16a0e22b45a756cb9ec34c
|
||||
size 135
|
||||
3
model-00030-of-000163.safetensors
Normal file
3
model-00030-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7fc025adc39a7c0c8d4acd40a83679d9ada2b1fab7c37c5bbecdf0af25be659d
|
||||
size 135
|
||||
3
model-00031-of-000163.safetensors
Normal file
3
model-00031-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:660a9ad518189088c3ee81d67a0c2cedfc4a2cc9e74a1efdac649325dddc6a13
|
||||
size 135
|
||||
3
model-00032-of-000163.safetensors
Normal file
3
model-00032-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47479268742fe4b4ae439692bcf312b57037841990608c1b96561a3b39c76d42
|
||||
size 135
|
||||
3
model-00033-of-000163.safetensors
Normal file
3
model-00033-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:46c66c6a31f17aab307b86bacf26e2e34dd01d60f8a8a78ce096230163b3b1b0
|
||||
size 135
|
||||
3
model-00034-of-000163.safetensors
Normal file
3
model-00034-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d59ac0d81e9d33674cd793311dc5a5fee4596fbcd390e279e7132a58957abf05
|
||||
size 135
|
||||
3
model-00035-of-000163.safetensors
Normal file
3
model-00035-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:15cff7b774eac897954f30b41f69d3a4b91c66c0ec6b69e74685990fa1d76908
|
||||
size 135
|
||||
3
model-00036-of-000163.safetensors
Normal file
3
model-00036-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0678e3ae8b2da82da27ffb26a474e25ae751ac3e87c86345dc6b4df62bb69bc
|
||||
size 135
|
||||
3
model-00037-of-000163.safetensors
Normal file
3
model-00037-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93292c682d7ca30d0b06dbb826aa883058b3349487074892a7f1dabf7c412edd
|
||||
size 135
|
||||
3
model-00038-of-000163.safetensors
Normal file
3
model-00038-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5568f217c228ade51b58bc4cdc831f402cc7e89c37f0d492aadfa7f13e1c0662
|
||||
size 135
|
||||
3
model-00039-of-000163.safetensors
Normal file
3
model-00039-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f2565ee39413812ce9c9267c67c34905e888b3cdfe77ff247981e181ed9f45ee
|
||||
size 135
|
||||
3
model-00040-of-000163.safetensors
Normal file
3
model-00040-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:74bd9a99782d32b8adced910da9ca443cade4880e7ec6ecf47e815fdd49c329c
|
||||
size 135
|
||||
3
model-00041-of-000163.safetensors
Normal file
3
model-00041-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18fa5459a000467b1a141a73cb6739dd6809130e58dbff786aadef35f8642815
|
||||
size 135
|
||||
3
model-00042-of-000163.safetensors
Normal file
3
model-00042-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4031e1cbb13261dba2d703e7eeafa06319306800a780da63ae38c89ed8d2dbe
|
||||
size 135
|
||||
3
model-00043-of-000163.safetensors
Normal file
3
model-00043-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4567ced090e57572b5868215a2b4e915e49a63e04ab2e97087ae3d1f547d2f0f
|
||||
size 135
|
||||
3
model-00044-of-000163.safetensors
Normal file
3
model-00044-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc53f8e0e707ec741725f884d465b84a8b240d9d1348932d41cc584e9a73695c
|
||||
size 135
|
||||
3
model-00045-of-000163.safetensors
Normal file
3
model-00045-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e50942ca5fe2f7e2d284f7a910a89eef31483f603df440d06ed3174fc4626215
|
||||
size 135
|
||||
3
model-00046-of-000163.safetensors
Normal file
3
model-00046-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:759286becb920e482eb718db39cf05efdb0e1652004121a34ee2d76812081539
|
||||
size 135
|
||||
3
model-00047-of-000163.safetensors
Normal file
3
model-00047-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:154788662d4184fcaa43e1e29db9d1aa7c104040d262d24d13889a12625fd58f
|
||||
size 135
|
||||
3
model-00048-of-000163.safetensors
Normal file
3
model-00048-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af11893c18bf9033e8b4ac14abe128f6308a657b576a33dcc7a97f75a92cd2e8
|
||||
size 135
|
||||
3
model-00049-of-000163.safetensors
Normal file
3
model-00049-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a2e589ea6b86bb52ca7982177372fd20873c0e2c1a0014550a33b3e1eb53e4f2
|
||||
size 135
|
||||
3
model-00050-of-000163.safetensors
Normal file
3
model-00050-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d887a00bf3f64acd54fdd0106ad8a3bf849b7b0426969e23ba9f7a285f977023
|
||||
size 135
|
||||
3
model-00051-of-000163.safetensors
Normal file
3
model-00051-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:75ab8179dac0dbc3f41c33d4007b66fd6f7580ab141d63eb79d364434b4fe727
|
||||
size 135
|
||||
3
model-00052-of-000163.safetensors
Normal file
3
model-00052-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4000fa109c66730a2866c6488a62afa11575394d037f05dc63a141ad83191a9
|
||||
size 135
|
||||
3
model-00053-of-000163.safetensors
Normal file
3
model-00053-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:597be10069c2e1faf37c69334c227d8c75b968de2e264c6504fdb8bbef352e79
|
||||
size 135
|
||||
3
model-00054-of-000163.safetensors
Normal file
3
model-00054-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cde2aa0bbe6ed85a80fe489ee239672ed2759f95a3f954113ab1cf3d2d5a3d47
|
||||
size 135
|
||||
3
model-00055-of-000163.safetensors
Normal file
3
model-00055-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f777f6c549b8dba5eda656dbd1a94d0d490e5df0153bac7763856f3026ac9d21
|
||||
size 135
|
||||
3
model-00056-of-000163.safetensors
Normal file
3
model-00056-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8cb45e8e361e4caa3ed9e75adb7552bd658c066e615fd44c5162ba9abd2b8933
|
||||
size 135
|
||||
3
model-00057-of-000163.safetensors
Normal file
3
model-00057-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3112231e41489ad3f9f61c09b3c738ffae1bd4240a683d6f2b26bd5aefa9393
|
||||
size 135
|
||||
3
model-00058-of-000163.safetensors
Normal file
3
model-00058-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fb8d09457639ad64ddcd09652d4987ef6bdbd158531462d4ea9ff55f31ff240
|
||||
size 135
|
||||
3
model-00059-of-000163.safetensors
Normal file
3
model-00059-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e48d4c5a8d0b3556d3ba7b4a4e7d92262538316417c49e910344d5f06e55ebd1
|
||||
size 135
|
||||
3
model-00060-of-000163.safetensors
Normal file
3
model-00060-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6123ebe7ef6ed37b6deddfca5a3255091f00b5fa8d928ae083f49ffdc7d716f5
|
||||
size 135
|
||||
3
model-00061-of-000163.safetensors
Normal file
3
model-00061-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9ed57a6051cd14a61b729892db7f90c9329d0134a734502ab95099f547b2d379
|
||||
size 135
|
||||
3
model-00062-of-000163.safetensors
Normal file
3
model-00062-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bda18502e0bb6b02bc9d6bf8c369605ff72b6c7cbc26eb6009c5ec494689f136
|
||||
size 135
|
||||
3
model-00063-of-000163.safetensors
Normal file
3
model-00063-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a81815a45c2d1fe06041e525d15990b476cdd06601d6a4a16c898b9059c0128
|
||||
size 135
|
||||
3
model-00064-of-000163.safetensors
Normal file
3
model-00064-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0cee68e66c81f53bf51a3f6a0507b60f888774e892b1e1390e714cb36cbd40b1
|
||||
size 135
|
||||
3
model-00065-of-000163.safetensors
Normal file
3
model-00065-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:67bf1bca527d8b9d446c0bd7f8514410d401941f152d9542e4cf6bb1e8ba6c81
|
||||
size 135
|
||||
3
model-00066-of-000163.safetensors
Normal file
3
model-00066-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:016255960efa5cef56cb4984db1cb3385e6f22c2137f03fa820f785563c88d80
|
||||
size 135
|
||||
3
model-00067-of-000163.safetensors
Normal file
3
model-00067-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ff7c6538240079d73160b7a2354c954848a865f20124911dc60d742ba31303e8
|
||||
size 135
|
||||
3
model-00068-of-000163.safetensors
Normal file
3
model-00068-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a79cd431b9b348afc8fb1050b4789bfb43f2d37102572f0f1195af8e5d0296e
|
||||
size 135
|
||||
3
model-00069-of-000163.safetensors
Normal file
3
model-00069-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:83772ac6a6e3aa956401a0b55205771f5895b8a3c0b1157ab06463a594ff779b
|
||||
size 135
|
||||
3
model-00070-of-000163.safetensors
Normal file
3
model-00070-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cceab811df5939cfb8c17eb21e123841bc206e1a6a2175ea21c48be2fe958c89
|
||||
size 135
|
||||
3
model-00071-of-000163.safetensors
Normal file
3
model-00071-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8b171e636c403b83fa9fee4de8319dbae5c8bf5d8149ae2df43e8f3d1b1907a9
|
||||
size 135
|
||||
3
model-00072-of-000163.safetensors
Normal file
3
model-00072-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4347dc7212b1ede05013ef3b95674b789a775ad6148ad8714e8fb17a4ecf5bc4
|
||||
size 135
|
||||
3
model-00073-of-000163.safetensors
Normal file
3
model-00073-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:42f9aeaf1d67a8a6a4ba960b99eca12fab37f9311a652af21633079c9aa29e66
|
||||
size 135
|
||||
3
model-00074-of-000163.safetensors
Normal file
3
model-00074-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab6c4a7f9d173d0af5ee7849a77ad3b963ec1f9722abed8a66493effcbebd3d1
|
||||
size 135
|
||||
3
model-00075-of-000163.safetensors
Normal file
3
model-00075-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d037aa4af7d8483f1262f9936f1701094b52eafa3b7dc45f27caa531bc28f874
|
||||
size 135
|
||||
3
model-00076-of-000163.safetensors
Normal file
3
model-00076-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d8bb3d31a2818027888563738466603aa6a3bdb3711268e40293022aa03e51e0
|
||||
size 135
|
||||
3
model-00077-of-000163.safetensors
Normal file
3
model-00077-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:168c91490a144c2d6ff976b230ff9deede7a268a1b6d065519bbfee25d627a49
|
||||
size 135
|
||||
3
model-00078-of-000163.safetensors
Normal file
3
model-00078-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03346d85a9ca16bf2502fdc40ae6546c3cab523813adfa26ac0653cb7f1c26f2
|
||||
size 135
|
||||
3
model-00079-of-000163.safetensors
Normal file
3
model-00079-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0657ea778424c318216a4ca9d3202bbe566485aa40a4d9401ad377185e044827
|
||||
size 135
|
||||
3
model-00080-of-000163.safetensors
Normal file
3
model-00080-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:76528eef82b1067f649da3ffebc81644396107f243dbdddd75fbccb10556236d
|
||||
size 135
|
||||
3
model-00081-of-000163.safetensors
Normal file
3
model-00081-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d77bbcd7b9ddcd794a71a629c019aa4aa879de09b1fe52a56d4af3ce80e3029f
|
||||
size 135
|
||||
3
model-00082-of-000163.safetensors
Normal file
3
model-00082-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a9bd5e3c9aef2ac6728e1b75e77d2954a67b4dc43e4dce9238c845455fd0eb9a
|
||||
size 135
|
||||
3
model-00083-of-000163.safetensors
Normal file
3
model-00083-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3b532c1d14e497d808510ed59a0d677d20588ac07c847cfe3f947b61f8a26f14
|
||||
size 135
|
||||
3
model-00084-of-000163.safetensors
Normal file
3
model-00084-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:021a7a8ae956fca942e6f3b6fa9f30020d9f76ffe612475957660e3c1cd580b6
|
||||
size 135
|
||||
3
model-00085-of-000163.safetensors
Normal file
3
model-00085-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c595cb9376ffa7d5cbf95aba48f44469788e12a06e13e2d32e964b516c7ebda1
|
||||
size 135
|
||||
3
model-00086-of-000163.safetensors
Normal file
3
model-00086-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9339f8eb574ceac9b94e3cfd59b5be3693a6dc6ea57d11ce8ea15c350560013c
|
||||
size 135
|
||||
3
model-00087-of-000163.safetensors
Normal file
3
model-00087-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a46b398cd293c0b3c17151120ce844aee08acac21630e70a6af71bb68111450
|
||||
size 135
|
||||
3
model-00088-of-000163.safetensors
Normal file
3
model-00088-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e63eba99a3b6be34b539780dacbd9a647a0fcd1daf66b71a64606fcc2abb8d8e
|
||||
size 135
|
||||
3
model-00089-of-000163.safetensors
Normal file
3
model-00089-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb4776ddd0bdfa7fd60e164f33caee99337c78469c1961d8f5951f1445317bb0
|
||||
size 135
|
||||
3
model-00090-of-000163.safetensors
Normal file
3
model-00090-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f5d535c03b9c95101717a84f0bacba4767ed3248f13a78adb38a5730224bd34
|
||||
size 135
|
||||
3
model-00091-of-000163.safetensors
Normal file
3
model-00091-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a35a838d23d8d38c8e51322c1d4d7b8355ea48531cd6636d6ce1d53e1c618522
|
||||
size 135
|
||||
3
model-00092-of-000163.safetensors
Normal file
3
model-00092-of-000163.safetensors
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bcc3e39c50a11eba5460691335030b9fba540bab5ebbb94c131946c4ff2777c4
|
||||
size 135
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user