diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..a09db2ea4d1bd1fc1c09f6fca45e8e4054953535 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +tokenizer.json filter=lfs diff=lfs merge=lfs -text +model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text diff --git a/chat_template.jinja b/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..2ab98ef068d62829d17c5ade1827b9f013fa2bbf --- /dev/null +++ b/chat_template.jinja @@ -0,0 +1,86 @@ +[gMASK] +{%- if tools -%} +<|system|> +# Tools + +You may call one or more functions to assist with the user query. + +You are provided with function signatures within XML tags: + +{% for tool in tools %} +{{ tool | tojson(ensure_ascii=False) }} +{% endfor %} + + +For each function call, output the function name and arguments within the following XML format: +{function-name}{arg-key-1}{arg-value-1}{arg-key-2}{arg-value-2}...{%- endif -%} +{%- macro visible_text(content) -%} + {%- if content is string -%} + {{- content }} + {%- elif content is iterable and content is not mapping -%} + {%- for item in content -%} + {%- if item is mapping and item.type == 'text' -%} + {{- item.text }} + {%- elif item is string -%} + {{- item }} + {%- endif -%} + {%- endfor -%} + {%- else -%} + {{- content }} + {%- endif -%} +{%- endmacro -%} +{%- set ns = namespace(last_user_index=-1) %} +{%- for m in messages %} + {%- if m.role == 'user' %} + {% set ns.last_user_index = loop.index0 -%} + {%- endif %} +{%- endfor %} +{% for m in messages %} +{%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }} +{%- elif m.role == 'assistant' -%} +<|assistant|> +{%- set reasoning_content = '' %} +{%- set content = visible_text(m.content) %} +{%- if m.reasoning_content is string %} + {%- set reasoning_content = m.reasoning_content %} +{%- else %} + {%- if '' in content %} + {%- set reasoning_content = content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- set content = content.split('')[-1].lstrip('\n') %} + {%- endif %} +{%- endif %} +{%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content -%} +{{ '' + reasoning_content.strip() + ''}} +{%- else -%} +{{ '' }} +{%- endif -%} +{%- if content.strip() -%} +{{ content.strip() }} +{%- endif -%} +{% if m.tool_calls %} +{% for tc in m.tool_calls %} +{%- if tc.function %} + {%- set tc = tc.function %} +{%- endif %} +{{- '' + tc.name -}} +{% set _args = tc.arguments %}{% for k, v in _args.items() %}{{ k }}{{ v | tojson(ensure_ascii=False) if v is not string else v }}{% endfor %}{% endfor %} +{% endif %} +{%- elif m.role == 'tool' -%} +{%- if m.content is string -%} +{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|observation|>' }} +{%- endif %} +{{- '' }} +{{- m.content }} +{{- '' }} +{%- else -%} +<|observation|>{% for tr in m.content %} +{{ tr.output if tr.output is defined else tr }}{% endfor -%} +{% endif -%} +{%- elif m.role == 'system' -%} +<|system|>{{ visible_text(m.content) }} +{%- endif -%} +{%- endfor -%} +{%- if add_generation_prompt -%} + <|assistant|>{{- '' if (enable_thinking is defined and not enable_thinking) else '' -}} +{%- endif -%} \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000000000000000000000000000000000000..44a2621b82b69b09e39f012108325d8a45e2835c --- /dev/null +++ b/config.json @@ -0,0 +1,1060 @@ +{ + "architectures": [ + "GlmMoeDsaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "dtype": "bfloat16", + "eos_token_id": [ + 154820, + 154827, + 154829 + ], + "ep_size": 1, + "first_k_dense_replace": 3, + "hidden_act": "silu", + "head_dim": 64, + "hidden_size": 6144, + "index_head_dim": 128, + "index_n_heads": 32, + "index_topk": 2048, + "indexer_rope_interleave": true, + "initializer_range": 0.02, + "intermediate_size": 12288, + "kv_lora_rank": 512, + "max_position_embeddings": 202752, + "moe_intermediate_size": 2048, + "moe_layer_freq": 1, + "model_type": "glm_moe_dsa", + "n_group": 1, + "n_routed_experts": 256, + "n_shared_experts": 1, + "norm_topk_prob": true, + "num_attention_heads": 64, + "num_experts_per_tok": 8, + "num_hidden_layers": 78, + "num_key_value_heads": 64, + "num_nextn_predict_layers": 1, + "pad_token_id": 154820, + "pretraining_tp": 1, + "q_lora_rank": 2048, + "qk_head_dim": 256, + "qk_nope_head_dim": 192, + "qk_rope_head_dim": 64, + "rms_norm_eps": 1e-05, + "rope_interleave": true, + "rope_parameters": { + "rope_theta": 1000000, + "rope_type": "default" + }, + "routed_scaling_factor": 2.5, + "scoring_func": "sigmoid", + "tie_word_embeddings": false, + "topk_group": 1, + "topk_method": "noaux_tc", + "transformers_version": "5.0.2.dev0", + "use_cache": true, + "v_head_dim": 256, + "vocab_size": 154880, + "quantization_config": { + "global_quant_config": { + "input_tensors": { + "dtype": "fp4", + "is_dynamic": true, + "qscheme": "per_group", + "ch_axis": -1, + "group_size": 32, + "symmetric": null, + "round_method": "half_even", + "scale_type": "float", + "scale_format": "e8m0", + "scale_calculation_mode": "even", + "mx_element_dtype": null, + "observer_cls": "PerBlockMXObserver", + "is_scale_quant": false + }, + "output_tensors": null, + "weight": { + "dtype": "fp4", + "is_dynamic": false, + "qscheme": "per_group", + "ch_axis": -1, + "group_size": 32, + "symmetric": null, + "round_method": "half_even", + "scale_type": "float", + "scale_format": "e8m0", + "scale_calculation_mode": "even", + "mx_element_dtype": null, + "observer_cls": "PerBlockMXObserver", + "is_scale_quant": false + }, + "bias": null, + "target_device": null + }, + "exclude": [ + "lm_head", + "model.layers.0.mlp.down_proj", + "model.layers.0.mlp.gate_proj", + "model.layers.0.mlp.up_proj", + "model.layers.0.self_attn.indexer.weights_proj", + "model.layers.0.self_attn.indexer.wk", + "model.layers.0.self_attn.indexer.wq_b", + "model.layers.0.self_attn.kv_a_proj_with_mqa", + "model.layers.0.self_attn.kv_b_proj", + "model.layers.0.self_attn.o_proj", + "model.layers.0.self_attn.q_a_proj", + "model.layers.0.self_attn.q_b_proj", + "model.layers.1.mlp.down_proj", + "model.layers.1.mlp.gate_proj", + "model.layers.1.mlp.up_proj", + "model.layers.1.self_attn.indexer.weights_proj", + "model.layers.1.self_attn.indexer.wk", + "model.layers.1.self_attn.indexer.wq_b", + "model.layers.1.self_attn.kv_a_proj_with_mqa", + "model.layers.1.self_attn.kv_b_proj", + "model.layers.1.self_attn.o_proj", + "model.layers.1.self_attn.q_a_proj", + "model.layers.1.self_attn.q_b_proj", + "model.layers.10.mlp.gate", + "model.layers.10.mlp.shared_experts.down_proj", + "model.layers.10.mlp.shared_experts.gate_proj", + "model.layers.10.mlp.shared_experts.up_proj", + "model.layers.10.self_attn.indexer.weights_proj", + "model.layers.10.self_attn.indexer.wk", + "model.layers.10.self_attn.indexer.wq_b", + "model.layers.10.self_attn.kv_a_proj_with_mqa", + "model.layers.10.self_attn.kv_b_proj", + "model.layers.10.self_attn.o_proj", + "model.layers.10.self_attn.q_a_proj", + "model.layers.10.self_attn.q_b_proj", + "model.layers.11.mlp.gate", + "model.layers.11.mlp.shared_experts.down_proj", + "model.layers.11.mlp.shared_experts.gate_proj", + "model.layers.11.mlp.shared_experts.up_proj", + "model.layers.11.self_attn.indexer.weights_proj", + "model.layers.11.self_attn.indexer.wk", + "model.layers.11.self_attn.indexer.wq_b", + "model.layers.11.self_attn.kv_a_proj_with_mqa", + "model.layers.11.self_attn.kv_b_proj", + "model.layers.11.self_attn.o_proj", + "model.layers.11.self_attn.q_a_proj", + "model.layers.11.self_attn.q_b_proj", + "model.layers.12.mlp.gate", + "model.layers.12.mlp.shared_experts.down_proj", + "model.layers.12.mlp.shared_experts.gate_proj", + "model.layers.12.mlp.shared_experts.up_proj", + "model.layers.12.self_attn.indexer.weights_proj", + "model.layers.12.self_attn.indexer.wk", + "model.layers.12.self_attn.indexer.wq_b", + "model.layers.12.self_attn.kv_a_proj_with_mqa", + "model.layers.12.self_attn.kv_b_proj", + "model.layers.12.self_attn.o_proj", + "model.layers.12.self_attn.q_a_proj", + "model.layers.12.self_attn.q_b_proj", + "model.layers.13.mlp.gate", + "model.layers.13.mlp.shared_experts.down_proj", + "model.layers.13.mlp.shared_experts.gate_proj", + "model.layers.13.mlp.shared_experts.up_proj", + "model.layers.13.self_attn.indexer.weights_proj", + "model.layers.13.self_attn.indexer.wk", + "model.layers.13.self_attn.indexer.wq_b", + "model.layers.13.self_attn.kv_a_proj_with_mqa", + "model.layers.13.self_attn.kv_b_proj", + "model.layers.13.self_attn.o_proj", + "model.layers.13.self_attn.q_a_proj", + "model.layers.13.self_attn.q_b_proj", + "model.layers.14.mlp.gate", + "model.layers.14.mlp.shared_experts.down_proj", + "model.layers.14.mlp.shared_experts.gate_proj", + "model.layers.14.mlp.shared_experts.up_proj", + "model.layers.14.self_attn.indexer.weights_proj", + "model.layers.14.self_attn.indexer.wk", + "model.layers.14.self_attn.indexer.wq_b", + "model.layers.14.self_attn.kv_a_proj_with_mqa", + "model.layers.14.self_attn.kv_b_proj", + "model.layers.14.self_attn.o_proj", + "model.layers.14.self_attn.q_a_proj", + "model.layers.14.self_attn.q_b_proj", + "model.layers.15.mlp.gate", + "model.layers.15.mlp.shared_experts.down_proj", + "model.layers.15.mlp.shared_experts.gate_proj", + "model.layers.15.mlp.shared_experts.up_proj", + "model.layers.15.self_attn.indexer.weights_proj", + "model.layers.15.self_attn.indexer.wk", + "model.layers.15.self_attn.indexer.wq_b", + "model.layers.15.self_attn.kv_a_proj_with_mqa", + "model.layers.15.self_attn.kv_b_proj", + "model.layers.15.self_attn.o_proj", + "model.layers.15.self_attn.q_a_proj", + "model.layers.15.self_attn.q_b_proj", + "model.layers.16.mlp.gate", + "model.layers.16.mlp.shared_experts.down_proj", + "model.layers.16.mlp.shared_experts.gate_proj", + "model.layers.16.mlp.shared_experts.up_proj", + "model.layers.16.self_attn.indexer.weights_proj", + "model.layers.16.self_attn.indexer.wk", + "model.layers.16.self_attn.indexer.wq_b", + "model.layers.16.self_attn.kv_a_proj_with_mqa", + "model.layers.16.self_attn.kv_b_proj", + "model.layers.16.self_attn.o_proj", + "model.layers.16.self_attn.q_a_proj", + "model.layers.16.self_attn.q_b_proj", + "model.layers.17.mlp.gate", + "model.layers.17.mlp.shared_experts.down_proj", + "model.layers.17.mlp.shared_experts.gate_proj", + "model.layers.17.mlp.shared_experts.up_proj", + "model.layers.17.self_attn.indexer.weights_proj", + "model.layers.17.self_attn.indexer.wk", + "model.layers.17.self_attn.indexer.wq_b", + "model.layers.17.self_attn.kv_a_proj_with_mqa", + "model.layers.17.self_attn.kv_b_proj", + "model.layers.17.self_attn.o_proj", + "model.layers.17.self_attn.q_a_proj", + "model.layers.17.self_attn.q_b_proj", + "model.layers.18.mlp.gate", + "model.layers.18.mlp.shared_experts.down_proj", + "model.layers.18.mlp.shared_experts.gate_proj", + "model.layers.18.mlp.shared_experts.up_proj", + "model.layers.18.self_attn.indexer.weights_proj", + "model.layers.18.self_attn.indexer.wk", + "model.layers.18.self_attn.indexer.wq_b", + "model.layers.18.self_attn.kv_a_proj_with_mqa", + "model.layers.18.self_attn.kv_b_proj", + "model.layers.18.self_attn.o_proj", + "model.layers.18.self_attn.q_a_proj", + "model.layers.18.self_attn.q_b_proj", + "model.layers.19.mlp.gate", + "model.layers.19.mlp.shared_experts.down_proj", + "model.layers.19.mlp.shared_experts.gate_proj", + "model.layers.19.mlp.shared_experts.up_proj", + "model.layers.19.self_attn.indexer.weights_proj", + "model.layers.19.self_attn.indexer.wk", + "model.layers.19.self_attn.indexer.wq_b", + "model.layers.19.self_attn.kv_a_proj_with_mqa", + "model.layers.19.self_attn.kv_b_proj", + "model.layers.19.self_attn.o_proj", + "model.layers.19.self_attn.q_a_proj", + "model.layers.19.self_attn.q_b_proj", + "model.layers.2.mlp.down_proj", + "model.layers.2.mlp.gate_proj", + "model.layers.2.mlp.up_proj", + "model.layers.2.self_attn.indexer.weights_proj", + "model.layers.2.self_attn.indexer.wk", + "model.layers.2.self_attn.indexer.wq_b", + "model.layers.2.self_attn.kv_a_proj_with_mqa", + "model.layers.2.self_attn.kv_b_proj", + "model.layers.2.self_attn.o_proj", + "model.layers.2.self_attn.q_a_proj", + "model.layers.2.self_attn.q_b_proj", + "model.layers.20.mlp.gate", + "model.layers.20.mlp.shared_experts.down_proj", + "model.layers.20.mlp.shared_experts.gate_proj", + "model.layers.20.mlp.shared_experts.up_proj", + "model.layers.20.self_attn.indexer.weights_proj", + "model.layers.20.self_attn.indexer.wk", + "model.layers.20.self_attn.indexer.wq_b", + "model.layers.20.self_attn.kv_a_proj_with_mqa", + "model.layers.20.self_attn.kv_b_proj", + "model.layers.20.self_attn.o_proj", + "model.layers.20.self_attn.q_a_proj", + "model.layers.20.self_attn.q_b_proj", + "model.layers.21.mlp.gate", + "model.layers.21.mlp.shared_experts.down_proj", + "model.layers.21.mlp.shared_experts.gate_proj", + "model.layers.21.mlp.shared_experts.up_proj", + "model.layers.21.self_attn.indexer.weights_proj", + "model.layers.21.self_attn.indexer.wk", + "model.layers.21.self_attn.indexer.wq_b", + "model.layers.21.self_attn.kv_a_proj_with_mqa", + "model.layers.21.self_attn.kv_b_proj", + "model.layers.21.self_attn.o_proj", + "model.layers.21.self_attn.q_a_proj", + "model.layers.21.self_attn.q_b_proj", + "model.layers.22.mlp.gate", + "model.layers.22.mlp.shared_experts.down_proj", + "model.layers.22.mlp.shared_experts.gate_proj", + "model.layers.22.mlp.shared_experts.up_proj", + "model.layers.22.self_attn.indexer.weights_proj", + "model.layers.22.self_attn.indexer.wk", + "model.layers.22.self_attn.indexer.wq_b", + "model.layers.22.self_attn.kv_a_proj_with_mqa", + "model.layers.22.self_attn.kv_b_proj", + "model.layers.22.self_attn.o_proj", + "model.layers.22.self_attn.q_a_proj", + "model.layers.22.self_attn.q_b_proj", + "model.layers.23.mlp.gate", + "model.layers.23.mlp.shared_experts.down_proj", + "model.layers.23.mlp.shared_experts.gate_proj", + "model.layers.23.mlp.shared_experts.up_proj", + "model.layers.23.self_attn.indexer.weights_proj", + "model.layers.23.self_attn.indexer.wk", + "model.layers.23.self_attn.indexer.wq_b", + "model.layers.23.self_attn.kv_a_proj_with_mqa", + "model.layers.23.self_attn.kv_b_proj", + "model.layers.23.self_attn.o_proj", + "model.layers.23.self_attn.q_a_proj", + "model.layers.23.self_attn.q_b_proj", + "model.layers.24.mlp.gate", + "model.layers.24.mlp.shared_experts.down_proj", + "model.layers.24.mlp.shared_experts.gate_proj", + "model.layers.24.mlp.shared_experts.up_proj", + "model.layers.24.self_attn.indexer.weights_proj", + "model.layers.24.self_attn.indexer.wk", + "model.layers.24.self_attn.indexer.wq_b", + "model.layers.24.self_attn.kv_a_proj_with_mqa", + "model.layers.24.self_attn.kv_b_proj", + "model.layers.24.self_attn.o_proj", + "model.layers.24.self_attn.q_a_proj", + "model.layers.24.self_attn.q_b_proj", + "model.layers.25.mlp.gate", + "model.layers.25.mlp.shared_experts.down_proj", + "model.layers.25.mlp.shared_experts.gate_proj", + "model.layers.25.mlp.shared_experts.up_proj", + "model.layers.25.self_attn.indexer.weights_proj", + "model.layers.25.self_attn.indexer.wk", + "model.layers.25.self_attn.indexer.wq_b", + "model.layers.25.self_attn.kv_a_proj_with_mqa", + "model.layers.25.self_attn.kv_b_proj", + "model.layers.25.self_attn.o_proj", + "model.layers.25.self_attn.q_a_proj", + "model.layers.25.self_attn.q_b_proj", + "model.layers.26.mlp.gate", + "model.layers.26.mlp.shared_experts.down_proj", + "model.layers.26.mlp.shared_experts.gate_proj", + "model.layers.26.mlp.shared_experts.up_proj", + "model.layers.26.self_attn.indexer.weights_proj", + "model.layers.26.self_attn.indexer.wk", + "model.layers.26.self_attn.indexer.wq_b", + "model.layers.26.self_attn.kv_a_proj_with_mqa", + "model.layers.26.self_attn.kv_b_proj", + "model.layers.26.self_attn.o_proj", + "model.layers.26.self_attn.q_a_proj", + "model.layers.26.self_attn.q_b_proj", + "model.layers.27.mlp.gate", + "model.layers.27.mlp.shared_experts.down_proj", + "model.layers.27.mlp.shared_experts.gate_proj", + "model.layers.27.mlp.shared_experts.up_proj", + "model.layers.27.self_attn.indexer.weights_proj", + "model.layers.27.self_attn.indexer.wk", + "model.layers.27.self_attn.indexer.wq_b", + "model.layers.27.self_attn.kv_a_proj_with_mqa", + "model.layers.27.self_attn.kv_b_proj", + "model.layers.27.self_attn.o_proj", + "model.layers.27.self_attn.q_a_proj", + "model.layers.27.self_attn.q_b_proj", + "model.layers.28.mlp.gate", + "model.layers.28.mlp.shared_experts.down_proj", + "model.layers.28.mlp.shared_experts.gate_proj", + "model.layers.28.mlp.shared_experts.up_proj", + "model.layers.28.self_attn.indexer.weights_proj", + "model.layers.28.self_attn.indexer.wk", + "model.layers.28.self_attn.indexer.wq_b", + "model.layers.28.self_attn.kv_a_proj_with_mqa", + "model.layers.28.self_attn.kv_b_proj", + "model.layers.28.self_attn.o_proj", + "model.layers.28.self_attn.q_a_proj", + "model.layers.28.self_attn.q_b_proj", + "model.layers.29.mlp.gate", + "model.layers.29.mlp.shared_experts.down_proj", + "model.layers.29.mlp.shared_experts.gate_proj", + "model.layers.29.mlp.shared_experts.up_proj", + "model.layers.29.self_attn.indexer.weights_proj", + "model.layers.29.self_attn.indexer.wk", + "model.layers.29.self_attn.indexer.wq_b", + "model.layers.29.self_attn.kv_a_proj_with_mqa", + "model.layers.29.self_attn.kv_b_proj", + "model.layers.29.self_attn.o_proj", + "model.layers.29.self_attn.q_a_proj", + "model.layers.29.self_attn.q_b_proj", + "model.layers.3.mlp.gate", + "model.layers.3.mlp.shared_experts.down_proj", + "model.layers.3.mlp.shared_experts.gate_proj", + "model.layers.3.mlp.shared_experts.up_proj", + "model.layers.3.self_attn.indexer.weights_proj", + "model.layers.3.self_attn.indexer.wk", + "model.layers.3.self_attn.indexer.wq_b", + "model.layers.3.self_attn.kv_a_proj_with_mqa", + "model.layers.3.self_attn.kv_b_proj", + "model.layers.3.self_attn.o_proj", + "model.layers.3.self_attn.q_a_proj", + "model.layers.3.self_attn.q_b_proj", + "model.layers.30.mlp.gate", + "model.layers.30.mlp.shared_experts.down_proj", + "model.layers.30.mlp.shared_experts.gate_proj", + "model.layers.30.mlp.shared_experts.up_proj", + "model.layers.30.self_attn.indexer.weights_proj", + "model.layers.30.self_attn.indexer.wk", + "model.layers.30.self_attn.indexer.wq_b", + "model.layers.30.self_attn.kv_a_proj_with_mqa", + "model.layers.30.self_attn.kv_b_proj", + "model.layers.30.self_attn.o_proj", + "model.layers.30.self_attn.q_a_proj", + "model.layers.30.self_attn.q_b_proj", + "model.layers.31.mlp.gate", + "model.layers.31.mlp.shared_experts.down_proj", + "model.layers.31.mlp.shared_experts.gate_proj", + "model.layers.31.mlp.shared_experts.up_proj", + "model.layers.31.self_attn.indexer.weights_proj", + "model.layers.31.self_attn.indexer.wk", + "model.layers.31.self_attn.indexer.wq_b", + "model.layers.31.self_attn.kv_a_proj_with_mqa", + "model.layers.31.self_attn.kv_b_proj", + "model.layers.31.self_attn.o_proj", + "model.layers.31.self_attn.q_a_proj", + "model.layers.31.self_attn.q_b_proj", + "model.layers.32.mlp.gate", + "model.layers.32.mlp.shared_experts.down_proj", + "model.layers.32.mlp.shared_experts.gate_proj", + "model.layers.32.mlp.shared_experts.up_proj", + "model.layers.32.self_attn.indexer.weights_proj", + "model.layers.32.self_attn.indexer.wk", + "model.layers.32.self_attn.indexer.wq_b", + "model.layers.32.self_attn.kv_a_proj_with_mqa", + "model.layers.32.self_attn.kv_b_proj", + "model.layers.32.self_attn.o_proj", + "model.layers.32.self_attn.q_a_proj", + "model.layers.32.self_attn.q_b_proj", + "model.layers.33.mlp.gate", + "model.layers.33.mlp.shared_experts.down_proj", + "model.layers.33.mlp.shared_experts.gate_proj", + "model.layers.33.mlp.shared_experts.up_proj", + "model.layers.33.self_attn.indexer.weights_proj", + "model.layers.33.self_attn.indexer.wk", + "model.layers.33.self_attn.indexer.wq_b", + "model.layers.33.self_attn.kv_a_proj_with_mqa", + "model.layers.33.self_attn.kv_b_proj", + "model.layers.33.self_attn.o_proj", + "model.layers.33.self_attn.q_a_proj", + "model.layers.33.self_attn.q_b_proj", + "model.layers.34.mlp.gate", + "model.layers.34.mlp.shared_experts.down_proj", + "model.layers.34.mlp.shared_experts.gate_proj", + "model.layers.34.mlp.shared_experts.up_proj", + "model.layers.34.self_attn.indexer.weights_proj", + "model.layers.34.self_attn.indexer.wk", + "model.layers.34.self_attn.indexer.wq_b", + "model.layers.34.self_attn.kv_a_proj_with_mqa", + "model.layers.34.self_attn.kv_b_proj", + "model.layers.34.self_attn.o_proj", + "model.layers.34.self_attn.q_a_proj", + "model.layers.34.self_attn.q_b_proj", + "model.layers.35.mlp.gate", + "model.layers.35.mlp.shared_experts.down_proj", + "model.layers.35.mlp.shared_experts.gate_proj", + "model.layers.35.mlp.shared_experts.up_proj", + "model.layers.35.self_attn.indexer.weights_proj", + "model.layers.35.self_attn.indexer.wk", + "model.layers.35.self_attn.indexer.wq_b", + "model.layers.35.self_attn.kv_a_proj_with_mqa", + "model.layers.35.self_attn.kv_b_proj", + "model.layers.35.self_attn.o_proj", + "model.layers.35.self_attn.q_a_proj", + "model.layers.35.self_attn.q_b_proj", + "model.layers.36.mlp.gate", + "model.layers.36.mlp.shared_experts.down_proj", + "model.layers.36.mlp.shared_experts.gate_proj", + "model.layers.36.mlp.shared_experts.up_proj", + "model.layers.36.self_attn.indexer.weights_proj", + "model.layers.36.self_attn.indexer.wk", + "model.layers.36.self_attn.indexer.wq_b", + "model.layers.36.self_attn.kv_a_proj_with_mqa", + "model.layers.36.self_attn.kv_b_proj", + "model.layers.36.self_attn.o_proj", + "model.layers.36.self_attn.q_a_proj", + "model.layers.36.self_attn.q_b_proj", + "model.layers.37.mlp.gate", + "model.layers.37.mlp.shared_experts.down_proj", + "model.layers.37.mlp.shared_experts.gate_proj", + "model.layers.37.mlp.shared_experts.up_proj", + "model.layers.37.self_attn.indexer.weights_proj", + "model.layers.37.self_attn.indexer.wk", + "model.layers.37.self_attn.indexer.wq_b", + "model.layers.37.self_attn.kv_a_proj_with_mqa", + "model.layers.37.self_attn.kv_b_proj", + "model.layers.37.self_attn.o_proj", + "model.layers.37.self_attn.q_a_proj", + "model.layers.37.self_attn.q_b_proj", + "model.layers.38.mlp.gate", + "model.layers.38.mlp.shared_experts.down_proj", + "model.layers.38.mlp.shared_experts.gate_proj", + "model.layers.38.mlp.shared_experts.up_proj", + "model.layers.38.self_attn.indexer.weights_proj", + "model.layers.38.self_attn.indexer.wk", + "model.layers.38.self_attn.indexer.wq_b", + "model.layers.38.self_attn.kv_a_proj_with_mqa", + "model.layers.38.self_attn.kv_b_proj", + "model.layers.38.self_attn.o_proj", + "model.layers.38.self_attn.q_a_proj", + "model.layers.38.self_attn.q_b_proj", + "model.layers.39.mlp.gate", + "model.layers.39.mlp.shared_experts.down_proj", + "model.layers.39.mlp.shared_experts.gate_proj", + "model.layers.39.mlp.shared_experts.up_proj", + "model.layers.39.self_attn.indexer.weights_proj", + "model.layers.39.self_attn.indexer.wk", + "model.layers.39.self_attn.indexer.wq_b", + "model.layers.39.self_attn.kv_a_proj_with_mqa", + "model.layers.39.self_attn.kv_b_proj", + "model.layers.39.self_attn.o_proj", + "model.layers.39.self_attn.q_a_proj", + "model.layers.39.self_attn.q_b_proj", + "model.layers.4.mlp.gate", + "model.layers.4.mlp.shared_experts.down_proj", + "model.layers.4.mlp.shared_experts.gate_proj", + "model.layers.4.mlp.shared_experts.up_proj", + "model.layers.4.self_attn.indexer.weights_proj", + "model.layers.4.self_attn.indexer.wk", + "model.layers.4.self_attn.indexer.wq_b", + "model.layers.4.self_attn.kv_a_proj_with_mqa", + "model.layers.4.self_attn.kv_b_proj", + "model.layers.4.self_attn.o_proj", + "model.layers.4.self_attn.q_a_proj", + "model.layers.4.self_attn.q_b_proj", + "model.layers.40.mlp.gate", + "model.layers.40.mlp.shared_experts.down_proj", + "model.layers.40.mlp.shared_experts.gate_proj", + "model.layers.40.mlp.shared_experts.up_proj", + "model.layers.40.self_attn.indexer.weights_proj", + "model.layers.40.self_attn.indexer.wk", + "model.layers.40.self_attn.indexer.wq_b", + "model.layers.40.self_attn.kv_a_proj_with_mqa", + "model.layers.40.self_attn.kv_b_proj", + "model.layers.40.self_attn.o_proj", + "model.layers.40.self_attn.q_a_proj", + "model.layers.40.self_attn.q_b_proj", + "model.layers.41.mlp.gate", + "model.layers.41.mlp.shared_experts.down_proj", + "model.layers.41.mlp.shared_experts.gate_proj", + "model.layers.41.mlp.shared_experts.up_proj", + "model.layers.41.self_attn.indexer.weights_proj", + "model.layers.41.self_attn.indexer.wk", + "model.layers.41.self_attn.indexer.wq_b", + "model.layers.41.self_attn.kv_a_proj_with_mqa", + "model.layers.41.self_attn.kv_b_proj", + "model.layers.41.self_attn.o_proj", + "model.layers.41.self_attn.q_a_proj", + "model.layers.41.self_attn.q_b_proj", + "model.layers.42.mlp.gate", + "model.layers.42.mlp.shared_experts.down_proj", + "model.layers.42.mlp.shared_experts.gate_proj", + "model.layers.42.mlp.shared_experts.up_proj", + "model.layers.42.self_attn.indexer.weights_proj", + "model.layers.42.self_attn.indexer.wk", + "model.layers.42.self_attn.indexer.wq_b", + "model.layers.42.self_attn.kv_a_proj_with_mqa", + "model.layers.42.self_attn.kv_b_proj", + "model.layers.42.self_attn.o_proj", + "model.layers.42.self_attn.q_a_proj", + "model.layers.42.self_attn.q_b_proj", + "model.layers.43.mlp.gate", + "model.layers.43.mlp.shared_experts.down_proj", + "model.layers.43.mlp.shared_experts.gate_proj", + "model.layers.43.mlp.shared_experts.up_proj", + "model.layers.43.self_attn.indexer.weights_proj", + "model.layers.43.self_attn.indexer.wk", + "model.layers.43.self_attn.indexer.wq_b", + "model.layers.43.self_attn.kv_a_proj_with_mqa", + "model.layers.43.self_attn.kv_b_proj", + "model.layers.43.self_attn.o_proj", + "model.layers.43.self_attn.q_a_proj", + "model.layers.43.self_attn.q_b_proj", + "model.layers.44.mlp.gate", + "model.layers.44.mlp.shared_experts.down_proj", + "model.layers.44.mlp.shared_experts.gate_proj", + "model.layers.44.mlp.shared_experts.up_proj", + "model.layers.44.self_attn.indexer.weights_proj", + "model.layers.44.self_attn.indexer.wk", + "model.layers.44.self_attn.indexer.wq_b", + "model.layers.44.self_attn.kv_a_proj_with_mqa", + "model.layers.44.self_attn.kv_b_proj", + "model.layers.44.self_attn.o_proj", + "model.layers.44.self_attn.q_a_proj", + "model.layers.44.self_attn.q_b_proj", + "model.layers.45.mlp.gate", + "model.layers.45.mlp.shared_experts.down_proj", + "model.layers.45.mlp.shared_experts.gate_proj", + "model.layers.45.mlp.shared_experts.up_proj", + "model.layers.45.self_attn.indexer.weights_proj", + "model.layers.45.self_attn.indexer.wk", + "model.layers.45.self_attn.indexer.wq_b", + "model.layers.45.self_attn.kv_a_proj_with_mqa", + "model.layers.45.self_attn.kv_b_proj", + "model.layers.45.self_attn.o_proj", + "model.layers.45.self_attn.q_a_proj", + "model.layers.45.self_attn.q_b_proj", + "model.layers.46.mlp.gate", + "model.layers.46.mlp.shared_experts.down_proj", + "model.layers.46.mlp.shared_experts.gate_proj", + "model.layers.46.mlp.shared_experts.up_proj", + "model.layers.46.self_attn.indexer.weights_proj", + "model.layers.46.self_attn.indexer.wk", + "model.layers.46.self_attn.indexer.wq_b", + "model.layers.46.self_attn.kv_a_proj_with_mqa", + "model.layers.46.self_attn.kv_b_proj", + "model.layers.46.self_attn.o_proj", + "model.layers.46.self_attn.q_a_proj", + "model.layers.46.self_attn.q_b_proj", + "model.layers.47.mlp.gate", + "model.layers.47.mlp.shared_experts.down_proj", + "model.layers.47.mlp.shared_experts.gate_proj", + "model.layers.47.mlp.shared_experts.up_proj", + "model.layers.47.self_attn.indexer.weights_proj", + "model.layers.47.self_attn.indexer.wk", + "model.layers.47.self_attn.indexer.wq_b", + "model.layers.47.self_attn.kv_a_proj_with_mqa", + "model.layers.47.self_attn.kv_b_proj", + "model.layers.47.self_attn.o_proj", + "model.layers.47.self_attn.q_a_proj", + "model.layers.47.self_attn.q_b_proj", + "model.layers.48.mlp.gate", + "model.layers.48.mlp.shared_experts.down_proj", + "model.layers.48.mlp.shared_experts.gate_proj", + "model.layers.48.mlp.shared_experts.up_proj", + "model.layers.48.self_attn.indexer.weights_proj", + "model.layers.48.self_attn.indexer.wk", + "model.layers.48.self_attn.indexer.wq_b", + "model.layers.48.self_attn.kv_a_proj_with_mqa", + "model.layers.48.self_attn.kv_b_proj", + "model.layers.48.self_attn.o_proj", + "model.layers.48.self_attn.q_a_proj", + "model.layers.48.self_attn.q_b_proj", + "model.layers.49.mlp.gate", + "model.layers.49.mlp.shared_experts.down_proj", + "model.layers.49.mlp.shared_experts.gate_proj", + "model.layers.49.mlp.shared_experts.up_proj", + "model.layers.49.self_attn.indexer.weights_proj", + "model.layers.49.self_attn.indexer.wk", + "model.layers.49.self_attn.indexer.wq_b", + "model.layers.49.self_attn.kv_a_proj_with_mqa", + "model.layers.49.self_attn.kv_b_proj", + "model.layers.49.self_attn.o_proj", + "model.layers.49.self_attn.q_a_proj", + "model.layers.49.self_attn.q_b_proj", + "model.layers.5.mlp.gate", + "model.layers.5.mlp.shared_experts.down_proj", + "model.layers.5.mlp.shared_experts.gate_proj", + "model.layers.5.mlp.shared_experts.up_proj", + "model.layers.5.self_attn.indexer.weights_proj", + "model.layers.5.self_attn.indexer.wk", + "model.layers.5.self_attn.indexer.wq_b", + "model.layers.5.self_attn.kv_a_proj_with_mqa", + "model.layers.5.self_attn.kv_b_proj", + "model.layers.5.self_attn.o_proj", + "model.layers.5.self_attn.q_a_proj", + "model.layers.5.self_attn.q_b_proj", + "model.layers.50.mlp.gate", + "model.layers.50.mlp.shared_experts.down_proj", + "model.layers.50.mlp.shared_experts.gate_proj", + "model.layers.50.mlp.shared_experts.up_proj", + "model.layers.50.self_attn.indexer.weights_proj", + "model.layers.50.self_attn.indexer.wk", + "model.layers.50.self_attn.indexer.wq_b", + "model.layers.50.self_attn.kv_a_proj_with_mqa", + "model.layers.50.self_attn.kv_b_proj", + "model.layers.50.self_attn.o_proj", + "model.layers.50.self_attn.q_a_proj", + "model.layers.50.self_attn.q_b_proj", + "model.layers.51.mlp.gate", + "model.layers.51.mlp.shared_experts.down_proj", + "model.layers.51.mlp.shared_experts.gate_proj", + "model.layers.51.mlp.shared_experts.up_proj", + "model.layers.51.self_attn.indexer.weights_proj", + "model.layers.51.self_attn.indexer.wk", + "model.layers.51.self_attn.indexer.wq_b", + "model.layers.51.self_attn.kv_a_proj_with_mqa", + "model.layers.51.self_attn.kv_b_proj", + "model.layers.51.self_attn.o_proj", + "model.layers.51.self_attn.q_a_proj", + "model.layers.51.self_attn.q_b_proj", + "model.layers.52.mlp.gate", + "model.layers.52.mlp.shared_experts.down_proj", + "model.layers.52.mlp.shared_experts.gate_proj", + "model.layers.52.mlp.shared_experts.up_proj", + "model.layers.52.self_attn.indexer.weights_proj", + "model.layers.52.self_attn.indexer.wk", + "model.layers.52.self_attn.indexer.wq_b", + "model.layers.52.self_attn.kv_a_proj_with_mqa", + "model.layers.52.self_attn.kv_b_proj", + "model.layers.52.self_attn.o_proj", + "model.layers.52.self_attn.q_a_proj", + "model.layers.52.self_attn.q_b_proj", + "model.layers.53.mlp.gate", + "model.layers.53.mlp.shared_experts.down_proj", + "model.layers.53.mlp.shared_experts.gate_proj", + "model.layers.53.mlp.shared_experts.up_proj", + "model.layers.53.self_attn.indexer.weights_proj", + "model.layers.53.self_attn.indexer.wk", + "model.layers.53.self_attn.indexer.wq_b", + "model.layers.53.self_attn.kv_a_proj_with_mqa", + "model.layers.53.self_attn.kv_b_proj", + "model.layers.53.self_attn.o_proj", + "model.layers.53.self_attn.q_a_proj", + "model.layers.53.self_attn.q_b_proj", + "model.layers.54.mlp.gate", + "model.layers.54.mlp.shared_experts.down_proj", + "model.layers.54.mlp.shared_experts.gate_proj", + "model.layers.54.mlp.shared_experts.up_proj", + "model.layers.54.self_attn.indexer.weights_proj", + "model.layers.54.self_attn.indexer.wk", + "model.layers.54.self_attn.indexer.wq_b", + "model.layers.54.self_attn.kv_a_proj_with_mqa", + "model.layers.54.self_attn.kv_b_proj", + "model.layers.54.self_attn.o_proj", + "model.layers.54.self_attn.q_a_proj", + "model.layers.54.self_attn.q_b_proj", + "model.layers.55.mlp.gate", + "model.layers.55.mlp.shared_experts.down_proj", + "model.layers.55.mlp.shared_experts.gate_proj", + "model.layers.55.mlp.shared_experts.up_proj", + "model.layers.55.self_attn.indexer.weights_proj", + "model.layers.55.self_attn.indexer.wk", + "model.layers.55.self_attn.indexer.wq_b", + "model.layers.55.self_attn.kv_a_proj_with_mqa", + "model.layers.55.self_attn.kv_b_proj", + "model.layers.55.self_attn.o_proj", + "model.layers.55.self_attn.q_a_proj", + "model.layers.55.self_attn.q_b_proj", + "model.layers.56.mlp.gate", + "model.layers.56.mlp.shared_experts.down_proj", + "model.layers.56.mlp.shared_experts.gate_proj", + "model.layers.56.mlp.shared_experts.up_proj", + "model.layers.56.self_attn.indexer.weights_proj", + "model.layers.56.self_attn.indexer.wk", + "model.layers.56.self_attn.indexer.wq_b", + "model.layers.56.self_attn.kv_a_proj_with_mqa", + "model.layers.56.self_attn.kv_b_proj", + "model.layers.56.self_attn.o_proj", + "model.layers.56.self_attn.q_a_proj", + "model.layers.56.self_attn.q_b_proj", + "model.layers.57.mlp.gate", + "model.layers.57.mlp.shared_experts.down_proj", + "model.layers.57.mlp.shared_experts.gate_proj", + "model.layers.57.mlp.shared_experts.up_proj", + "model.layers.57.self_attn.indexer.weights_proj", + "model.layers.57.self_attn.indexer.wk", + "model.layers.57.self_attn.indexer.wq_b", + "model.layers.57.self_attn.kv_a_proj_with_mqa", + "model.layers.57.self_attn.kv_b_proj", + "model.layers.57.self_attn.o_proj", + "model.layers.57.self_attn.q_a_proj", + "model.layers.57.self_attn.q_b_proj", + "model.layers.58.mlp.gate", + "model.layers.58.mlp.shared_experts.down_proj", + "model.layers.58.mlp.shared_experts.gate_proj", + "model.layers.58.mlp.shared_experts.up_proj", + "model.layers.58.self_attn.indexer.weights_proj", + "model.layers.58.self_attn.indexer.wk", + "model.layers.58.self_attn.indexer.wq_b", + "model.layers.58.self_attn.kv_a_proj_with_mqa", + "model.layers.58.self_attn.kv_b_proj", + "model.layers.58.self_attn.o_proj", + "model.layers.58.self_attn.q_a_proj", + "model.layers.58.self_attn.q_b_proj", + "model.layers.59.mlp.gate", + "model.layers.59.mlp.shared_experts.down_proj", + "model.layers.59.mlp.shared_experts.gate_proj", + "model.layers.59.mlp.shared_experts.up_proj", + "model.layers.59.self_attn.indexer.weights_proj", + "model.layers.59.self_attn.indexer.wk", + "model.layers.59.self_attn.indexer.wq_b", + "model.layers.59.self_attn.kv_a_proj_with_mqa", + "model.layers.59.self_attn.kv_b_proj", + "model.layers.59.self_attn.o_proj", + "model.layers.59.self_attn.q_a_proj", + "model.layers.59.self_attn.q_b_proj", + "model.layers.6.mlp.gate", + "model.layers.6.mlp.shared_experts.down_proj", + "model.layers.6.mlp.shared_experts.gate_proj", + "model.layers.6.mlp.shared_experts.up_proj", + "model.layers.6.self_attn.indexer.weights_proj", + "model.layers.6.self_attn.indexer.wk", + "model.layers.6.self_attn.indexer.wq_b", + "model.layers.6.self_attn.kv_a_proj_with_mqa", + "model.layers.6.self_attn.kv_b_proj", + "model.layers.6.self_attn.o_proj", + "model.layers.6.self_attn.q_a_proj", + "model.layers.6.self_attn.q_b_proj", + "model.layers.60.mlp.gate", + "model.layers.60.mlp.shared_experts.down_proj", + "model.layers.60.mlp.shared_experts.gate_proj", + "model.layers.60.mlp.shared_experts.up_proj", + "model.layers.60.self_attn.indexer.weights_proj", + "model.layers.60.self_attn.indexer.wk", + "model.layers.60.self_attn.indexer.wq_b", + "model.layers.60.self_attn.kv_a_proj_with_mqa", + "model.layers.60.self_attn.kv_b_proj", + "model.layers.60.self_attn.o_proj", + "model.layers.60.self_attn.q_a_proj", + "model.layers.60.self_attn.q_b_proj", + "model.layers.61.mlp.gate", + "model.layers.61.mlp.shared_experts.down_proj", + "model.layers.61.mlp.shared_experts.gate_proj", + "model.layers.61.mlp.shared_experts.up_proj", + "model.layers.61.self_attn.indexer.weights_proj", + "model.layers.61.self_attn.indexer.wk", + "model.layers.61.self_attn.indexer.wq_b", + "model.layers.61.self_attn.kv_a_proj_with_mqa", + "model.layers.61.self_attn.kv_b_proj", + "model.layers.61.self_attn.o_proj", + "model.layers.61.self_attn.q_a_proj", + "model.layers.61.self_attn.q_b_proj", + "model.layers.62.mlp.gate", + "model.layers.62.mlp.shared_experts.down_proj", + "model.layers.62.mlp.shared_experts.gate_proj", + "model.layers.62.mlp.shared_experts.up_proj", + "model.layers.62.self_attn.indexer.weights_proj", + "model.layers.62.self_attn.indexer.wk", + "model.layers.62.self_attn.indexer.wq_b", + "model.layers.62.self_attn.kv_a_proj_with_mqa", + "model.layers.62.self_attn.kv_b_proj", + "model.layers.62.self_attn.o_proj", + "model.layers.62.self_attn.q_a_proj", + "model.layers.62.self_attn.q_b_proj", + "model.layers.63.mlp.gate", + "model.layers.63.mlp.shared_experts.down_proj", + "model.layers.63.mlp.shared_experts.gate_proj", + "model.layers.63.mlp.shared_experts.up_proj", + "model.layers.63.self_attn.indexer.weights_proj", + "model.layers.63.self_attn.indexer.wk", + "model.layers.63.self_attn.indexer.wq_b", + "model.layers.63.self_attn.kv_a_proj_with_mqa", + "model.layers.63.self_attn.kv_b_proj", + "model.layers.63.self_attn.o_proj", + "model.layers.63.self_attn.q_a_proj", + "model.layers.63.self_attn.q_b_proj", + "model.layers.64.mlp.gate", + "model.layers.64.mlp.shared_experts.down_proj", + "model.layers.64.mlp.shared_experts.gate_proj", + "model.layers.64.mlp.shared_experts.up_proj", + "model.layers.64.self_attn.indexer.weights_proj", + "model.layers.64.self_attn.indexer.wk", + "model.layers.64.self_attn.indexer.wq_b", + "model.layers.64.self_attn.kv_a_proj_with_mqa", + "model.layers.64.self_attn.kv_b_proj", + "model.layers.64.self_attn.o_proj", + "model.layers.64.self_attn.q_a_proj", + "model.layers.64.self_attn.q_b_proj", + "model.layers.65.mlp.gate", + "model.layers.65.mlp.shared_experts.down_proj", + "model.layers.65.mlp.shared_experts.gate_proj", + "model.layers.65.mlp.shared_experts.up_proj", + "model.layers.65.self_attn.indexer.weights_proj", + "model.layers.65.self_attn.indexer.wk", + "model.layers.65.self_attn.indexer.wq_b", + "model.layers.65.self_attn.kv_a_proj_with_mqa", + "model.layers.65.self_attn.kv_b_proj", + "model.layers.65.self_attn.o_proj", + "model.layers.65.self_attn.q_a_proj", + "model.layers.65.self_attn.q_b_proj", + "model.layers.66.mlp.gate", + "model.layers.66.mlp.shared_experts.down_proj", + "model.layers.66.mlp.shared_experts.gate_proj", + "model.layers.66.mlp.shared_experts.up_proj", + "model.layers.66.self_attn.indexer.weights_proj", + "model.layers.66.self_attn.indexer.wk", + "model.layers.66.self_attn.indexer.wq_b", + "model.layers.66.self_attn.kv_a_proj_with_mqa", + "model.layers.66.self_attn.kv_b_proj", + "model.layers.66.self_attn.o_proj", + "model.layers.66.self_attn.q_a_proj", + "model.layers.66.self_attn.q_b_proj", + "model.layers.67.mlp.gate", + "model.layers.67.mlp.shared_experts.down_proj", + "model.layers.67.mlp.shared_experts.gate_proj", + "model.layers.67.mlp.shared_experts.up_proj", + "model.layers.67.self_attn.indexer.weights_proj", + "model.layers.67.self_attn.indexer.wk", + "model.layers.67.self_attn.indexer.wq_b", + "model.layers.67.self_attn.kv_a_proj_with_mqa", + "model.layers.67.self_attn.kv_b_proj", + "model.layers.67.self_attn.o_proj", + "model.layers.67.self_attn.q_a_proj", + "model.layers.67.self_attn.q_b_proj", + "model.layers.68.mlp.gate", + "model.layers.68.mlp.shared_experts.down_proj", + "model.layers.68.mlp.shared_experts.gate_proj", + "model.layers.68.mlp.shared_experts.up_proj", + "model.layers.68.self_attn.indexer.weights_proj", + "model.layers.68.self_attn.indexer.wk", + "model.layers.68.self_attn.indexer.wq_b", + "model.layers.68.self_attn.kv_a_proj_with_mqa", + "model.layers.68.self_attn.kv_b_proj", + "model.layers.68.self_attn.o_proj", + "model.layers.68.self_attn.q_a_proj", + "model.layers.68.self_attn.q_b_proj", + "model.layers.69.mlp.gate", + "model.layers.69.mlp.shared_experts.down_proj", + "model.layers.69.mlp.shared_experts.gate_proj", + "model.layers.69.mlp.shared_experts.up_proj", + "model.layers.69.self_attn.indexer.weights_proj", + "model.layers.69.self_attn.indexer.wk", + "model.layers.69.self_attn.indexer.wq_b", + "model.layers.69.self_attn.kv_a_proj_with_mqa", + "model.layers.69.self_attn.kv_b_proj", + "model.layers.69.self_attn.o_proj", + "model.layers.69.self_attn.q_a_proj", + "model.layers.69.self_attn.q_b_proj", + "model.layers.7.mlp.gate", + "model.layers.7.mlp.shared_experts.down_proj", + "model.layers.7.mlp.shared_experts.gate_proj", + "model.layers.7.mlp.shared_experts.up_proj", + "model.layers.7.self_attn.indexer.weights_proj", + "model.layers.7.self_attn.indexer.wk", + "model.layers.7.self_attn.indexer.wq_b", + "model.layers.7.self_attn.kv_a_proj_with_mqa", + "model.layers.7.self_attn.kv_b_proj", + "model.layers.7.self_attn.o_proj", + "model.layers.7.self_attn.q_a_proj", + "model.layers.7.self_attn.q_b_proj", + "model.layers.70.mlp.gate", + "model.layers.70.mlp.shared_experts.down_proj", + "model.layers.70.mlp.shared_experts.gate_proj", + "model.layers.70.mlp.shared_experts.up_proj", + "model.layers.70.self_attn.indexer.weights_proj", + "model.layers.70.self_attn.indexer.wk", + "model.layers.70.self_attn.indexer.wq_b", + "model.layers.70.self_attn.kv_a_proj_with_mqa", + "model.layers.70.self_attn.kv_b_proj", + "model.layers.70.self_attn.o_proj", + "model.layers.70.self_attn.q_a_proj", + "model.layers.70.self_attn.q_b_proj", + "model.layers.71.mlp.gate", + "model.layers.71.mlp.shared_experts.down_proj", + "model.layers.71.mlp.shared_experts.gate_proj", + "model.layers.71.mlp.shared_experts.up_proj", + "model.layers.71.self_attn.indexer.weights_proj", + "model.layers.71.self_attn.indexer.wk", + "model.layers.71.self_attn.indexer.wq_b", + "model.layers.71.self_attn.kv_a_proj_with_mqa", + "model.layers.71.self_attn.kv_b_proj", + "model.layers.71.self_attn.o_proj", + "model.layers.71.self_attn.q_a_proj", + "model.layers.71.self_attn.q_b_proj", + "model.layers.72.mlp.gate", + "model.layers.72.mlp.shared_experts.down_proj", + "model.layers.72.mlp.shared_experts.gate_proj", + "model.layers.72.mlp.shared_experts.up_proj", + "model.layers.72.self_attn.indexer.weights_proj", + "model.layers.72.self_attn.indexer.wk", + "model.layers.72.self_attn.indexer.wq_b", + "model.layers.72.self_attn.kv_a_proj_with_mqa", + "model.layers.72.self_attn.kv_b_proj", + "model.layers.72.self_attn.o_proj", + "model.layers.72.self_attn.q_a_proj", + "model.layers.72.self_attn.q_b_proj", + "model.layers.73.mlp.gate", + "model.layers.73.mlp.shared_experts.down_proj", + "model.layers.73.mlp.shared_experts.gate_proj", + "model.layers.73.mlp.shared_experts.up_proj", + "model.layers.73.self_attn.indexer.weights_proj", + "model.layers.73.self_attn.indexer.wk", + "model.layers.73.self_attn.indexer.wq_b", + "model.layers.73.self_attn.kv_a_proj_with_mqa", + "model.layers.73.self_attn.kv_b_proj", + "model.layers.73.self_attn.o_proj", + "model.layers.73.self_attn.q_a_proj", + "model.layers.73.self_attn.q_b_proj", + "model.layers.74.mlp.gate", + "model.layers.74.mlp.shared_experts.down_proj", + "model.layers.74.mlp.shared_experts.gate_proj", + "model.layers.74.mlp.shared_experts.up_proj", + "model.layers.74.self_attn.indexer.weights_proj", + "model.layers.74.self_attn.indexer.wk", + "model.layers.74.self_attn.indexer.wq_b", + "model.layers.74.self_attn.kv_a_proj_with_mqa", + "model.layers.74.self_attn.kv_b_proj", + "model.layers.74.self_attn.o_proj", + "model.layers.74.self_attn.q_a_proj", + "model.layers.74.self_attn.q_b_proj", + "model.layers.75.mlp.gate", + "model.layers.75.mlp.shared_experts.down_proj", + "model.layers.75.mlp.shared_experts.gate_proj", + "model.layers.75.mlp.shared_experts.up_proj", + "model.layers.75.self_attn.indexer.weights_proj", + "model.layers.75.self_attn.indexer.wk", + "model.layers.75.self_attn.indexer.wq_b", + "model.layers.75.self_attn.kv_a_proj_with_mqa", + "model.layers.75.self_attn.kv_b_proj", + "model.layers.75.self_attn.o_proj", + "model.layers.75.self_attn.q_a_proj", + "model.layers.75.self_attn.q_b_proj", + "model.layers.76.mlp.gate", + "model.layers.76.mlp.shared_experts.down_proj", + "model.layers.76.mlp.shared_experts.gate_proj", + "model.layers.76.mlp.shared_experts.up_proj", + "model.layers.76.self_attn.indexer.weights_proj", + "model.layers.76.self_attn.indexer.wk", + "model.layers.76.self_attn.indexer.wq_b", + "model.layers.76.self_attn.kv_a_proj_with_mqa", + "model.layers.76.self_attn.kv_b_proj", + "model.layers.76.self_attn.o_proj", + "model.layers.76.self_attn.q_a_proj", + "model.layers.76.self_attn.q_b_proj", + "model.layers.77.mlp.gate", + "model.layers.77.mlp.shared_experts.down_proj", + "model.layers.77.mlp.shared_experts.gate_proj", + "model.layers.77.mlp.shared_experts.up_proj", + "model.layers.77.self_attn.indexer.weights_proj", + "model.layers.77.self_attn.indexer.wk", + "model.layers.77.self_attn.indexer.wq_b", + "model.layers.77.self_attn.kv_a_proj_with_mqa", + "model.layers.77.self_attn.kv_b_proj", + "model.layers.77.self_attn.o_proj", + "model.layers.77.self_attn.q_a_proj", + "model.layers.77.self_attn.q_b_proj", + "model.layers.78.mlp.gate", + "model.layers.78.mlp.shared_experts.down_proj", + "model.layers.78.mlp.shared_experts.gate_proj", + "model.layers.78.mlp.shared_experts.up_proj", + "model.layers.78.self_attn.indexer.weights_proj", + "model.layers.78.self_attn.indexer.wk", + "model.layers.78.self_attn.indexer.wq_b", + "model.layers.78.self_attn.kv_a_proj_with_mqa", + "model.layers.78.self_attn.kv_b_proj", + "model.layers.78.self_attn.o_proj", + "model.layers.78.self_attn.q_a_proj", + "model.layers.78.self_attn.q_b_proj", + "model.layers.8.mlp.gate", + "model.layers.8.mlp.shared_experts.down_proj", + "model.layers.8.mlp.shared_experts.gate_proj", + "model.layers.8.mlp.shared_experts.up_proj", + "model.layers.8.self_attn.indexer.weights_proj", + "model.layers.8.self_attn.indexer.wk", + "model.layers.8.self_attn.indexer.wq_b", + "model.layers.8.self_attn.kv_a_proj_with_mqa", + "model.layers.8.self_attn.kv_b_proj", + "model.layers.8.self_attn.o_proj", + "model.layers.8.self_attn.q_a_proj", + "model.layers.8.self_attn.q_b_proj", + "model.layers.9.mlp.gate", + "model.layers.9.mlp.shared_experts.down_proj", + "model.layers.9.mlp.shared_experts.gate_proj", + "model.layers.9.mlp.shared_experts.up_proj", + "model.layers.9.self_attn.indexer.weights_proj", + "model.layers.9.self_attn.indexer.wk", + "model.layers.9.self_attn.indexer.wq_b", + "model.layers.9.self_attn.kv_a_proj_with_mqa", + "model.layers.9.self_attn.kv_b_proj", + "model.layers.9.self_attn.o_proj", + "model.layers.9.self_attn.q_a_proj", + "model.layers.9.self_attn.q_b_proj" + ], + "algo_config": null, + "softmax_quant_spec": null, + "quant_method": "quark", + "layer_type_quant_config": {}, + "layer_quant_config": {}, + "kv_cache_quant_config": {}, + "kv_cache_post_rope": false, + "quant_mode": "eager_mode", + "version": "0.12+6ff6457c80", + "export": { + "kv_cache_group": [], + "min_kv_scale": 0.0, + "pack_method": "reorder", + "weight_format": "real_quantized", + "weight_merge_groups": null + } + } +} \ No newline at end of file diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..640e99c64d2f17d76e2f1f13af219fb369e1004e --- /dev/null +++ b/generation_config.json @@ -0,0 +1,12 @@ +{ + "_from_model_config": true, + "eos_token_id": [ + 154820, + 154827, + 154829 + ], + "pad_token_id": 154820, + "temperature": 1.0, + "top_p": 0.95, + "transformers_version": "5.0.2.dev0" +} diff --git a/model-00001-of-00282.safetensors b/model-00001-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..355a02619b8e4eb061a30c18ad7bf2aa2e6ac1da --- /dev/null +++ b/model-00001-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:198ef923a7ca4effc5ead8ebf799fee10beb8ce081352fb099636f805d1deda9 +size 5342821416 diff --git a/model-00002-of-00282.safetensors b/model-00002-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b2afe2d218add735f6dea5319c958318ec187366 --- /dev/null +++ b/model-00002-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e743a37cf4c30cc2c7aeff47a1da82b4602fd65d99ab02126f5f16f037c8f9a +size 1470955064 diff --git a/model-00003-of-00282.safetensors b/model-00003-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c0ad71b9a85432a1c0f0b328b9db4ffd4f33a2c2 --- /dev/null +++ b/model-00003-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e032708bbf78ad3082dab6d27e92d32c90114c98552e2447e26976782aee05ef +size 1423888392 diff --git a/model-00004-of-00282.safetensors b/model-00004-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..527cc4dd2da54f9f3840b75dab3c76d72bc1df17 --- /dev/null +++ b/model-00004-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c9ce91e3f283d485be7aceefaf546c720c626ba819d02c694a0731764f1c8d +size 1423888184 diff --git a/model-00005-of-00282.safetensors b/model-00005-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bca812447d8ddbb185b650e1a3d587f55b91e748 --- /dev/null +++ b/model-00005-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8c329a5a9c83a678da7f9e02fed250f1372a9baefffaad01120adfda551b4b +size 1737703968 diff --git a/model-00006-of-00282.safetensors b/model-00006-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..afb9869941d4e5733749b1ade7dacd06ebc76cc6 --- /dev/null +++ b/model-00006-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3a439a48bfb33c5a4662835256570e9d9e4a32ec568485ff235e12472be695 +size 1423888400 diff --git a/model-00007-of-00282.safetensors b/model-00007-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f49e91e12efab2d8f2ebf446f3835fea1a15822f --- /dev/null +++ b/model-00007-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744c834b047ef167e093e146c0131fbf1d00525db4af52754840a03d29bb9fd6 +size 1423888392 diff --git a/model-00008-of-00282.safetensors b/model-00008-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..06eecb6fd2dba5596fdd47fdacc3112117244d36 --- /dev/null +++ b/model-00008-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f5e2c3d835563ac1ffcfbca8e24a36171a37c963d158a01f31918552ae008e +size 1423888048 diff --git a/model-00009-of-00282.safetensors b/model-00009-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c359fac4a1a50d77909d90b69c84e452aa9ba2f7 --- /dev/null +++ b/model-00009-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a168b828b2aa13eff829b9fc91b62d84ba55c2262e941b3e0e6c09bb10f8be0c +size 1737704104 diff --git a/model-00010-of-00282.safetensors b/model-00010-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b0bbee5f2739d609071bdbebeae70b88b4900358 --- /dev/null +++ b/model-00010-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4867563706d5a2b4b6d6d3357e7018243bce8bc32256726b263c3a9c525aa2 +size 1423888384 diff --git a/model-00011-of-00282.safetensors b/model-00011-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..49617ab06b850bcef0b5dc3b95b210abac1389cb --- /dev/null +++ b/model-00011-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175187a0d84b6c6b324c16846b592c53b30d731bde86811a5f60f72b7dbd50f5 +size 1423888344 diff --git a/model-00012-of-00282.safetensors b/model-00012-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8a705a774baeb2a946d65cf84738c1109b77cb49 --- /dev/null +++ b/model-00012-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e84e133b5f5178b1d545f3987354e3ccdef25893dfc3db374b9bed6c0f07564 +size 1463997064 diff --git a/model-00013-of-00282.safetensors b/model-00013-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..50786d30db401ebffe6f121bb19281b477574288 --- /dev/null +++ b/model-00013-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee04729368cd144dbee1d0293fc019262b68719fb14135ef0bfcf8699a9b96d8 +size 1697595184 diff --git a/model-00014-of-00282.safetensors b/model-00014-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6c41afe7722a65c3ac293223451e587569cead9f --- /dev/null +++ b/model-00014-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb3bc34a5c1f2c7586a8b81ada84162ff03a6664679cebd1dc97fe77f4214e39 +size 1423888384 diff --git a/model-00015-of-00282.safetensors b/model-00015-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ba96bf21a1b8b5258422a2d7a1b5b312dceb5d69 --- /dev/null +++ b/model-00015-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb9e09301f94ddfd262d83fbca8aa444a8cfc56824b3db2a71affd6d547dab2 +size 1423888208 diff --git a/model-00016-of-00282.safetensors b/model-00016-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fc85b7291d9314542dc0615fd10d3bad421795ff --- /dev/null +++ b/model-00016-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85929ef0c5fddc04dca3c4c970661beefcfc806c639175cd0879db37990a39d1 +size 1737703944 diff --git a/model-00017-of-00282.safetensors b/model-00017-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f8bd7255eaa503564ddb1628c1cd91769a5906bc --- /dev/null +++ b/model-00017-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c648ccb6503998496182d4b0104c6b0ee0f655874e5dac08b7995d158a86ca1c +size 1423888408 diff --git a/model-00018-of-00282.safetensors b/model-00018-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f24491ec8511c0c18613e5562146ae5d173317be --- /dev/null +++ b/model-00018-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42c5ceb3a13f64eddca92c1a3a2a91145fac84d9feedd6609795d721f9e84a9 +size 1423888384 diff --git a/model-00019-of-00282.safetensors b/model-00019-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f1890adb7246b17a07d717e22181db9ef96a8326 --- /dev/null +++ b/model-00019-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54be164dfc6ebea95ff902d8a5ad4ec8523a46fd5ec6d53fd40a40654a172c7 +size 1423888072 diff --git a/model-00020-of-00282.safetensors b/model-00020-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c474f2524279949024f25ef677dc20b8889ff783 --- /dev/null +++ b/model-00020-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ac78d6c4f82520cdf579ecf6fa3de02bb6deae854f523f429927c7e175fea1 +size 1737704080 diff --git a/model-00021-of-00282.safetensors b/model-00021-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b744c1b471b2e6818d032d11ad51b06368ba65d5 --- /dev/null +++ b/model-00021-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df211bb812333a4914c66a01f0d1da6eb8169df7ec3c53e795a1cb3241886783 +size 1423888408 diff --git a/model-00022-of-00282.safetensors b/model-00022-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0214d1cc45c2c2285fbc0ec6be50f9e93bad50bb --- /dev/null +++ b/model-00022-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e659af87492963a1db88c211d31505a84188c57558d72462abf5fdc8872e2b +size 1423888344 diff --git a/model-00023-of-00282.safetensors b/model-00023-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..531920e5919c25d8fb67044f05c7d6cf56a669a3 --- /dev/null +++ b/model-00023-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493d8dabf086265d04c46cb11c505cd9406aa8a58bff7ba1f78ce9ff0e12c4fb +size 1423887976 diff --git a/model-00024-of-00282.safetensors b/model-00024-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f657bc6f7201c2431082f45fbc9cb46e2a4902ba --- /dev/null +++ b/model-00024-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dcdf5e8827c7ff29073f347d6469bf81cc6c87d34a15f922cfc272ad0204768 +size 1737704208 diff --git a/model-00025-of-00282.safetensors b/model-00025-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..04dceb4e25ca17b381244e4b277ef2d651b53dd5 --- /dev/null +++ b/model-00025-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a51ac84af31a20bf0b41763638f38ca137e722960841ed510136ac404adae3 +size 1423888392 diff --git a/model-00026-of-00282.safetensors b/model-00026-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ca7c6fa4e69cc9bcf38aafec3a7f97eff880e33a --- /dev/null +++ b/model-00026-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d47916e019f1ad4fa59b5f00239c21f5ce4b250b9cc44980b0101579bfe710 +size 1423888224 diff --git a/model-00027-of-00282.safetensors b/model-00027-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1f3c9014b69ec5ee3ff02c6fbd31e8e082f2f86f --- /dev/null +++ b/model-00027-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2933fa278d54b927b17712a0288881d4cee84c8aeae6f51f6b0fe5b6b69f37 +size 1737703928 diff --git a/model-00028-of-00282.safetensors b/model-00028-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2bbf6800a04a15952b02d66f71e2fe6ccca48802 --- /dev/null +++ b/model-00028-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67a2fda7bb85cb288efd7b5472f59deaa46686d9f625f541e49bc6c1e77afb7 +size 1423888400 diff --git a/model-00029-of-00282.safetensors b/model-00029-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ec372ef0bcafa92770f7396af1a13ec83ca50936 --- /dev/null +++ b/model-00029-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934c582943e0633e63c3b845c7ce878c0e237408e8417b7ce3a65228cf1089a6 +size 1423888392 diff --git a/model-00030-of-00282.safetensors b/model-00030-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..faed2d28d9f059d9cbac5f43f4aaa4aa3c819780 --- /dev/null +++ b/model-00030-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede48c23f0812dab47a8b68ce2bdf6f8725fab22006b8c720ddca111eec194e1 +size 1423888088 diff --git a/model-00031-of-00282.safetensors b/model-00031-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..07fb3505a702f6e437e5092d6b49f38650214cf7 --- /dev/null +++ b/model-00031-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29561964396e1ca591a1364e3c8e5b367d4811535f9d1e8f34ef70509c8255e +size 1737704056 diff --git a/model-00032-of-00282.safetensors b/model-00032-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..05842f896949f440f067f77a91bfc4667059af21 --- /dev/null +++ b/model-00032-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40875eaa983f01e3b512e8ff82fa2dc74a93a5f76fff095f37ddbb7d558def1e +size 1423888400 diff --git a/model-00033-of-00282.safetensors b/model-00033-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4a9eb8770222d70a719dc32f5e6be1c7054d6309 --- /dev/null +++ b/model-00033-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521bb03ef22a44bea4fe4952ba4a18be2c756304a5f1eeb13e9ea351b4311d0d +size 1423888376 diff --git a/model-00034-of-00282.safetensors b/model-00034-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ec0e1b2fbb21230aff9f47075f3fdfc5e004f397 --- /dev/null +++ b/model-00034-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff88b056e212964920a63b4bc007550c9463d3c787e4df69bb3fdf038294f4a +size 1423887976 diff --git a/model-00035-of-00282.safetensors b/model-00035-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4161af699fa3d619af7fc2e86fa8314b8cecd0e6 --- /dev/null +++ b/model-00035-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc5dfbc9eb03d2b03f01ad940181dcd2a8a20052608ce018dab286e2801d3ae +size 1737704184 diff --git a/model-00036-of-00282.safetensors b/model-00036-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1a8677f9fcee28b66394147bdc4bbcc31ec53e89 --- /dev/null +++ b/model-00036-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e7ffe84ea2f6618ec29f461b5909593ecf09373f562fd191c243df67d7f3e7 +size 1423888392 diff --git a/model-00037-of-00282.safetensors b/model-00037-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..956410e422b1ed50d06a498a58b42ed97efdbca2 --- /dev/null +++ b/model-00037-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b1f59f4a8af99f0227c7c5ce4e5c3c085e7676bf310e6402d409cff1b21923d +size 1423888256 diff --git a/model-00038-of-00282.safetensors b/model-00038-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8514cf24ea31dc8dbfcc07aeb4b9dc50ea4d529f --- /dev/null +++ b/model-00038-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1056460f7a62d1d87fe59bd78ca059636fb386daf3b2f3c2eef39e431f2f45f0 +size 2260038664 diff --git a/model-00039-of-00282.safetensors b/model-00039-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9e7d7d6cbee677e44588f1dde6ec836b4f7507f6 --- /dev/null +++ b/model-00039-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b5bc9d666811f65efa954956cbd91193e2790298d7133a00afdfc056b2e4e8 +size 1489436104 diff --git a/model-00040-of-00282.safetensors b/model-00040-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fdc596b5ea6430fc78c4963848d8e9d055e744f4 --- /dev/null +++ b/model-00040-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce162e01aff18253e8b976041f4d3a9e90d8e4df48980aa77afda16bdf82e4f +size 1423888392 diff --git a/model-00041-of-00282.safetensors b/model-00041-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b41728b06e568e057b3f6f5512a19c6794c657cd --- /dev/null +++ b/model-00041-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c29fd13b3324e92b882c0696f5a9fd5116b7b41c7505a7dee8d2b744a9d00a3 +size 1423888184 diff --git a/model-00042-of-00282.safetensors b/model-00042-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ec10bda0f9ddd1703d8b6fe9c245c6abbad041bd --- /dev/null +++ b/model-00042-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fadee28237027195440ca9060d61b775643cdf8069994423c174d029322fb4f +size 1737703968 diff --git a/model-00043-of-00282.safetensors b/model-00043-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..71afacb6db6d7d96aa65072f9a72af8eaa39fda6 --- /dev/null +++ b/model-00043-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169b56f67f57f8f2dbb17cf2f6c0c22286ce59e28562af9eae9d4e108fc9e8aa +size 1423888400 diff --git a/model-00044-of-00282.safetensors b/model-00044-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e337e31db6f2788aa5d2eedac7dec70099f46ada --- /dev/null +++ b/model-00044-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aded79d773212be5a93bb3579888f1ebcc0bee83a3fc0fdce6cb83fcf9b235de +size 1423888392 diff --git a/model-00045-of-00282.safetensors b/model-00045-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..67f4b1ca7dffbd935261f586394d7bb550eee4e6 --- /dev/null +++ b/model-00045-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc626338cdab6f2f654ac630bdf033f3a9f02dc4102fa9a206d5135b3f04392 +size 1423888048 diff --git a/model-00046-of-00282.safetensors b/model-00046-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..890b2553ff8a53f1365a7f83fb77ca7a453f3005 --- /dev/null +++ b/model-00046-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65c4c62366b02c04f356f71921833f4f39280475b618042d414f74786ed8e6e +size 1737704104 diff --git a/model-00047-of-00282.safetensors b/model-00047-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f2547f614176530a1bace4356823e04816b567de --- /dev/null +++ b/model-00047-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28ea4052ad42f76bcc964142fa16af9c5222be059fad2c4c934efb06c10377c +size 1423888384 diff --git a/model-00048-of-00282.safetensors b/model-00048-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..29337a82c9e2f1e1adf741047c50efbc4179645b --- /dev/null +++ b/model-00048-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b74014d91de27a27635ae73fe8b379f4d88538e75fd070639c12505372c1daf +size 1423888344 diff --git a/model-00049-of-00282.safetensors b/model-00049-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0de4e25285ea57e5a24e508279a2aedb79f80a2f --- /dev/null +++ b/model-00049-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe94fbdeecb5ceee200704747e2a9b0f7a7178afc7eca27523d38273d47577e +size 1445516008 diff --git a/model-00050-of-00282.safetensors b/model-00050-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d807c08b2b5008b5fe70e6d1e291cec116689d02 --- /dev/null +++ b/model-00050-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25eedbdd6843c3ffc52f0ca9e5ede35353f5bab25f204b99f78dd499a2cc5f8 +size 1716076232 diff --git a/model-00051-of-00282.safetensors b/model-00051-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..99cc011d4de31dc5b1d73ef130d192fe18bd216f --- /dev/null +++ b/model-00051-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844b46a7c02ada4513900984b7201d923dcdd9e4fa1ab9ec71659b5bf16d6f3a +size 1423888384 diff --git a/model-00052-of-00282.safetensors b/model-00052-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..25dbd00b39b276a1052e33c6f0de24364b10e02b --- /dev/null +++ b/model-00052-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c0bb794394f9725fa1563cd7e531f2ab34cfd1016537115174b5ff1134173c +size 1423888208 diff --git a/model-00053-of-00282.safetensors b/model-00053-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f45f4454e21442caa2202650c8f69d0458e1e987 --- /dev/null +++ b/model-00053-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de232a272294b0bf711d7ba4899350fd345dd65860276db77bfdf8b4d5965627 +size 1737703944 diff --git a/model-00054-of-00282.safetensors b/model-00054-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..70994e327c6faee0d3e4adbfaf36f4338b2f8453 --- /dev/null +++ b/model-00054-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8800a16d857026b4119b746ea51e13658f5cf16d0745fa35477ac6435566b739 +size 1423888408 diff --git a/model-00055-of-00282.safetensors b/model-00055-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1dda6b3535cd0e7fb09beb4b9d58b98cd5ec2ee8 --- /dev/null +++ b/model-00055-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47938abc5027b044df598cdb3c4cbdfb1bc568b4c1744b64287e93e73be0d5af +size 1423888384 diff --git a/model-00056-of-00282.safetensors b/model-00056-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c6ddcbcaec730f4d2be656a6a6dd0e6346fd83fb --- /dev/null +++ b/model-00056-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00be9cf8b13e5c370bb5a200c35a8a3984bf04194e8d0d1099801dc747dc2d8 +size 1423888072 diff --git a/model-00057-of-00282.safetensors b/model-00057-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..64faa90930a9f6312392333d942a2a69efb269dc --- /dev/null +++ b/model-00057-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abac992f5365d82587df1ba1125d5ee1d6f58696ea3bc6d4fb17a7080fe33a6 +size 1737704080 diff --git a/model-00058-of-00282.safetensors b/model-00058-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e2a8fd8e48681591276a182951ead0239ee16017 --- /dev/null +++ b/model-00058-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d27ec9c670bea8849ff57d320b378d766d65a79b65236a57438147f3823131 +size 1423888408 diff --git a/model-00059-of-00282.safetensors b/model-00059-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..28c20963c1b63ce2e15e16d7600fd5bcdae27cda --- /dev/null +++ b/model-00059-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f65ca1a0f253866fed2a82bc6f1e6d8720fddca29ef723efac9c1726fa416f +size 1423888352 diff --git a/model-00060-of-00282.safetensors b/model-00060-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f86760a86bd4cd1f354bc24c869f8d44b25ca006 --- /dev/null +++ b/model-00060-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f670128ab7b3891a63f720876dbea848e9451f144c61f604f622cc2237d04fb +size 1423887976 diff --git a/model-00061-of-00282.safetensors b/model-00061-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3b2d469ec9ca4dd24dabb7aef698a44a654cfbcf --- /dev/null +++ b/model-00061-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf64238281755cef465ce9fe48a7ef9146bd8b8fc251fd13cffec87f7a7add7b +size 1737704216 diff --git a/model-00062-of-00282.safetensors b/model-00062-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..acfc62ebe60f7ec3ff1a4f77d493281fcc2da0f6 --- /dev/null +++ b/model-00062-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba816461caf0457d77c3b6c0b9975e87df19a87c4981eac44d01f4cdd9519e8 +size 1423888392 diff --git a/model-00063-of-00282.safetensors b/model-00063-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a59ed965a9e523824a9d58992629f51156070c5e --- /dev/null +++ b/model-00063-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e5cab964f10fa24a3919d5c2e7c15b6a786ea19e786817953bcbbeab978228 +size 1423888224 diff --git a/model-00064-of-00282.safetensors b/model-00064-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e8b3f9be2bf03e8a1b2810adfd563ff8c8b0eacf --- /dev/null +++ b/model-00064-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e040342a3c2ceaeca0eafdeb5fdf90576dab6dfd4526576b3383ef9f9e8a946 +size 1737703920 diff --git a/model-00065-of-00282.safetensors b/model-00065-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d89622892ac7ed5cf44dd0859943a4102d39b9f9 --- /dev/null +++ b/model-00065-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b64efa9415ef2a45ba94d931d87bb97933c4dfa500267ae7bd542ad85ffc9e +size 1423888400 diff --git a/model-00066-of-00282.safetensors b/model-00066-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..10bb16013d30441514f216f29293bdda676799b7 --- /dev/null +++ b/model-00066-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec5e9b5f167f02a2bf4a9709321aa3ad1d19105074f9aa262f3f9c12fd6841e +size 1423888392 diff --git a/model-00067-of-00282.safetensors b/model-00067-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5dbc4c8f540be2e0238554460a7b1f5879623064 --- /dev/null +++ b/model-00067-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54693c33f728a1872108298095ac6ca76e280c989877d23c3bac947acd278506 +size 1423888096 diff --git a/model-00068-of-00282.safetensors b/model-00068-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4a7777097d3414fcce90218100f3596970a6bc8d --- /dev/null +++ b/model-00068-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ab3971c913dad9b661d9e34973ce3869c1954c32116dc8cb26672ae9119d1b +size 1737704056 diff --git a/model-00069-of-00282.safetensors b/model-00069-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5033bccf95b5b880d514696aa8a53084552a036f --- /dev/null +++ b/model-00069-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7586020655bda8957798ad8c895e7958aa4b67c01f712c9298e4a6468bf95b9 +size 1423888400 diff --git a/model-00070-of-00282.safetensors b/model-00070-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e63f1d958eb3a4f65aa8eb7868bd4f40acb07859 --- /dev/null +++ b/model-00070-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f120d0743af93823431ddf4da6cb91ab4d24fa624e91114dc72e774f7fed315c +size 1423888376 diff --git a/model-00071-of-00282.safetensors b/model-00071-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1f995b36e5ee0935954ce319904a5ea90c75e365 --- /dev/null +++ b/model-00071-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b50cfa584b2ade91ee4127df6114e80d768e568073c1b2aa65ab2927d6214e +size 1423887976 diff --git a/model-00072-of-00282.safetensors b/model-00072-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0e4015f709e38beb920a513d354cd004f817b394 --- /dev/null +++ b/model-00072-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e2e4ec17c04e96054acf45df173eda96602bb3b4eaca6345a5b8d744a62845 +size 1737704192 diff --git a/model-00073-of-00282.safetensors b/model-00073-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..dc6ef18bdcb81a8a65353646479c0d2770400394 --- /dev/null +++ b/model-00073-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104969e38e4f3dfbeb236d86adb26b3504de424eddf2069396994fb1b26fa034 +size 1423888392 diff --git a/model-00074-of-00282.safetensors b/model-00074-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3f4078622657e3be98d036788b015c5978b32e12 --- /dev/null +++ b/model-00074-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f957a7cb33e1716f4a3b548b941d365cbe2cf98224d4175d516aea75ea50d32 +size 1423888256 diff --git a/model-00075-of-00282.safetensors b/model-00075-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..aa4f53df1044c61a9de09235ff88ab92c4360509 --- /dev/null +++ b/model-00075-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a4e373b930792e2c8ed87f32226e303259420ad47cf142215668c6dd313a73 +size 1737703840 diff --git a/model-00076-of-00282.safetensors b/model-00076-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a028a3646f805ffc727dbf2d224e51f59d646f01 --- /dev/null +++ b/model-00076-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb99d34fb3010d7507d26ed2c335150733ec47bb1344304d20ae796d58a5a730 +size 1423887976 diff --git a/model-00077-of-00282.safetensors b/model-00077-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..aee97750c94360ede8d14b8fd580a4ebc2f810b4 --- /dev/null +++ b/model-00077-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b7bf8d221170deea03636fbc594e14cf7211a57346643e95587aba54cfed7c +size 1423887968 diff --git a/model-00078-of-00282.safetensors b/model-00078-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..752b13a34561e955a5e5376b0b96d7ce763278f0 --- /dev/null +++ b/model-00078-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a932f2f14f868effba139359dbcba80ffa49bd6995d03c23ef3779e8eb1fcaf0 +size 1423887696 diff --git a/model-00079-of-00282.safetensors b/model-00079-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7748d4e1a41aed532794b914a277a63a1d67a78c --- /dev/null +++ b/model-00079-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e826f51fc7c5225d4f611d624051418262c4171775140f03130326e271a5d67b +size 1737703808 diff --git a/model-00080-of-00282.safetensors b/model-00080-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..366c29bbc21a77774b6b9881acaf43c738647b55 --- /dev/null +++ b/model-00080-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766ff83a58795451f212dedbca10b28b015c7c7b7fbd3f8b1e195caf0667f683 +size 1423888400 diff --git a/model-00081-of-00282.safetensors b/model-00081-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..90caaa5fd65dfb89b129b53cb620fba56a953374 --- /dev/null +++ b/model-00081-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f57ac825ba4dc33449f0a76794ad2b29110e5ea433d21dc44722e96bb1329cc +size 1423888392 diff --git a/model-00082-of-00282.safetensors b/model-00082-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..20f116331ae363cbc2343be365ce0e69e8acb6c1 --- /dev/null +++ b/model-00082-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c68e09aa8883b0fd5a06e32c3f0f388174d0ebe35727567a5994479a024fc3a +size 1423887992 diff --git a/model-00083-of-00282.safetensors b/model-00083-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7496bcdf444dbc5a84118ce61c705b2d544f300a --- /dev/null +++ b/model-00083-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b74cbd487dc3f7c14df682cb9934e00f1c7b219a17e9260328554f8cbd4a856 +size 1737704168 diff --git a/model-00084-of-00282.safetensors b/model-00084-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..06d57d5396fe530c986c5c23ecffe8e759447a04 --- /dev/null +++ b/model-00084-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8e7c8120184f12f453d2c0b2c4861bf20c77362eee5ef3ee289afe99c3c07a +size 1423888392 diff --git a/model-00085-of-00282.safetensors b/model-00085-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4c9d76895f840f03fa8cb2764eb96cb8d58b9582 --- /dev/null +++ b/model-00085-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472caa83a0cff6546a942b233c754460441070d5bc22fba8584e57ff8793ac52 +size 1423888280 diff --git a/model-00086-of-00282.safetensors b/model-00086-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e1d9febe1081b6ce16267ad2ff203c5181f67e67 --- /dev/null +++ b/model-00086-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dea58401a8f715a6226a234024900544a1696158fd86a7ece4602b7b02b860 +size 1737703872 diff --git a/model-00087-of-00282.safetensors b/model-00087-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..29095ffab20df20e6772ad956065497ac8481f12 --- /dev/null +++ b/model-00087-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:962444533a0ea504c9996b52e83b0cab326924ebd199963964dbc79c4356a916 +size 1423888408 diff --git a/model-00088-of-00282.safetensors b/model-00088-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..82a4ee15b38555f6cb97ecddb9610572d5da122c --- /dev/null +++ b/model-00088-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67dea7605f13021ee151478288d4be5416479a1b5eea1c7879e017bbdbd9d6b4 +size 1423888384 diff --git a/model-00089-of-00282.safetensors b/model-00089-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..921b2bca3eb3857ce0aa4f19b171ab1d3687ebe6 --- /dev/null +++ b/model-00089-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8b01be028f24e22838862c9febc81c39983560a8a7ed26e4609309f93818e0 +size 1423888144 diff --git a/model-00090-of-00282.safetensors b/model-00090-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..064617fa3e426619538edabc0ed4902252fb366f --- /dev/null +++ b/model-00090-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4754b87dca269f473a43c78959d2394a76648740cfa6692a6c95711d07853e32 +size 1737704008 diff --git a/model-00091-of-00282.safetensors b/model-00091-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c68f6e1bf4d623f865d1193124391f9e46aa611f --- /dev/null +++ b/model-00091-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49009bece0c0402e2f273a17199e169a68072b7c48859611badf85c3a72dfafa +size 1423888408 diff --git a/model-00092-of-00282.safetensors b/model-00092-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a0d37dea65b12b34c5731247e8158088842f0507 --- /dev/null +++ b/model-00092-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c6a2fb57a685905e3f9ac72f6d511f4d9111c6d51c75a2c271e7ef0c9f7b48 +size 1423888384 diff --git a/model-00093-of-00282.safetensors b/model-00093-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..eccb2ef1567ddcf267d0d3f72a5337c07ae9732e --- /dev/null +++ b/model-00093-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa591c510fad1ceb5aca0c9343848665a1486eeacc5e5773cbda726226c73308 +size 1423888016 diff --git a/model-00094-of-00282.safetensors b/model-00094-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..318cfab65ae0a47945a8834cc60f699d23dadff6 --- /dev/null +++ b/model-00094-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2caa8ada76cedd00a94ad2b5a4588c1368a372bc99add01b5748fd3dae4011 +size 1737704144 diff --git a/model-00095-of-00282.safetensors b/model-00095-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..774463e9117a01116d20f3fed9096b66fd7eda45 --- /dev/null +++ b/model-00095-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d5ea8440cd8c948390bf718a2cd34a24a72f63d2cc2f72516f5dce2575b975 +size 1423888392 diff --git a/model-00096-of-00282.safetensors b/model-00096-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d4d805247acf69dc7d0041ad5965135c4ef477f3 --- /dev/null +++ b/model-00096-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222d3ac9c7d98df7f37c428cae39e9f5d6aebd65ecebe26d33371ad27c232391 +size 1423888296 diff --git a/model-00097-of-00282.safetensors b/model-00097-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..47a3b5bedcd9181db0f4bade60a0933750e38de0 --- /dev/null +++ b/model-00097-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13cf90375e2fc4b3974fda949c1a557e95a7ac5505aad9676cc07b781fa86962 +size 1737703864 diff --git a/model-00098-of-00282.safetensors b/model-00098-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6e6fb2cc1c0228fca58db26446dc848dff94d9fa --- /dev/null +++ b/model-00098-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd796c45da76dcf493a462351d44eba6c9c678d2e93ed19636e8d5f3d05a278f +size 1423888384 diff --git a/model-00099-of-00282.safetensors b/model-00099-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fc7cfcf90a06061bf3b553a432f9cde42baa6013 --- /dev/null +++ b/model-00099-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334f353743cbb70f100c208319c5c09d0df1bf7b505bbb61a9b6668996d6c88b +size 1423888392 diff --git a/model-00100-of-00282.safetensors b/model-00100-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ded9342817a68077dad2c9e685d2fb239293bdb9 --- /dev/null +++ b/model-00100-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c7ec254b68d8a5d0944f8c013e038666ec560a56e1b0c917765f8ee7d6b5e9 +size 1423888168 diff --git a/model-00101-of-00282.safetensors b/model-00101-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7c3109544b3dae04078b88cf6bc85143064bfe3d --- /dev/null +++ b/model-00101-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c345cc5fe338a7af7c7305bc86c48fe29c69e485174c20ce4dc65003c6b66544 +size 1737703992 diff --git a/model-00102-of-00282.safetensors b/model-00102-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bde228c09110badc30622867f357aa404fe3f495 --- /dev/null +++ b/model-00102-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee658dd771c24c33b3edfbbd17bf7da91064c93736c1f5b882fdb2b79007754f +size 1423888400 diff --git a/model-00103-of-00282.safetensors b/model-00103-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..23861e7dc09f54bbb10a9fcbf4c6910b89a28ab0 --- /dev/null +++ b/model-00103-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5777502ca89a1d0349fbd03f68f0b80a59796c036ab9b9eb2eca71e0d974a47e +size 1423888392 diff --git a/model-00104-of-00282.safetensors b/model-00104-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c30e02113770de8d1801855db09653eae535cf66 --- /dev/null +++ b/model-00104-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30914a228790c7152e385247d446a07addb4ba8c4179a76da7844feb5bededdf +size 1423888032 diff --git a/model-00105-of-00282.safetensors b/model-00105-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8a544e09420ea43666d81a8cf2a451304a1e47c6 --- /dev/null +++ b/model-00105-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd59695f0fda2fbf3b4901d72829949015d69f1f150854800ae859e21dfce8a +size 1737704120 diff --git a/model-00106-of-00282.safetensors b/model-00106-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a2bc31877172b5e323878ddc65b2399397f12dfe --- /dev/null +++ b/model-00106-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0890c447d1e5202acb9030f9feb8a9e52752c5587746c2cfb527b5013a56e6a2 +size 1423888384 diff --git a/model-00107-of-00282.safetensors b/model-00107-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..eb7de2632472e12d00cdc19b2abede1cc9efd05e --- /dev/null +++ b/model-00107-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd32decd8df0ba83885f44aa0fb0f2134719090f3a81da5c809ec60b85bb8d8 +size 1423888328 diff --git a/model-00108-of-00282.safetensors b/model-00108-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2449187bff7924c50cf09f20258fed7adc9f4d7b --- /dev/null +++ b/model-00108-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3cd8402fae5411f224ade006916db6e3ac40cd4ea17482c3491a3a4858dc5d +size 1504249752 diff --git a/model-00109-of-00282.safetensors b/model-00109-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..583ec10cd8019e571ca38cce041ef2362da9e5ad --- /dev/null +++ b/model-00109-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f916b57c70f411906a69c3e7cf144dc0f988cfb28bc3f307bc16a7635d3a1036 +size 1637287760 diff --git a/model-00110-of-00282.safetensors b/model-00110-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c27573b01db5b34ac49370e94582a6f37fe7a3aa --- /dev/null +++ b/model-00110-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25ae850a290d7d8aa6b10e776add82af4f12a294cfc60ce455415714ea790a2 +size 1423888384 diff --git a/model-00111-of-00282.safetensors b/model-00111-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ea1a0cca543af605fc04a442108baf43de81fc96 --- /dev/null +++ b/model-00111-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9383d668592ee9780b0d1a04e4bf9bd0bf5895b334c1aac27a457b7f00b4d842 +size 1423888200 diff --git a/model-00112-of-00282.safetensors b/model-00112-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2cf71a87f10a1a6ff30315fbd905da988bf76bd9 --- /dev/null +++ b/model-00112-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791955e071af8f61889e06e8953e7debc7eb97c5e0add748230a7e84b4191209 +size 1737703952 diff --git a/model-00113-of-00282.safetensors b/model-00113-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..39d4a60bdf61750a0383d3c5f603a0ae7a406c0c --- /dev/null +++ b/model-00113-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ced2d21baf358d8889bba5c9edeb8903808b104c5e04885e5ab0210842a044 +size 1423888408 diff --git a/model-00114-of-00282.safetensors b/model-00114-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2e3943b246a1a7d3d8e77852ed5bd322d1fad372 --- /dev/null +++ b/model-00114-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4d2b9112a0acc0d397c365698423432cb07753558d92869e09955c573d670f +size 1423888384 diff --git a/model-00115-of-00282.safetensors b/model-00115-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b56c01d6c4b2d000379849c1cb935443799cde72 --- /dev/null +++ b/model-00115-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e99b810c6a91041b5cb98c523720d99fc0ede30bc672111de8d7d5ad561492 +size 1423888064 diff --git a/model-00116-of-00282.safetensors b/model-00116-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8f65bd068f5b36b97ec23a4105762d63cdaa3fa7 --- /dev/null +++ b/model-00116-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afaf09ea013da6ba7612a759fc0827cfe05c11b6356f841c3a2e9f246d43b518 +size 1737703840 diff --git a/model-00117-of-00282.safetensors b/model-00117-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..293cb8a7e5c4d3cb4e8689df47815a0e79bf4e24 --- /dev/null +++ b/model-00117-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983bb72ea2edac90673bf47dfd76f456c5e380df146e5685131123bf79962483 +size 1423887976 diff --git a/model-00118-of-00282.safetensors b/model-00118-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e89f77435d296e11032fab85fd6ab431a75a2457 --- /dev/null +++ b/model-00118-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7712754ac2b1f4ddb9902a2b67d925c41e6f520b6768d4cb32ab2609f41156ad +size 1423887912 diff --git a/model-00119-of-00282.safetensors b/model-00119-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8f5bcede1dd9e01c0370ec153c297f631dbe93f0 --- /dev/null +++ b/model-00119-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6b5fa75f4c0bfc2e716c8aaf6665406e43b82c9730e2a276cbc16c1b48276c +size 1423887552 diff --git a/model-00120-of-00282.safetensors b/model-00120-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..53d5f49f0902b18f7a460c3e783c8f4d66f376ea --- /dev/null +++ b/model-00120-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330de3e9ba98ab236b81e42ee5df965c3db720773eaced3b23ea0afab6db4fac +size 1737704184 diff --git a/model-00121-of-00282.safetensors b/model-00121-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3162dd40a39316f4f3bf528b5f7a3c2eef2a7700 --- /dev/null +++ b/model-00121-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd1aff073d0a526a625033ef942d2cafd6b6e9c6528d11248b0b57809b0519e +size 1423888392 diff --git a/model-00122-of-00282.safetensors b/model-00122-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..309a77d90e5d6906ca8bfdfff9d93e69768ab1bd --- /dev/null +++ b/model-00122-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192d659256892c8109e94229232a517a435e04337e10f86114b13cb88ee123d9 +size 1423888216 diff --git a/model-00123-of-00282.safetensors b/model-00123-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ddabc8c46685644957b61d538e4d2a46fa63bc7e --- /dev/null +++ b/model-00123-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eae656b6818f3bd54985b642a20cab861a52dceedcced0a9c4d1a96fbd21597 +size 1737703928 diff --git a/model-00124-of-00282.safetensors b/model-00124-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..351d1d7fd5704b6adaab856a2786bdabbce32c4c --- /dev/null +++ b/model-00124-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af9061f0741d6c9752f82b706c8bcc7e00270ef90dced0abb7237f259995198 +size 1423888408 diff --git a/model-00125-of-00282.safetensors b/model-00125-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7f9a1c35855c25a3925cc5af6629958e16d24b0d --- /dev/null +++ b/model-00125-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89288e7e07aa556b45594491eeca770f6fcc3263b3a79567b746c92adb43ac7e +size 1423888392 diff --git a/model-00126-of-00282.safetensors b/model-00126-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b97f4e28524601b60590570a8fbc24525578a12f --- /dev/null +++ b/model-00126-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9618ca47326517f6259d897115912ef0070a4b05ad5b5ce8ab7ba1f97ad51774 +size 1423888088 diff --git a/model-00127-of-00282.safetensors b/model-00127-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..76d3f961f497efb5a4eb2d21509fcd86b48d00e5 --- /dev/null +++ b/model-00127-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5174ea701966fb6fe6c6c988eef665fe9ad39c77540567908a12cb567d463da +size 1737704064 diff --git a/model-00128-of-00282.safetensors b/model-00128-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5633cd96e8e6e7fc8c1a5fbeede5ee9b4953ee71 --- /dev/null +++ b/model-00128-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc50a035ad58d879860e1f9d3d12254fcba8ee6620445e31d0ef70eca797e3ef +size 1423888408 diff --git a/model-00129-of-00282.safetensors b/model-00129-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d0ac5326578fc2b18335d296f4d5f823c4739b71 --- /dev/null +++ b/model-00129-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af3ec1827c98f8fc8c305b6fcb4874e71d30bcdf2d110e5c15177c87e2d6d963 +size 1423888368 diff --git a/model-00130-of-00282.safetensors b/model-00130-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9e6034f1a37a24033195d47184bba33fe40d92f5 --- /dev/null +++ b/model-00130-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af42c3b69203ae17a7cac1871675c90a054cb6e3d3e5024ee04e13ab7218040f +size 1423887976 diff --git a/model-00131-of-00282.safetensors b/model-00131-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..78e806b3f809759a73783559c59a81485f6508d4 --- /dev/null +++ b/model-00131-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da7f4bd19d8bf3b1ee16e590b2a3afbfda078173a0f798a0ce1eed23697dcea +size 1737704192 diff --git a/model-00132-of-00282.safetensors b/model-00132-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..abf56025bf9a1a2fe58f29470e99ef79e85a197e --- /dev/null +++ b/model-00132-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c307186783085d9ea27341c567cc87f08cd251324333ab731e2fbbf767abaa +size 1423888392 diff --git a/model-00133-of-00282.safetensors b/model-00133-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..63670096c17e3f55f69c457519c320f87a547826 --- /dev/null +++ b/model-00133-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ddfc2d9ad3d9ec1d1a1dba4e5db1a5eba797f44923df4ae3fae8561a538f556 +size 1423888248 diff --git a/model-00134-of-00282.safetensors b/model-00134-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..67db6ee1721c130a9da326f98ad452a2773903bd --- /dev/null +++ b/model-00134-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c432d0919dae37ed4376b16d604dca6f950a9d01d9fb78e60819fcd00a2859 +size 1737703904 diff --git a/model-00135-of-00282.safetensors b/model-00135-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b4b1de7686557259f45fc005025398ed75f870f6 --- /dev/null +++ b/model-00135-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268d2833e89cbc09c2db5444a39c371dfd91ab2052a1731c75ba9e07b80b31cd +size 1423888400 diff --git a/model-00136-of-00282.safetensors b/model-00136-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5fcbd431c5f17f44e1f54245f56d056150591866 --- /dev/null +++ b/model-00136-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7ab93c836312748d72570088b9bfd50cd25ef9594ae109e704fc2c33a924d4 +size 1423888392 diff --git a/model-00137-of-00282.safetensors b/model-00137-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..54327f7db03baabd808f46202c1f625c2a19caed --- /dev/null +++ b/model-00137-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6a0375b19ed833ec11b39d410bbbda0c75130d2185df5b596b095f1ef4ad7b +size 1423888112 diff --git a/model-00138-of-00282.safetensors b/model-00138-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..04e9107637d7ffcbcd8bb46f48410f725aa34ec8 --- /dev/null +++ b/model-00138-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67fe316ec47c64166798212128cb54f0bfd0f8d85d6660d352e3df5d9bc5221a +size 1737704040 diff --git a/model-00139-of-00282.safetensors b/model-00139-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f8525edd531a460ac647e28e03ef9e04c7733853 --- /dev/null +++ b/model-00139-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb181c302a82c966f0bda1c5c8a47e96051d9483fdb1e2635ba47b259aa99e83 +size 1423888400 diff --git a/model-00140-of-00282.safetensors b/model-00140-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e13432e3336980929c02fa2836e54ba80eedffa6 --- /dev/null +++ b/model-00140-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316aae9f6673546fb0305544d28b1262ad31b7f5229433baefb1a776c797393b +size 1423888392 diff --git a/model-00141-of-00282.safetensors b/model-00141-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..54ac2e60e34a79c0858635d945885f97bf82f2c1 --- /dev/null +++ b/model-00141-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095d3fd34fcf9061d2df284f8dc356e31bac43e872764d2c1247a0c50d7d6ce2 +size 1423887976 diff --git a/model-00142-of-00282.safetensors b/model-00142-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7a667d7e2960cbd3bf2c406689004033410f5968 --- /dev/null +++ b/model-00142-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccfc435a5a4f437bc37e0e07b2215e0f0035284d2edbf6e664177a35f816387 +size 1737704176 diff --git a/model-00143-of-00282.safetensors b/model-00143-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6b43c871e625e930df8cad5d58005dd88b805ebc --- /dev/null +++ b/model-00143-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b667ee219cea4de3a5251ffad3e830b73dd8de3571374ce0050c6a4e2bcafcf7 +size 1423888384 diff --git a/model-00144-of-00282.safetensors b/model-00144-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6d12f43384764bacb339bd7435ae5e41a319ad13 --- /dev/null +++ b/model-00144-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30005f8a6063f07f9db57caec942dbecdda4855c7e1902f191b9cca16902a7f +size 1423888272 diff --git a/model-00145-of-00282.safetensors b/model-00145-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..567b3d30888ce113b866bdb30794ae817a76bb75 --- /dev/null +++ b/model-00145-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3b46c5d8e94efef2368078c43053ad92f70e50e7717563152550ead89a185b +size 1737703880 diff --git a/model-00146-of-00282.safetensors b/model-00146-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bfd8aa5f09e710bfe053507d445ca40eda953b57 --- /dev/null +++ b/model-00146-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b20b6efbb5712015f621f778b59fd0bd8ca5a981be5c23612551a77130b460 +size 1423888408 diff --git a/model-00147-of-00282.safetensors b/model-00147-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bad91b4f625c5b112422781f567ae86401f9865a --- /dev/null +++ b/model-00147-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97816eb5265fc468ac14924f7d0c78296496cf49671f73e6f82ecdca4c087426 +size 1423888384 diff --git a/model-00148-of-00282.safetensors b/model-00148-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e266c8098562b62a97bee81914916e9e835b38cc --- /dev/null +++ b/model-00148-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684e71cbc74248505755fe1746cf2221b5f1e1965ab63f401bf038159163113a +size 1423888136 diff --git a/model-00149-of-00282.safetensors b/model-00149-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..73fecafccb48619916db6aa172340828fecf2fe0 --- /dev/null +++ b/model-00149-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8f0ddc92572885888859cd931bfd9973c0962a9410b3021d539ea48dda0b77 +size 1737704016 diff --git a/model-00150-of-00282.safetensors b/model-00150-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fc6534c55887456dd59e2e80bb9deae1c39d354c --- /dev/null +++ b/model-00150-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96007185360fc7852eb8d7b10f9fab535e72a553263bbfb84befcc8929670976 +size 1423888408 diff --git a/model-00151-of-00282.safetensors b/model-00151-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..64f3ec1ef0a03617bdc89f7d7659d2dc64a69424 --- /dev/null +++ b/model-00151-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96caca3d043f73ef971072713e7e16037128238736283f1f3b1e1c7c448e8603 +size 1423888384 diff --git a/model-00152-of-00282.safetensors b/model-00152-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ee987ae57f27414eacaba64c484d4c41c5db3abd --- /dev/null +++ b/model-00152-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa01a3928e70640e49ac7a6eece092a60a3315e7f8f9f4f97fc226d6e3975bc +size 1423888008 diff --git a/model-00153-of-00282.safetensors b/model-00153-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b3ef913237710d805e3820cf78d07375b330a02e --- /dev/null +++ b/model-00153-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3043bb35774665f9c6a24fdefb26c69c78afe90782ee02faec89f8643e2d03d7 +size 1737704144 diff --git a/model-00154-of-00282.safetensors b/model-00154-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b8ca1cfd1fe10201056e6563c8bb78ca61708947 --- /dev/null +++ b/model-00154-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde258ab15442b8dab5b3eec7498cc98073bf7c8fcd3f84b20ed9a4594922d03 +size 1423888392 diff --git a/model-00155-of-00282.safetensors b/model-00155-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a2bbee1ef1f9a75b97c39c10e65ff9885e55a9f0 --- /dev/null +++ b/model-00155-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343f48edb107848f8c632f4812f6a7123b02de633c7abd34af215ef15e0ff4ed +size 1423888288 diff --git a/model-00156-of-00282.safetensors b/model-00156-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d6f68fde34e5dc301e006d588163811381cad996 --- /dev/null +++ b/model-00156-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fbab3a720a1316719dcb806f4df3fad08fc68b7bb4b6e531c79ff7ce593a53 +size 1737703848 diff --git a/model-00157-of-00282.safetensors b/model-00157-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9c44ca2e8d8e18051069e098820514da40cf8617 --- /dev/null +++ b/model-00157-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043308425a6ca6aa8407ab827dc4804bccf5c2795a1c16ca03cfc5947bc8f614 +size 1423887976 diff --git a/model-00158-of-00282.safetensors b/model-00158-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8cb20f83310d37672be4442fb17b3fc2e09f22e9 --- /dev/null +++ b/model-00158-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173be54a19f4085eb11c9a4c0f1241ac755687891480f4629e3d6b5abe2f8f42 +size 1423887968 diff --git a/model-00159-of-00282.safetensors b/model-00159-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bea8d3ccc08a61b89a339b95d727c6d4fc0c74d4 --- /dev/null +++ b/model-00159-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb27d43fe0eb517f1429676487d47a622fa1aaa0528b133755cf277ae521d02d +size 1423887728 diff --git a/model-00160-of-00282.safetensors b/model-00160-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..07654851505fa545e0e4682567e0f8539e429961 --- /dev/null +++ b/model-00160-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacc6dd6de00bba38ee334a0dc333249e3607c25011d53db57396a5b51701ef8 +size 1737703728 diff --git a/model-00161-of-00282.safetensors b/model-00161-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6e2aaad0435247cfb8b1539502cfadf3834b533e --- /dev/null +++ b/model-00161-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84199cf7dd87a70b8e6f6a6ad84a32ea167d304b50c7431ea135ac6873ef457 +size 1423888400 diff --git a/model-00162-of-00282.safetensors b/model-00162-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..919bd71468f6e452770fc6aff19db33951028de4 --- /dev/null +++ b/model-00162-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b113e7615a316ef3fabd37ea7d5969bedb907ea25397ccf3b9293056a61dae9 +size 1423888392 diff --git a/model-00163-of-00282.safetensors b/model-00163-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..845ddc09a4f5fba1257bf20931163f53ea6005d6 --- /dev/null +++ b/model-00163-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5183a09ad0d0dfc4be10d3e4104c25d794b918c899229d16d3f784cead82e74 +size 1423888024 diff --git a/model-00164-of-00282.safetensors b/model-00164-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..49c29de1fe701aff13bc1e01613257ec964c0144 --- /dev/null +++ b/model-00164-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124b46932db66c81c40baa74b13006bd2fb0aa0982931faf53e738b72754469a +size 1737704120 diff --git a/model-00165-of-00282.safetensors b/model-00165-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a0eb6dd21315f73c82f2babf75e38d01ca81b48c --- /dev/null +++ b/model-00165-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4041698747c73b1c4326549fb61466f6a319462d321f0c5df60758473e3afa3c +size 1423888392 diff --git a/model-00166-of-00282.safetensors b/model-00166-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cfedca4e414fdd13cd7019e4072f569d6897a5b2 --- /dev/null +++ b/model-00166-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413c32df21ccba754e58f12c46bb6e4e85c319fdb5a6e37279f271e6fdc6553f +size 1423888320 diff --git a/model-00167-of-00282.safetensors b/model-00167-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2933f5f087c1fc0187a393fab21dbd23999c93f9 --- /dev/null +++ b/model-00167-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77afcbea7ec5ac149035df1239296505f85b593f009edc310ec470c7af59655 +size 1477510064 diff --git a/model-00168-of-00282.safetensors b/model-00168-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d9d5b736f265b6a4c05f9c377335f5afd96dd1f1 --- /dev/null +++ b/model-00168-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e772a87ce51a4a67ee2e0af748c8d7bce01567cc9023d879fde4c9573bf50a1 +size 1637287760 diff --git a/model-00169-of-00282.safetensors b/model-00169-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3cc3b30af69524e8b6aa2b3e1d59b1b56eb09d6f --- /dev/null +++ b/model-00169-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac0b8716bffa5aadbd1bc1bc97ddc8e2af8b9c2778e01f7d4bbc8677aa4b097 +size 1423888384 diff --git a/model-00170-of-00282.safetensors b/model-00170-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7fc6710c0e3ccae2e2e88f2b7c9698ab5a7685e9 --- /dev/null +++ b/model-00170-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1d4da3fac78ad269e2d7c1ea9e1d35287a171b82b39d0266c4da520dfdfa70 +size 1423888200 diff --git a/model-00171-of-00282.safetensors b/model-00171-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ce1c9e2c2d6eea844c3821b6dddec5b43375bc61 --- /dev/null +++ b/model-00171-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606d62a76680d637be5cca50df5d9db924ad682125bab09bbb7dc28c8fcb8ca6 +size 1737703952 diff --git a/model-00172-of-00282.safetensors b/model-00172-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..19f5995ca422e406a81366fee2b0da1fcf67eeb2 --- /dev/null +++ b/model-00172-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fae0dad2a6e731b85886eac60d938b54d1dcda6d0da2f2cd37652a8430b518cd +size 1423888408 diff --git a/model-00173-of-00282.safetensors b/model-00173-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c2ffcde5fcb1d4a67820e810bad249ec812fd338 --- /dev/null +++ b/model-00173-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8417f510a1cfa87df9f89a85181384a79822a5c23b18927aabc047b74c012f05 +size 1423888384 diff --git a/model-00174-of-00282.safetensors b/model-00174-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..98f8a73b1d76f01eeb96989a819a0acd9f3fdb9f --- /dev/null +++ b/model-00174-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a8d65e36a5039556f7a980a282c1261051526c9ce08aaab45819816cfa7b52 +size 1423888064 diff --git a/model-00175-of-00282.safetensors b/model-00175-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e22e474b5d3978552a6aa8d209618e2481b5e377 --- /dev/null +++ b/model-00175-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237889b273ca7a7f4e523c4af54303ad8a047682c6e62f3396345e7bc5ebb1c5 +size 1737704088 diff --git a/model-00176-of-00282.safetensors b/model-00176-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..259952a7ecd6bb56cf73d14a0925da6e9b8e7ea9 --- /dev/null +++ b/model-00176-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2da764c69442f0627c81af22ed57dbeaa6e9dc97cb00fe002a6ff23c1ee4ac +size 1423888408 diff --git a/model-00177-of-00282.safetensors b/model-00177-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cf5066c822ee32fbd8fb4654c3ca9078dd198786 --- /dev/null +++ b/model-00177-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a9666513c9af20e37b9f029f2db805621056c8ac3069aad76eaada6bea7b34 +size 1423888344 diff --git a/model-00178-of-00282.safetensors b/model-00178-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..35f8727e83b1d2b5abd52ffd46aa941fe3c610ec --- /dev/null +++ b/model-00178-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0c5e7d5e688b67d069ccd47b1172fc8d98841a44ef062c5808bbe84af45d91 +size 1423887976 diff --git a/model-00179-of-00282.safetensors b/model-00179-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ed7f9c52697c8b0b07e315b506d661359fcd14da --- /dev/null +++ b/model-00179-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf389aa0a3372a90e1314b64d0e43dd9954221229475b54ddf07af9e7d478650 +size 1737704216 diff --git a/model-00180-of-00282.safetensors b/model-00180-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7018e2d138aa495b8e73860c0425843be5f50de1 --- /dev/null +++ b/model-00180-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4f80d65722f3040712f2b23a005152b93da201ab47460f18496ef20200521e +size 1423888392 diff --git a/model-00181-of-00282.safetensors b/model-00181-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8b57a79b38fc1630ff8f3e6b67002ba508c9cb92 --- /dev/null +++ b/model-00181-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff43657d269a6cf7c956482b14bf0c1dad6595e9e19dc4c0a4baf0e02d7dac4b +size 1423888216 diff --git a/model-00182-of-00282.safetensors b/model-00182-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3633bb8764ebff393923f205e84d6ef12290e45b --- /dev/null +++ b/model-00182-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c7bdb8435f8af2b670035e56bad05ac5d0697fdf94a97ede09a212eeb2f610 +size 1737703928 diff --git a/model-00183-of-00282.safetensors b/model-00183-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d539d400934cbcebd90ae4128b9b59d645cd3672 --- /dev/null +++ b/model-00183-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebab2f9a83c90a5e1a1b136bae430f8cfb31976e478ea9b4b06b5830bd1134c0 +size 1423888408 diff --git a/model-00184-of-00282.safetensors b/model-00184-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..23af7fa0eaa9ca4022e4dcede739fd471c0f4805 --- /dev/null +++ b/model-00184-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aaa2cd1046da5fcb22b5f52afe3a2328d23a8600601ad013f07fca82997f5e3 +size 1423888392 diff --git a/model-00185-of-00282.safetensors b/model-00185-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e6931cd8fb91ab59ac48605f75b55312d6cdf951 --- /dev/null +++ b/model-00185-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e13c166744854d4f6ad29c82812fb520f55dcf4046207e942ac6366d901378e +size 1423888088 diff --git a/model-00186-of-00282.safetensors b/model-00186-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..286f33f809f7f20432726d17debf11ec277c5ecb --- /dev/null +++ b/model-00186-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2a20f1b6f62497aa78376a5a4c4435604fcbf24481eb7bc562f0de59225b3c +size 1737704064 diff --git a/model-00187-of-00282.safetensors b/model-00187-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..63c6c16dd223bab653fccd144ff36438fceb77d3 --- /dev/null +++ b/model-00187-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9677008dac5475048979f62fe6a0e4b2ed30a915d8ed73b737ff8e3526592ea8 +size 1423888408 diff --git a/model-00188-of-00282.safetensors b/model-00188-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6114f66a60a23beb4c73c53604f665d6801435a3 --- /dev/null +++ b/model-00188-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a6d80505e32d96355a078a515d330493d3e852a694f9e14917028dc902a202 +size 1423888368 diff --git a/model-00189-of-00282.safetensors b/model-00189-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1cca621d19bdd22e7fc9d4bad265a0c528d79c52 --- /dev/null +++ b/model-00189-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af45a511a6f57a35763585765f53745028eec8bdf617bb5c1fc2ab290d8fb14 +size 1423887976 diff --git a/model-00190-of-00282.safetensors b/model-00190-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2cf0a67ad1638238a217b4be6b450f4ce6710147 --- /dev/null +++ b/model-00190-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8113469ca2fe56420782d1d0a47e70147af5260ad83d2f78a60af32ebac59e5 +size 1737704192 diff --git a/model-00191-of-00282.safetensors b/model-00191-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4833f705995258084b5a13af9fcf9de71a18af36 --- /dev/null +++ b/model-00191-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5b0730cf4d508e4f8c4cf485cf1a2d10572a896542516416434affd88b4889 +size 1423888392 diff --git a/model-00192-of-00282.safetensors b/model-00192-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..700cb1f4d1c82ab12629d66d17bd2a630182f018 --- /dev/null +++ b/model-00192-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332d8bd9a3b88baba9cea030ed5ed4b9002b5e5621ab125ec37dcc31dcf4797f +size 1423888248 diff --git a/model-00193-of-00282.safetensors b/model-00193-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1dbd4bbb567ba3242eb500311b05bf309426912c --- /dev/null +++ b/model-00193-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7861b0587ab91152dc66bf4b80c4ea77ab6944252625e07166997b14f6d3c665 +size 1737703904 diff --git a/model-00194-of-00282.safetensors b/model-00194-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ebba29287efc3b9381db5bb5560e8965f5e10156 --- /dev/null +++ b/model-00194-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0353f2d150200d7888701c83b4d04024024e3f5bb9576b5ed3fcfb24f7ea13f +size 1423888400 diff --git a/model-00195-of-00282.safetensors b/model-00195-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b0060da41996129d5109eab7d8a1cc0c2dff4df5 --- /dev/null +++ b/model-00195-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b2ac137238a6d6e7952f9beaec9b7776ee770413fe1ff50e5137ae1d52af57 +size 1423888392 diff --git a/model-00196-of-00282.safetensors b/model-00196-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b67e57d3f8e186bec59c825e83c0f4514a58cf9b --- /dev/null +++ b/model-00196-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41fcd6f24cd9ebee86569fdf26b870309a3f93798809bd313bc79beb782aaa40 +size 1423888112 diff --git a/model-00197-of-00282.safetensors b/model-00197-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7745465112cf7e9efa392afd8b460628a9a6b496 --- /dev/null +++ b/model-00197-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf55742fd22043c2eb77fcc2aa25149677cd83f764d63da115c82d6e4b74847a +size 1737703848 diff --git a/model-00198-of-00282.safetensors b/model-00198-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..21b66482a7360e099cb7935e8605d38b754be330 --- /dev/null +++ b/model-00198-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f5bbb88c8ed59b1d692109552e3d6805d4efa5eb55502a88313a72d11dabb8 +size 1423887976 diff --git a/model-00199-of-00282.safetensors b/model-00199-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..af8ac9e2879ce2a9e5aeb1c94c11eab5add9a351 --- /dev/null +++ b/model-00199-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea44ff0ff9f2d037edb7de5a9931b4a18ff57ff42f14819c60bc8aca1e73e63 +size 1423887968 diff --git a/model-00200-of-00282.safetensors b/model-00200-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..af89cfe174a2d21ce621baead508a00f2e17d2bc --- /dev/null +++ b/model-00200-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bc1911834c83b8b696c9f6ff47b8810ddf4d9dbc34c0e8739a4bb4871a2964 +size 1423887552 diff --git a/model-00201-of-00282.safetensors b/model-00201-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..97720b7605fa07045750f8794d650aa6ba897e38 --- /dev/null +++ b/model-00201-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8711041baccff9eb693c84609f28e2db9bb3867d9d8d914166237566fdb880d9 +size 1737704096 diff --git a/model-00202-of-00282.safetensors b/model-00202-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a554906e89c5c36e7b94dc5e025a2f39636a9225 --- /dev/null +++ b/model-00202-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfee6218915dd241a2244f8628eccee2b4f8fe20d58ff51102c271b64b53640 +size 1423888384 diff --git a/model-00203-of-00282.safetensors b/model-00203-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d6e29d56f33541d0ae92a5c883705d2a63ba280a --- /dev/null +++ b/model-00203-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d6b8f169dde4b2460cdae76e9a0814f010ac78ce8495bd0dc46350cd7eafb7 +size 1423888272 diff --git a/model-00204-of-00282.safetensors b/model-00204-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d8b19baa36fdccc4becef100bf8cb767c3c87e19 --- /dev/null +++ b/model-00204-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef61dbb8fcdd1de6d032daeb5bf29039b7e0faf551cba637053e76a68360fd1 +size 1737703880 diff --git a/model-00205-of-00282.safetensors b/model-00205-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..09bee2e77c294422f073e5cfb2b6d5c18c431978 --- /dev/null +++ b/model-00205-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:590f428f6dc3c5b756c035a84463fde6aaffcae8755fc62e45746fb72c990e78 +size 1423888408 diff --git a/model-00206-of-00282.safetensors b/model-00206-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a07265be3aabd6fd831466c0924af5bc37082170 --- /dev/null +++ b/model-00206-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632cc15580a1b3f7fe87abef98c3952544fd0d0966d0e6b377e497109fb007e5 +size 1423888384 diff --git a/model-00207-of-00282.safetensors b/model-00207-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3544bb9642a59daaa0520d6a4155e12f4fa4895a --- /dev/null +++ b/model-00207-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a510ce79219211d6e96fd420b45e9abac1ca234b0666085536262db17f7cc194 +size 1423888136 diff --git a/model-00208-of-00282.safetensors b/model-00208-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..141f7c34d4c20bc1b68618b0767bc958cecafbc8 --- /dev/null +++ b/model-00208-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769971441e33840181d0b93575ef17f68d8bd39314dd7e16b93d406738022ef7 +size 1737704016 diff --git a/model-00209-of-00282.safetensors b/model-00209-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7f9de933581d50fdd5cc3b02ee9ada707dbf7b5d --- /dev/null +++ b/model-00209-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad790409fd5aab1252f4002415fe826add31db2de1032014f0a9a1c3dafc21dd +size 1423888408 diff --git a/model-00210-of-00282.safetensors b/model-00210-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..21c34a4644cd8783ce202ee800146ba68cf4f634 --- /dev/null +++ b/model-00210-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6365e85663844ebef0a774869df4f1fca4ff06e04cca74e9e33542d2e9be639e +size 1423888384 diff --git a/model-00211-of-00282.safetensors b/model-00211-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..280bb46ab20f2e97819004616e471d075f7799af --- /dev/null +++ b/model-00211-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317356086097646a03f80907c698ada03199909ff995f69d786ef8f45806b105 +size 1423888008 diff --git a/model-00212-of-00282.safetensors b/model-00212-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..caa045eb9fe69d128b6db3c3653ebbb96dcaf32a --- /dev/null +++ b/model-00212-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86e1537c4df630d66123a5659fa4dc4c25022c9dff77eb9c223c84c3a4043d0 +size 1737704144 diff --git a/model-00213-of-00282.safetensors b/model-00213-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..26730793fd0bbebc021ac31af18d48ae69dafa24 --- /dev/null +++ b/model-00213-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bec2d70e77eb301df107a5f55d00a9efebf56ed79b10d51bd0145ff7fa61283 +size 1423888392 diff --git a/model-00214-of-00282.safetensors b/model-00214-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..eb5364fed629d4a46be4dbab4fdbef290f2cd429 --- /dev/null +++ b/model-00214-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b3b964cc3cfd8ab4f5b94c2bd4f5aa0e3c5550f4c582877adeec55b855dd4c +size 1423888288 diff --git a/model-00215-of-00282.safetensors b/model-00215-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cd9e8a613d189b9aa59736fba04bcda8f82accb4 --- /dev/null +++ b/model-00215-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e83f3b5923696b547741c5e622506a63c575a430f1f0a38ef41e50d904e5241 +size 1737703864 diff --git a/model-00216-of-00282.safetensors b/model-00216-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..996e38991bdc7e7d8e8e83cd99c1ad588230b721 --- /dev/null +++ b/model-00216-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79fcdcf505875cec4dd2f290e284ee812a29441875cc904b63041bdd6c3b3fdb +size 1423888400 diff --git a/model-00217-of-00282.safetensors b/model-00217-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e3daf8999c15562df6e7774f905e6ed47955de09 --- /dev/null +++ b/model-00217-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763233bd7ce7f1e3adbcb1d7c80ab1096fd390fba028bc41f4a936cbaa3d704d +size 1423888392 diff --git a/model-00218-of-00282.safetensors b/model-00218-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f65509a07e717fcb224711f8a2d60fe3253dba74 --- /dev/null +++ b/model-00218-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43d1570f44d9a803fe748e99b37b1457eebaf1449122aead342fe1954f13d10 +size 1423888160 diff --git a/model-00219-of-00282.safetensors b/model-00219-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0927513b4668c944d999559e8fb4a4dc97f532a5 --- /dev/null +++ b/model-00219-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038aa75af818a8e69141e1bdac62e81916f7235ec84192c18aa99837b00d661e +size 1737703992 diff --git a/model-00220-of-00282.safetensors b/model-00220-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a47705732710bba65af17e252f697b81e369abf2 --- /dev/null +++ b/model-00220-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbbb1d75647b973b523ca2f996696f84a8053cc6ecdbf9eb20db12b03de5c6d4 +size 1423888400 diff --git a/model-00221-of-00282.safetensors b/model-00221-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..67017be491efae1486429043a3bb5bb22b89ab8c --- /dev/null +++ b/model-00221-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095d2864015583e382bde4d4c4e47ac9cf6a4df9c657ce414025e6368928fb44 +size 1423888392 diff --git a/model-00222-of-00282.safetensors b/model-00222-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a637320ac558967cc3a2111474ed13bf4c49eaae --- /dev/null +++ b/model-00222-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58b31ba9b35601c681e524238483cb9d76c8a0385edc392e427973d4821915e +size 1423888024 diff --git a/model-00223-of-00282.safetensors b/model-00223-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..33edd4b0019d6a9b884d4a900c7d08923990b72d --- /dev/null +++ b/model-00223-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41249c8e7c757662ad83d71eb1301c5a1e6fbb26846951348ec0d8aecc325051 +size 1737704120 diff --git a/model-00224-of-00282.safetensors b/model-00224-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ad550aff1041d1406ae20cdd037d60ef3a191b15 --- /dev/null +++ b/model-00224-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3aa38d0f17374c9f3ac23c644ed17ab27da435b2e39defa6763248991e1f02 +size 1423888392 diff --git a/model-00225-of-00282.safetensors b/model-00225-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d2f65874dd92e4a9261c9142b0401bb67ee59538 --- /dev/null +++ b/model-00225-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734e9add181b5beb36268da01039e5dc38fd7093b9c3806ba9c552a477c9fe88 +size 1423888320 diff --git a/model-00226-of-00282.safetensors b/model-00226-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a9203756fc17c3b55a5b7dfc82028ea13798a824 --- /dev/null +++ b/model-00226-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:989691fb5406527d0ac1ca4a7361e3b872a5cb222fc1249958523698fc7e1dd4 +size 1477510064 diff --git a/model-00227-of-00282.safetensors b/model-00227-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c8ab187c2e0ce04829a22a76bedebfc97e629fed --- /dev/null +++ b/model-00227-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e96fc6d761ecc8e8ae4bf58fbdb569b00c8a4e83d7c31debc9c6dc5598bc2b +size 1637287760 diff --git a/model-00228-of-00282.safetensors b/model-00228-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2e7ec950fb443e2fd0089ad33cca343679751cf4 --- /dev/null +++ b/model-00228-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89965bf34908fc0c46acb19089012ca84b1d7ec2b4064d1ae204d549163d027 +size 1423888384 diff --git a/model-00229-of-00282.safetensors b/model-00229-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..73f701070e7a37c45081ddbe9623c6a9846c1260 --- /dev/null +++ b/model-00229-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934d68f9350d46e8168561648880cc756684d47dc7d9f781f8d4c3d5d422f75c +size 1423888200 diff --git a/model-00230-of-00282.safetensors b/model-00230-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..941dcb71a4e5669ea71027068720266bf286c90e --- /dev/null +++ b/model-00230-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e56ef5cd04852c362b6828167fa9b5f543628f54dfc74180985f33a659f833b +size 1737703952 diff --git a/model-00231-of-00282.safetensors b/model-00231-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ca5853397f94efacd6d6a8905823ec705e5fff5d --- /dev/null +++ b/model-00231-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbc19b71e82da881f045530155edd115053ed7fe09f25a98c146da3016c0403 +size 1423888408 diff --git a/model-00232-of-00282.safetensors b/model-00232-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3e3c6473d924d44d0202921c70af77187029fed9 --- /dev/null +++ b/model-00232-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcdc8ef03a4cc7b39301234dfcccb7f4588cd6b0cb5a76ab9254c842bca1366 +size 1423888384 diff --git a/model-00233-of-00282.safetensors b/model-00233-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9a112bb6812048e4506f9ffcebbe80bd14405130 --- /dev/null +++ b/model-00233-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8435db478ecd34ab43e8c46284cda42f40d31ca1ca4d70f08df89ab71f3b4d5f +size 1423888064 diff --git a/model-00234-of-00282.safetensors b/model-00234-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..31a4d88d0210a34fa2edb66cdb9ba3d3e38192e2 --- /dev/null +++ b/model-00234-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a98e9415cae0d58d5976b2b884943bff5645b096ddac322cbfdd2943df0078 +size 1737704088 diff --git a/model-00235-of-00282.safetensors b/model-00235-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..41938fef4760a6508ca65ae09a211e00b0c42000 --- /dev/null +++ b/model-00235-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1f32f82ede2c362bbbf39b4a72d6ff2ed5ea93efd4ea57a35312f7b73ee93a +size 1423888408 diff --git a/model-00236-of-00282.safetensors b/model-00236-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3d4f033b4f1bfa9e1b3952878517755eb3b52405 --- /dev/null +++ b/model-00236-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c5581b994f8ca517c388d8fc287e9fbf72e183f693d28943adb09312f4ac44 +size 1423888344 diff --git a/model-00237-of-00282.safetensors b/model-00237-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..dbc76a57074bba1deadd54372518a15efcc4a0fd --- /dev/null +++ b/model-00237-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923c4935d1d4c967890e120dc608009763df9ce3e22522fb6c44d07734aafa47 +size 1423887976 diff --git a/model-00238-of-00282.safetensors b/model-00238-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..17d57a03407e033a59ab43f1e3d906f9be1752de --- /dev/null +++ b/model-00238-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8bebcf670473ec81139f486383a7c455a9cf85a936c24ce3e3780ca99003710 +size 1737703840 diff --git a/model-00239-of-00282.safetensors b/model-00239-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f3d428f8f6b8e03b2f2c7b502891385317f5b8f3 --- /dev/null +++ b/model-00239-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a505b8c30b2ce6cf6515556dbc4c1de8be7349c17c6d50d6a16c39e8bc84d3b +size 1423887968 diff --git a/model-00240-of-00282.safetensors b/model-00240-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..46087943a5178ba471277a39d7ab25753a5292c5 --- /dev/null +++ b/model-00240-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b97d9f8ae82eb9cfbe83cbb2a1179d4fc319fb9348a5fbc93d88a6aaa75b53e4 +size 1423887792 diff --git a/model-00241-of-00282.safetensors b/model-00241-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a36166cfb64194e4a78cab76aff24f9f31afedd9 --- /dev/null +++ b/model-00241-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49496101fb76ebe180afd8da6e7a0f0f99e711248e2422c728255a5084011aa +size 1737703608 diff --git a/model-00242-of-00282.safetensors b/model-00242-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ea51159e49f36e3aebc609dcb604fb541b056a19 --- /dev/null +++ b/model-00242-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4030f69acf81576b71308410ec1ddb770f2b6fe9dc5668f0aced198d8c1288 +size 1423888408 diff --git a/model-00243-of-00282.safetensors b/model-00243-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3d2734cf47610bd644a97586908b9078f81af7f5 --- /dev/null +++ b/model-00243-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93fb504bcdbb85229260999aba3633341ecc171a7550f836de70648dd06d4516 +size 1423888392 diff --git a/model-00244-of-00282.safetensors b/model-00244-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d46eb50f42e78fd6eb63fa2ebeccde5a74c8bb69 --- /dev/null +++ b/model-00244-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51962fad4e1a3048325deb0e8272480d839d665be1f976dbe6d17c3698719aa +size 1423888088 diff --git a/model-00245-of-00282.safetensors b/model-00245-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d072012107d3f59581e29545dc348639125cc673 --- /dev/null +++ b/model-00245-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235c12b0ef8d254d053fb7383e947c81cda873dce793b8edf74e09b68745eeb4 +size 1737704064 diff --git a/model-00246-of-00282.safetensors b/model-00246-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cae0aa662c4b53afd5a064008ec26805e7c4b637 --- /dev/null +++ b/model-00246-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815b8f11898027485c66201e6a448599c4ff17b431f04879390a7a93fa8ad0d0 +size 1423888408 diff --git a/model-00247-of-00282.safetensors b/model-00247-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..46ca922cb73b0d58cb51971b32e2131861f482ca --- /dev/null +++ b/model-00247-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a211510f2dfdbc511949949364636bd0b869223ad4fa82ba728e6adda3811239 +size 1423888368 diff --git a/model-00248-of-00282.safetensors b/model-00248-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..80d797c639123de03a569409f6929ac60f34d62c --- /dev/null +++ b/model-00248-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be6a5e9e96244ff615c8fa3107b612531aaf47896cab4133cb5e9255c20afc37 +size 1423887976 diff --git a/model-00249-of-00282.safetensors b/model-00249-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b43a13d18967bf0493903253483023d7b7bf18b0 --- /dev/null +++ b/model-00249-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e5ed5fac6deacd789efd0f9fa7beb3881638ac9b0e35da557a435b43ad3ffb +size 1737704192 diff --git a/model-00250-of-00282.safetensors b/model-00250-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e519b2f17cc107c049b4734de294d3c154a472bf --- /dev/null +++ b/model-00250-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8787c136beb11a772eca71ac11e3517290cad5b6915095f2f61f286a7664c877 +size 1423888392 diff --git a/model-00251-of-00282.safetensors b/model-00251-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f40b10282fe7d506d025476afcf7b37abbef589a --- /dev/null +++ b/model-00251-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082a898a07e45876763b746c363c065ca5779addeb37be219d70d4e1554c2451 +size 1423888248 diff --git a/model-00252-of-00282.safetensors b/model-00252-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c439b3b0639a7940459fa8ca3410adb1cedf257a --- /dev/null +++ b/model-00252-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a9931595a37db941b3b6bb3328f2738ec67324eaae8f0092776e02479e3c79 +size 1737703904 diff --git a/model-00253-of-00282.safetensors b/model-00253-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4a0a1bd5bc2bc5fc89251390d8d6c3c1f8c97a8f --- /dev/null +++ b/model-00253-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca2d0719ed1db304e8fb0bde82ba0a52023ef39981eaf86eb4e4f87e554ded9 +size 1423888400 diff --git a/model-00254-of-00282.safetensors b/model-00254-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4c7b4d286a194e0296ef8749c696a466846fcbe6 --- /dev/null +++ b/model-00254-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b4c99d80b24a409e4e5530f398abe87088f40598fe8d92576f9047a3a44ba5 +size 1423888392 diff --git a/model-00255-of-00282.safetensors b/model-00255-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e68cd5dbfaec640ca55a35e8c37b3e656df95463 --- /dev/null +++ b/model-00255-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5f54f32edb927ccc9c74f8748f75029f0abb79cb02b1d4ea63023d4b12ed36 +size 1423888112 diff --git a/model-00256-of-00282.safetensors b/model-00256-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b44acb0e2b1bc3813b1bad659375f52931bb491d --- /dev/null +++ b/model-00256-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bd0da7e301c9f12fc1a42171d4553631d2510888f485211219d51fbeaac1ca +size 1737704040 diff --git a/model-00257-of-00282.safetensors b/model-00257-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..00d44bbf2a3f83aada8cdda8b58ee144c6d3dd43 --- /dev/null +++ b/model-00257-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a74a05df6371aa2dcaad351e6927965a35d8672227f834ccc934c1b7bce8652 +size 1423888400 diff --git a/model-00258-of-00282.safetensors b/model-00258-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..15e1961c84f9c2118617036f11c0d2080cff7b1a --- /dev/null +++ b/model-00258-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146f96610cdefdc2479e3e91c231d6bba5508e2040596e7d9f233a01e570bf42 +size 1423888392 diff --git a/model-00259-of-00282.safetensors b/model-00259-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6e4be276af8b70b74df1d23764e3466f41849674 --- /dev/null +++ b/model-00259-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81c25f31515dd84e9ae55c491225335275d63ec6e93e30d24a952dc16d95b05 +size 1423887976 diff --git a/model-00260-of-00282.safetensors b/model-00260-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a91f36c1eaab32ddd5e8e4d06f55233c6ee300b9 --- /dev/null +++ b/model-00260-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16acfaef1acd44483a3e3fb2296e1bb30eb1a4ec6410d854c4f296023b9af474 +size 1737704176 diff --git a/model-00261-of-00282.safetensors b/model-00261-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1156e7615aa9b6d895bef6eb3d4e4fbce73f61c0 --- /dev/null +++ b/model-00261-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1194a6d2e555d4bea751deb4c98d62c0b44f68fcafd5582926a473b95ad936 +size 1423888384 diff --git a/model-00262-of-00282.safetensors b/model-00262-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f7edf25e95bee5b38b47dadf1762ed39cc56d3d5 --- /dev/null +++ b/model-00262-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99412d16eecdb68f318008bef592d65c91b492d67893035210efe79dd6b07c60 +size 1423888272 diff --git a/model-00263-of-00282.safetensors b/model-00263-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..57159c2c6428aefdb4bef284d711becd612abdcc --- /dev/null +++ b/model-00263-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d90992920503a6f8049d14a6025d12fd1cd71f6cebe76a444361c4258ce5a80 +size 1737703880 diff --git a/model-00264-of-00282.safetensors b/model-00264-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0424f4ed97a9bc37bb141385f0bba050bda5e421 --- /dev/null +++ b/model-00264-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00eec3feb02897986c6967ef8916915d2561e6d3829dae974db7702ed1782e1 +size 1423888408 diff --git a/model-00265-of-00282.safetensors b/model-00265-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9a604cc75a4643540a1fb17a9510e986a305f480 --- /dev/null +++ b/model-00265-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c8de9ba14ba4f273f3c8b5767e9bfdc36d1e70f95bd81b6dbfddaa25b5f473 +size 1423888384 diff --git a/model-00266-of-00282.safetensors b/model-00266-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..80673ea92867dbc636503085d7b9ab4000c1c634 --- /dev/null +++ b/model-00266-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f390d82439293df2001b3a8d0f10f16fd157c4f64274a1e5d0c6d9d429c74f3f +size 1423888136 diff --git a/model-00267-of-00282.safetensors b/model-00267-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e2b3d407b534d8dc48904eaf435ab30c8f25b70b --- /dev/null +++ b/model-00267-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22cd09a1a5e02f813f6979cb8682238ad8368364ff8a15231187e2c495a4bcef +size 1737704016 diff --git a/model-00268-of-00282.safetensors b/model-00268-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..63f4552507fe958930abdd5225358e53db46b2d0 --- /dev/null +++ b/model-00268-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3148fa883bddcb3d2eee02256a59c10c1d58e89e3996718101f273e9e076a78 +size 1423888408 diff --git a/model-00269-of-00282.safetensors b/model-00269-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..36c058f20c3d20a3c6a2824aea5480e4d2166dba --- /dev/null +++ b/model-00269-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bc70b7ca58dc9a872ac578bec7db4e50a5a56c688d584fffce231d19c92a6c +size 1423888384 diff --git a/model-00270-of-00282.safetensors b/model-00270-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7d7e46d1a513a2afcefaa47f2bfda3c886152b5c --- /dev/null +++ b/model-00270-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f3ca79694f134fdcc3fdc58430487a48dcc44dd8262b9e07112599a4bdce5a +size 1423888008 diff --git a/model-00271-of-00282.safetensors b/model-00271-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..dd9ff99f986798f7433c9ebf8b02fc701d94adfb --- /dev/null +++ b/model-00271-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8f6a9567c277d8f887b3a8caeb11de73e1d1229f5112cb71d18ffdaff3b914 +size 1737727640 diff --git a/model-00272-of-00282.safetensors b/model-00272-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0681a75e87ab99c533c681b96d3f608505750bf3 --- /dev/null +++ b/model-00272-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc579972f8e9327690c0c09538ff0c1191a1372a454a0b5b18741dff5d7efa9f +size 1423888392 diff --git a/model-00273-of-00282.safetensors b/model-00273-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cbd918a5f401a438b9680fafc64c3bcc42e82ddd --- /dev/null +++ b/model-00273-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc98fd9b013a71b482c751dc3f2e67a2405de7fb9dec783846ea8d50f830add9 +size 1423888304 diff --git a/model-00274-of-00282.safetensors b/model-00274-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b76e9f95adbb2c78ced076ba2d3818da54b53e6c --- /dev/null +++ b/model-00274-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cec482b19959b5d25ff66584241e48ed95a2db05d83326859240f8936ae6411 +size 1737716264 diff --git a/model-00275-of-00282.safetensors b/model-00275-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..409ce930577727c3410d16c2cd20267ee9b77800 --- /dev/null +++ b/model-00275-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114a5e0113e118b6f7ef48e403a475468df90f31158f1a84beb0f3b525e4c5ff +size 1423887952 diff --git a/model-00276-of-00282.safetensors b/model-00276-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..221de97fc72d85a6e896674585cff8c8505ac92f --- /dev/null +++ b/model-00276-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953bb405cc2c7b25050c1c201f36cdb1be6be6e0d34a78d7f8cb11b31204a1a6 +size 1423887968 diff --git a/model-00277-of-00282.safetensors b/model-00277-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1a6a0d8c11f1111a8b02bd73d4eb63882c2cf7a4 --- /dev/null +++ b/model-00277-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e67a5ea2ca7d7a723c2d9e0cecf8014d098b9491bd08dbfdaff47e3f71730b3 +size 1423887744 diff --git a/model-00278-of-00282.safetensors b/model-00278-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e632bbdc7bcbd2af364a5b6c8e8f98e81da0662c --- /dev/null +++ b/model-00278-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e961b1265b1c3e6ef5876c20dd94e4b6e417c983401c1de12f5628cb615e733 +size 1737703576 diff --git a/model-00279-of-00282.safetensors b/model-00279-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bbcc3f00b369224d87e7e533a1d03bca1ba9b8d1 --- /dev/null +++ b/model-00279-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ed86ac5ac1755c90dd6667909141854fee7ad95d19852ee7736911191ab4a6 +size 1423887976 diff --git a/model-00280-of-00282.safetensors b/model-00280-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..56104d069011aa28e4b7784f4265dacc344d4ba8 --- /dev/null +++ b/model-00280-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b64a7dc6e9719fb726a66969bf5afaa27e43d45be6e6801bdd5f9ad47bd92a +size 1423887968 diff --git a/model-00281-of-00282.safetensors b/model-00281-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5fe7c7ce1bdbf4cbbf3ddc431a9f9038bf2482d1 --- /dev/null +++ b/model-00281-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42603c32240f5770681d3758fff02ba776c0d4f35d2c8214b1d4c1d4dbc49094 +size 1423887608 diff --git a/model-00282-of-00282.safetensors b/model-00282-of-00282.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fb09f71b3d5b6323fdad36503cd1ebf95d795194 --- /dev/null +++ b/model-00282-of-00282.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdef8b99250040d8e1c49a1abdd92894bd7c3c0f3eeb1acc0bd801c2d12a2a14 +size 835239176 diff --git a/model.safetensors.index.json b/model.safetensors.index.json new file mode 100644 index 0000000000000000000000000000000000000000..0c279a1a30804ed7854b6592c4ad50669f8279fe --- /dev/null +++ b/model.safetensors.index.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e654e2aae2788ac2965375d9bf0c880de0b463e459f7847a6f9e2bca13f6c3 +size 11557566 diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..aba40197a4cdb5607f4ab7a05fb0a4ee8054fd6d --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e773648cb4e65de8660ea6365e10acca112d42a854923df93db4a6f333a82d +size 20217442 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1723f7d90e3fb497303ec7b18f88cf5d05928f37 --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,33 @@ +{ + "backend": "tokenizers", + "clean_up_tokenization_spaces": false, + "do_lower_case": false, + "eos_token": "<|endoftext|>", + "extra_special_tokens": [ + "<|endoftext|>", + "[MASK]", + "[gMASK]", + "[sMASK]", + "", + "", + "<|system|>", + "<|user|>", + "<|assistant|>", + "<|observation|>", + "<|begin_of_image|>", + "<|end_of_image|>", + "<|begin_of_video|>", + "<|end_of_video|>", + "<|begin_of_audio|>", + "<|end_of_audio|>", + "<|begin_of_transcription|>", + "<|end_of_transcription|>" + ], + "is_local": true, + "model_max_length": 202752, + "model_specific_special_tokens": {}, + "pad_token": "<|endoftext|>", + "padding_side": "left", + "remove_space": false, + "tokenizer_class": "TokenizersBackend" +}