Instructions to use skt/A.X-K1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use skt/A.X-K1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="skt/A.X-K1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("skt/A.X-K1") model = AutoModelForCausalLM.from_pretrained("skt/A.X-K1", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use skt/A.X-K1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "skt/A.X-K1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "skt/A.X-K1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/skt/A.X-K1
- SGLang
How to use skt/A.X-K1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "skt/A.X-K1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "skt/A.X-K1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "skt/A.X-K1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "skt/A.X-K1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use skt/A.X-K1 with Docker Model Runner:
docker model run hf.co/skt/A.X-K1
Convert to fused experts for native transformers support (drop remote code)
#9
by Minsang - opened
This view is limited to 50 files because it contains too many changes. See the raw diff here.
- config.json +4 -9
- configuration_axk1.py +0 -209
- model-00001-of-00260.safetensors +2 -2
- model-00002-of-00260.safetensors +0 -3
- model-00003-of-00260.safetensors +0 -3
- model-00004-of-00260.safetensors +0 -3
- model-00005-of-00260.safetensors +0 -3
- model-00006-of-00260.safetensors +2 -2
- model-00007-of-00260.safetensors +0 -3
- model-00008-of-00260.safetensors +0 -3
- model-00009-of-00260.safetensors +0 -3
- model-00010-of-00260.safetensors +2 -2
- model-00011-of-00260.safetensors +0 -3
- model-00012-of-00260.safetensors +0 -3
- model-00013-of-00260.safetensors +0 -3
- model-00014-of-00260.safetensors +2 -2
- model-00015-of-00260.safetensors +0 -3
- model-00016-of-00260.safetensors +0 -3
- model-00017-of-00260.safetensors +0 -3
- model-00018-of-00260.safetensors +0 -3
- model-00019-of-00260.safetensors +2 -2
- model-00020-of-00260.safetensors +0 -3
- model-00021-of-00260.safetensors +0 -3
- model-00022-of-00260.safetensors +0 -3
- model-00023-of-00260.safetensors +2 -2
- model-00024-of-00260.safetensors +0 -3
- model-00025-of-00260.safetensors +0 -3
- model-00026-of-00260.safetensors +0 -3
- model-00027-of-00260.safetensors +2 -2
- model-00028-of-00260.safetensors +0 -3
- model-00029-of-00260.safetensors +0 -3
- model-00030-of-00260.safetensors +0 -3
- model-00031-of-00260.safetensors +2 -2
- model-00032-of-00260.safetensors +2 -2
- model-00033-of-00260.safetensors +0 -3
- model-00034-of-00260.safetensors +0 -3
- model-00035-of-00260.safetensors +0 -3
- model-00036-of-00260.safetensors +2 -2
- model-00037-of-00260.safetensors +0 -3
- model-00038-of-00260.safetensors +0 -3
- model-00039-of-00260.safetensors +0 -3
- model-00040-of-00260.safetensors +2 -2
- model-00041-of-00260.safetensors +0 -3
- model-00042-of-00260.safetensors +0 -3
- model-00043-of-00260.safetensors +0 -3
- model-00044-of-00260.safetensors +2 -2
- model-00045-of-00260.safetensors +0 -3
- model-00046-of-00260.safetensors +0 -3
- model-00047-of-00260.safetensors +0 -3
- model-00048-of-00260.safetensors +0 -3
config.json
CHANGED
|
@@ -4,11 +4,6 @@
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
-
"auto_map": {
|
| 8 |
-
"AutoConfig": "configuration_axk1.AXK1Config",
|
| 9 |
-
"AutoModel": "modeling_axk1.AXK1Model",
|
| 10 |
-
"AutoModelForCausalLM": "modeling_axk1.AXK1ForCausalLM"
|
| 11 |
-
},
|
| 12 |
"aux_loss_alpha": 0.0001,
|
| 13 |
"bos_token_id": 163691,
|
| 14 |
"eos_token_id": 163691,
|
|
@@ -38,9 +33,9 @@
|
|
| 38 |
"rms_norm_eps": 1e-06,
|
| 39 |
"rope_theta": 10000,
|
| 40 |
"rope_scaling": {
|
| 41 |
-
"beta_fast": 32,
|
| 42 |
-
"beta_slow": 1,
|
| 43 |
-
"factor": 32,
|
| 44 |
"mscale": 1.0,
|
| 45 |
"mscale_all_dim": 1.0,
|
| 46 |
"original_max_position_embeddings": 4096,
|
|
@@ -57,4 +52,4 @@
|
|
| 57 |
"use_cache": true,
|
| 58 |
"v_head_dim": 128,
|
| 59 |
"vocab_size": 163840
|
| 60 |
-
}
|
|
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
"aux_loss_alpha": 0.0001,
|
| 8 |
"bos_token_id": 163691,
|
| 9 |
"eos_token_id": 163691,
|
|
|
|
| 33 |
"rms_norm_eps": 1e-06,
|
| 34 |
"rope_theta": 10000,
|
| 35 |
"rope_scaling": {
|
| 36 |
+
"beta_fast": 32.0,
|
| 37 |
+
"beta_slow": 1.0,
|
| 38 |
+
"factor": 32.0,
|
| 39 |
"mscale": 1.0,
|
| 40 |
"mscale_all_dim": 1.0,
|
| 41 |
"original_max_position_embeddings": 4096,
|
|
|
|
| 52 |
"use_cache": true,
|
| 53 |
"v_head_dim": 128,
|
| 54 |
"vocab_size": 163840
|
| 55 |
+
}
|
configuration_axk1.py
DELETED
|
@@ -1,209 +0,0 @@
|
|
| 1 |
-
from transformers.configuration_utils import PretrainedConfig
|
| 2 |
-
from transformers.utils import logging
|
| 3 |
-
|
| 4 |
-
logger = logging.get_logger(__name__)
|
| 5 |
-
|
| 6 |
-
AXK1_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
|
| 7 |
-
class AXK1Config(PretrainedConfig):
|
| 8 |
-
r"""
|
| 9 |
-
This is the configuration class to store the configuration of a [`AXK1Model`]. It is used to instantiate an A.X
|
| 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 A.X K1.
|
| 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 |
-
Args:
|
| 17 |
-
vocab_size (`int`, *optional*, defaults to 129280):
|
| 18 |
-
Vocabulary size of the A.X K1 model. Defines the number of different tokens that can be represented by the
|
| 19 |
-
`inputs_ids` passed when calling [`AXK1Model`]
|
| 20 |
-
hidden_size (`int`, *optional*, defaults to 4096):
|
| 21 |
-
Dimension of the hidden representations.
|
| 22 |
-
intermediate_size (`int`, *optional*, defaults to 11008):
|
| 23 |
-
Dimension of the MLP representations.
|
| 24 |
-
moe_intermediate_size (`int`, *optional*, defaults to 1407):
|
| 25 |
-
Dimension of the MoE representations.
|
| 26 |
-
num_hidden_layers (`int`, *optional*, defaults to 32):
|
| 27 |
-
Number of hidden layers in the Transformer decoder.
|
| 28 |
-
num_nextn_predict_layers (`int`, *optional*, defaults to 1):
|
| 29 |
-
Number of nextn predict layers in the AXK1 Model.
|
| 30 |
-
num_attention_heads (`int`, *optional*, defaults to 32):
|
| 31 |
-
Number of attention heads for each attention layer in the Transformer decoder.
|
| 32 |
-
n_shared_experts (`int`, *optional*, defaults to None):
|
| 33 |
-
Number of shared experts, None means dense model.
|
| 34 |
-
n_routed_experts (`int`, *optional*, defaults to None):
|
| 35 |
-
Number of routed experts, None means dense model.
|
| 36 |
-
routed_scaling_factor (`float`, *optional*, defaults to 1.0):
|
| 37 |
-
Scaling factor or routed experts.
|
| 38 |
-
topk_method (`str`, *optional*, defaults to `gready`):
|
| 39 |
-
Topk method used in routed gate.
|
| 40 |
-
n_group (`int`, *optional*, defaults to None):
|
| 41 |
-
Number of groups for routed experts.
|
| 42 |
-
topk_group (`int`, *optional*, defaults to None):
|
| 43 |
-
Number of selected groups for each token(for each token, ensuring the selected experts is only within `topk_group` groups).
|
| 44 |
-
num_experts_per_tok (`int`, *optional*, defaults to None):
|
| 45 |
-
Number of selected experts, None means dense model.
|
| 46 |
-
moe_layer_freq (`int`, *optional*, defaults to 1):
|
| 47 |
-
The frequency of the MoE layer: one expert layer for every `moe_layer_freq - 1` dense layers.
|
| 48 |
-
first_k_dense_replace (`int`, *optional*, defaults to 0):
|
| 49 |
-
Number of dense layers in shallow layers(embed->dense->dense->...->dense->moe->moe...->lm_head).
|
| 50 |
-
\--k dense layers--/
|
| 51 |
-
norm_topk_prob (`bool`, *optional*, defaults to False):
|
| 52 |
-
Whether to normalize the weights of the routed experts.
|
| 53 |
-
scoring_func (`str`, *optional*, defaults to 'softmax'):
|
| 54 |
-
Method of computing expert weights.
|
| 55 |
-
aux_loss_alpha (`float`, *optional*, defaults to 0.001):
|
| 56 |
-
Auxiliary loss weight coefficient.
|
| 57 |
-
seq_aux = (`bool`, *optional*, defaults to True):
|
| 58 |
-
Whether to compute the auxiliary loss for each individual sample.
|
| 59 |
-
num_key_value_heads (`int`, *optional*):
|
| 60 |
-
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
| 61 |
-
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
| 62 |
-
`num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
| 63 |
-
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
| 64 |
-
by meanpooling all the original heads within that group. For more details checkout [this
|
| 65 |
-
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
| 66 |
-
`num_attention_heads`.
|
| 67 |
-
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
| 68 |
-
The non-linear activation function (function or string) in the decoder.
|
| 69 |
-
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
| 70 |
-
The maximum sequence length that this model might ever be used with.
|
| 71 |
-
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 72 |
-
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 73 |
-
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
| 74 |
-
The epsilon used by the rms normalization layers.
|
| 75 |
-
use_cache (`bool`, *optional*, defaults to `True`):
|
| 76 |
-
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
| 77 |
-
relevant if `config.is_decoder=True`.
|
| 78 |
-
pad_token_id (`int`, *optional*):
|
| 79 |
-
Padding token id.
|
| 80 |
-
bos_token_id (`int`, *optional*, defaults to 1):
|
| 81 |
-
Beginning of stream token id.
|
| 82 |
-
eos_token_id (`int`, *optional*, defaults to 2):
|
| 83 |
-
End of stream token id.
|
| 84 |
-
pretraining_tp (`int`, *optional*, defaults to 1):
|
| 85 |
-
Experimental feature. Tensor parallelism rank used during pretraining. Please refer to [this
|
| 86 |
-
document](https://huggingface.co/docs/transformers/parallelism) to understand more about it. This value is
|
| 87 |
-
necessary to ensure exact reproducibility of the pretraining results. Please refer to [this
|
| 88 |
-
issue](https://github.com/pytorch/pytorch/issues/76232).
|
| 89 |
-
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
| 90 |
-
Whether to tie weight embeddings
|
| 91 |
-
rope_theta (`float`, *optional*, defaults to 10000.0):
|
| 92 |
-
The base period of the RoPE embeddings.
|
| 93 |
-
rope_scaling (`Dict`, *optional*):
|
| 94 |
-
Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
|
| 95 |
-
strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
|
| 96 |
-
`{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
|
| 97 |
-
`max_position_embeddings` to the expected new maximum.
|
| 98 |
-
attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
|
| 99 |
-
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
| 100 |
-
attention_dropout (`float`, *optional*, defaults to 0.0):
|
| 101 |
-
The dropout ratio for the attention probabilities.
|
| 102 |
-
|
| 103 |
-
```python
|
| 104 |
-
>>> from transformers import AXK1Model, AXK1Config
|
| 105 |
-
|
| 106 |
-
>>> # Initializing a A.X K1 style configuration
|
| 107 |
-
>>> configuration = AXK1Config()
|
| 108 |
-
|
| 109 |
-
>>> # Accessing the model configuration
|
| 110 |
-
>>> configuration = model.config
|
| 111 |
-
```"""
|
| 112 |
-
|
| 113 |
-
model_type = "AXK1"
|
| 114 |
-
keys_to_ignore_at_inference = ["past_key_values"]
|
| 115 |
-
|
| 116 |
-
def __init__(
|
| 117 |
-
self,
|
| 118 |
-
vocab_size=163840,
|
| 119 |
-
hidden_size=7168,
|
| 120 |
-
intermediate_size=18432,
|
| 121 |
-
moe_intermediate_size = 2048,
|
| 122 |
-
num_hidden_layers=61,
|
| 123 |
-
num_nextn_predict_layers=1,
|
| 124 |
-
num_attention_heads=64,
|
| 125 |
-
num_key_value_heads=64,
|
| 126 |
-
n_shared_experts = 1,
|
| 127 |
-
n_routed_experts = 192,
|
| 128 |
-
ep_size = 8,
|
| 129 |
-
routed_scaling_factor = 2.5,
|
| 130 |
-
kv_lora_rank = 512,
|
| 131 |
-
q_lora_rank = 1536,
|
| 132 |
-
qk_rope_head_dim = 64,
|
| 133 |
-
v_head_dim = 128,
|
| 134 |
-
qk_nope_head_dim = 128,
|
| 135 |
-
topk_method = 'noaux_tc',
|
| 136 |
-
n_group = 8,
|
| 137 |
-
topk_group = 4,
|
| 138 |
-
num_experts_per_tok = 8,
|
| 139 |
-
moe_layer_freq = 1,
|
| 140 |
-
first_k_dense_replace = 1,
|
| 141 |
-
norm_topk_prob = True,
|
| 142 |
-
scoring_func = 'sigmoid',
|
| 143 |
-
aux_loss_alpha = 0.001,
|
| 144 |
-
seq_aux = True,
|
| 145 |
-
hidden_act="silu",
|
| 146 |
-
max_position_embeddings=131072,
|
| 147 |
-
initializer_range=0.02,
|
| 148 |
-
rms_norm_eps=1e-6,
|
| 149 |
-
use_cache=True,
|
| 150 |
-
pad_token_id=None,
|
| 151 |
-
bos_token_id=0,
|
| 152 |
-
eos_token_id=1,
|
| 153 |
-
pretraining_tp=1,
|
| 154 |
-
tie_word_embeddings=False,
|
| 155 |
-
rope_theta=10000.0,
|
| 156 |
-
rope_scaling=None,
|
| 157 |
-
attention_bias=False,
|
| 158 |
-
attention_dropout=0.0,
|
| 159 |
-
**kwargs,
|
| 160 |
-
):
|
| 161 |
-
self.vocab_size = vocab_size
|
| 162 |
-
self.max_position_embeddings = max_position_embeddings
|
| 163 |
-
self.hidden_size = hidden_size
|
| 164 |
-
self.intermediate_size = intermediate_size
|
| 165 |
-
self.moe_intermediate_size = moe_intermediate_size
|
| 166 |
-
self.num_hidden_layers = num_hidden_layers
|
| 167 |
-
self.num_nextn_predict_layers = num_nextn_predict_layers
|
| 168 |
-
self.num_attention_heads = num_attention_heads
|
| 169 |
-
self.n_shared_experts = n_shared_experts
|
| 170 |
-
self.n_routed_experts = n_routed_experts
|
| 171 |
-
self.ep_size = ep_size
|
| 172 |
-
self.routed_scaling_factor = routed_scaling_factor
|
| 173 |
-
self.kv_lora_rank = kv_lora_rank
|
| 174 |
-
self.q_lora_rank = q_lora_rank
|
| 175 |
-
self.qk_rope_head_dim = qk_rope_head_dim
|
| 176 |
-
self.v_head_dim = v_head_dim
|
| 177 |
-
self.qk_nope_head_dim = qk_nope_head_dim
|
| 178 |
-
self.topk_method = topk_method
|
| 179 |
-
self.n_group = n_group
|
| 180 |
-
self.topk_group = topk_group
|
| 181 |
-
self.num_experts_per_tok = num_experts_per_tok
|
| 182 |
-
self.moe_layer_freq = moe_layer_freq
|
| 183 |
-
self.first_k_dense_replace = first_k_dense_replace
|
| 184 |
-
self.norm_topk_prob = norm_topk_prob
|
| 185 |
-
self.scoring_func = scoring_func
|
| 186 |
-
self.aux_loss_alpha = aux_loss_alpha
|
| 187 |
-
self.seq_aux = seq_aux
|
| 188 |
-
# for backward compatibility
|
| 189 |
-
if num_key_value_heads is None:
|
| 190 |
-
num_key_value_heads = num_attention_heads
|
| 191 |
-
|
| 192 |
-
self.num_key_value_heads = num_key_value_heads
|
| 193 |
-
self.hidden_act = hidden_act
|
| 194 |
-
self.initializer_range = initializer_range
|
| 195 |
-
self.rms_norm_eps = rms_norm_eps
|
| 196 |
-
self.pretraining_tp = pretraining_tp
|
| 197 |
-
self.use_cache = use_cache
|
| 198 |
-
self.rope_theta = rope_theta
|
| 199 |
-
self.rope_scaling = rope_scaling
|
| 200 |
-
self.attention_bias = attention_bias
|
| 201 |
-
self.attention_dropout = attention_dropout
|
| 202 |
-
|
| 203 |
-
super().__init__(
|
| 204 |
-
pad_token_id=pad_token_id,
|
| 205 |
-
bos_token_id=bos_token_id,
|
| 206 |
-
eos_token_id=eos_token_id,
|
| 207 |
-
tie_word_embeddings=tie_word_embeddings,
|
| 208 |
-
**kwargs,
|
| 209 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
model-00001-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca0ded32fc920d5e2ea7b23c062c1ceb7618bc07a7df0c9d847c991019f564ce
|
| 3 |
+
size 20457509552
|
model-00002-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fe0bcb45d962ac5ec4dbff29cd91f879999a9aab67e3d749cf6f53f36e3e26a6
|
| 3 |
-
size 3992994232
|
|
|
|
|
|
|
|
|
|
|
|
model-00003-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5ce8780bf44afdf6f8743e6e75acce93b507f59d1a5e7ce3ff98f84ee5c127db
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00004-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b96425c0e81c515769c1f27c118f9cf6505fdcc3db4663f40c498748b45d5bdf
|
| 3 |
-
size 3992994368
|
|
|
|
|
|
|
|
|
|
|
|
model-00005-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:164f86043b69d30953b0a8c090694f664741bf26cdc88695bb1ac9a69b078997
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00006-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ad77de05705933582f61b4d1071ef76734a1a87b88592bc3417f7e0687c4148
|
| 3 |
+
size 17204559728
|
model-00007-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bc435c0b632d21495779d920c2f9a0a22198ad6151cfb7a4d33b2583366f79e8
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00008-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:082409ae90152a25e2d06f99b4e70fe45701d2e91de8aaebb660ba500c00166b
|
| 3 |
-
size 3992994328
|
|
|
|
|
|
|
|
|
|
|
|
model-00009-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1949c2327c505e37d16f79f1797171af0cf8c2f9a667589dbd8159715a719a81
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00010-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e7405893edecdf328f95dab910b65f675882e4130678ee64b29cdf60974d1f2
|
| 3 |
+
size 17204559728
|
model-00011-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:004b6958e80aac36285fecd7a6d453f932fae5f1bf2e4072777742f81932e930
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00012-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:dbed5bab4f26757b99048a1a142c34c1757dcf8e8b9391eebf6c43e68fc91263
|
| 3 |
-
size 3992994288
|
|
|
|
|
|
|
|
|
|
|
|
model-00013-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5f1ff84f637c78e83ddc090150630856c66e041f7ce6db4f919896ffae1d4849
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00014-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ccd1111a74f365f08ae46f056d42ce7b00dcbf6d6460d1bc3344d62f84c1a9b7
|
| 3 |
+
size 17204559728
|
model-00015-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cd4c43bb4abd0df948b6dceaf360be50a5c0c067eacb5a3fe4e486daa85d62f0
|
| 3 |
-
size 3992994240
|
|
|
|
|
|
|
|
|
|
|
|
model-00016-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:65a00af0f3870f9cc042ae2c563acbd658299bf28ec904026ad92fe9eee4ead6
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00017-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:474c2c959e8f0578bfa8db0e918db4e6ed0bbddff85b5b69fca76545018a639b
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00018-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ffd34d5686c37184e3913cbc74c392697e2f59576f3a6257c35079f6e8326cbd
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00019-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2899e4549037e50d366d48dc4c5cfd15b5f2d116cd41edba1fbd78890acab75
|
| 3 |
+
size 17204559728
|
model-00020-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0b5afa754c1065747ab0b6a167f197035c89f52dee1dd67dca0f97e05a2667e8
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00021-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:44153248a71ed44fc2957174f771d97de632db70dc24ccd6d3e54aac5a94bd70
|
| 3 |
-
size 3992994336
|
|
|
|
|
|
|
|
|
|
|
|
model-00022-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0abd76b458a035ea2fd5832d2893ec6a21db3cdee523d9372f91c41c20cd5f2c
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00023-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:401538e51b47359eac1cabfac98162400caf1abcde979bfd03944cd978666b1c
|
| 3 |
+
size 17204559728
|
model-00024-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1d1c7af49919466fb993f1bde6cbe8d94ac878645e6fc2e1eba7b499157ed8ea
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00025-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:92f978ebadb2aa100ca0c55a67baa5efcdb953ab1c251a1d6b7dbd516f1171c1
|
| 3 |
-
size 3992994296
|
|
|
|
|
|
|
|
|
|
|
|
model-00026-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:df53f73479e5ddc76db295c9e71043dc366418c39cc6b0ebff813ab3cd6f5835
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00027-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b50913bcf200a62f155dfcfff88628fce60c550f3ba8c71db9a4b986a18111f8
|
| 3 |
+
size 17204559728
|
model-00028-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1324db399dfa9fb82feba7d755a5993372b9aa7b975a42a8a50805250d12363a
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00029-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fa079b850646bd1b7266e732a505542c24f22c9d39ad05fb5e8141ba1fd0abab
|
| 3 |
-
size 3992994256
|
|
|
|
|
|
|
|
|
|
|
|
model-00030-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cbbd6837a3281d0ab6839f0a62f78a6cfe87fc46ff6c11739bcacaf0a0b8f119
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00031-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa5b94d1651696f38cdc653ca026137fb28610e30dfd8890a8f870d9d002b1b0
|
| 3 |
+
size 90876712
|
model-00032-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf3dff50b3397816de13eafe31e0d1650f7e2f053ddbc29f81185aaa9477c179
|
| 3 |
+
size 17113683024
|
model-00033-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:19139be74a17924ab266ca2d30abedd381f76ddab28ef9419a075e8206691fa0
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00034-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cd7f924ae3d3465c04d3e28d7af1941bc232faacd4ae772f91708261866b1401
|
| 3 |
-
size 3992994344
|
|
|
|
|
|
|
|
|
|
|
|
model-00035-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e308f25d88bcfc8dd119106fe9f9b69050045b181c36b03851e0805321ca834b
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00036-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79b6693ab04dfa39de197483b05ebf2463b131bb95d9268a2782c24f71938275
|
| 3 |
+
size 17204559728
|
model-00037-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b0a9087a2c94fce2aec4cef3c420fac9ff0f31a31c145ce8885e9fb4c7c6d7e9
|
| 3 |
-
size 3992994248
|
|
|
|
|
|
|
|
|
|
|
|
model-00038-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5ac2afb8ff27684218afb064307ea7538d56bc4b136d8693965b7207235e7384
|
| 3 |
-
size 3992994304
|
|
|
|
|
|
|
|
|
|
|
|
model-00039-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:395ca7d39cd2ada5fff3fe9f72557e5de8495c458bfdaaea1c44e3c0526306ed
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00040-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46a649edc54259c017dd1883b1e2283095194bda77e4fa4841c5bca70774916b
|
| 3 |
+
size 17204559784
|
model-00041-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:00cef7eba75f78210be972648320f8fd38e8d078a7b3050d08ccc703d9a4dfa7
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00042-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0be06d51c86ec1ec1435871d33f08ed7f97c3a5c73215b5ea0d453ea857e937c
|
| 3 |
-
size 3992994400
|
|
|
|
|
|
|
|
|
|
|
|
model-00043-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:65262fc0ffdab9b48830a46f0d99f1ee5c73b9f7acb14187f18d0f1d4b6125cf
|
| 3 |
-
size 3992994520
|
|
|
|
|
|
|
|
|
|
|
|
model-00044-of-00260.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:070506c065947cd0fd4a21600f69320aed46930c28572635dd2b0182bb5061ec
|
| 3 |
+
size 17204559744
|
model-00045-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6cf8465147b6ec52ae4fa955494ea873c7aaa5666864ee3586b9699842ef2977
|
| 3 |
-
size 3992994360
|
|
|
|
|
|
|
|
|
|
|
|
model-00046-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:10d380531b81e2cc967fb38f7dc4e3155449adab0c149d0ae742e95244f457e7
|
| 3 |
-
size 3992994384
|
|
|
|
|
|
|
|
|
|
|
|
model-00047-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9ba264c98c8e4e666fe6f520a687f8ac4716102d3065fd64e686a52b89042cba
|
| 3 |
-
size 3992994496
|
|
|
|
|
|
|
|
|
|
|
|
model-00048-of-00260.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6ace00fc142016778a0db5c866c1047f127516ed85ab691b0ae12c7e92c8990e
|
| 3 |
-
size 3992994520
|
|
|
|
|
|
|
|
|
|
|
|