mirror of
https://huggingface.co/deepseek-ai/DeepSeek-V3.2-Exp
synced 2025-12-16 22:43:15 +08:00
Add files using upload-large-folder tool
This commit is contained in:
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 DeepSeek
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
90
assets/chat_template.jinja
Normal file
90
assets/chat_template.jinja
Normal file
@@ -0,0 +1,90 @@
|
||||
{% if not add_generation_prompt is defined %}
|
||||
{% set add_generation_prompt = false %}
|
||||
{% endif %}
|
||||
{% if not thinking is defined %}
|
||||
{% set thinking = false %}
|
||||
{% endif %}
|
||||
{% set ns = namespace(is_first=false, is_tool=false, system_prompt='', is_first_sp=true, is_last_user=false, is_only_sys=false, is_prefix=false) %}
|
||||
{%- for message in messages %}
|
||||
{%- if message['role'] == 'system' %}
|
||||
{%- if ns.is_first_sp %}
|
||||
{% set ns.system_prompt = ns.system_prompt + message['content'] %}
|
||||
{% set ns.is_first_sp = false %}
|
||||
{%- else %}
|
||||
{% set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}
|
||||
{%- endif %}
|
||||
{% set ns.is_only_sys = true %}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
{{ bos_token }}{{ ns.system_prompt }}
|
||||
{%- for message in messages %}
|
||||
{%- if message['role'] == 'user' %}
|
||||
{%- set ns.is_tool = false -%}
|
||||
{%- set ns.is_first = false -%}
|
||||
{%- set ns.is_last_user = true -%}
|
||||
{{'<|User|>' + message['content']}}
|
||||
{%- endif %}
|
||||
{%- if message['role'] == 'assistant' and message['tool_calls'] is defined and message['tool_calls'] is not none %}
|
||||
{%- if ns.is_last_user or ns.is_only_sys %}
|
||||
{{'<|Assistant|></think>'}}
|
||||
{%- endif %}
|
||||
{%- set ns.is_last_user = false -%}
|
||||
{%- set ns.is_first = false %}
|
||||
{%- set ns.is_tool = false -%}
|
||||
{%- for tool in message['tool_calls'] %}
|
||||
{%- if not ns.is_first %}
|
||||
{%- if message['content'] is none %}
|
||||
{{'<|tool▁calls▁begin|><|tool▁call▁begin|>'+ tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}
|
||||
{%- else %}
|
||||
{{message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}
|
||||
{%- endif %}
|
||||
{%- set ns.is_first = true -%}
|
||||
{%- else %}
|
||||
{{'<|tool▁call▁begin|>'+ tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}
|
||||
{%- endif %}
|
||||
{%- if message['role'] == 'assistant' and (message['tool_calls'] is not defined or message['tool_calls'] is none) %}
|
||||
{%- if ns.is_last_user %}
|
||||
{{'<|Assistant|>'}}
|
||||
{%- if message['prefix'] is defined and message['prefix'] and thinking %}
|
||||
{{'<think>'}}
|
||||
{%- else %}
|
||||
{{'</think>'}}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if message['prefix'] is defined and message['prefix'] %}
|
||||
{%- set ns.is_prefix = true -%}
|
||||
{%- endif %}
|
||||
{%- set ns.is_last_user = false -%}
|
||||
{%- if ns.is_tool %}
|
||||
{{message['content'] + '<|end▁of▁sentence|>'}}
|
||||
{%- set ns.is_tool = false -%}
|
||||
{%- else %}
|
||||
{%- set content = message['content'] -%}
|
||||
{%- if '</think>' in content %}
|
||||
{%- set content = content.split('</think>', 1)[1] -%}
|
||||
{%- endif %}
|
||||
{{content + '<|end▁of▁sentence|>'}}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if message['role'] == 'tool' %}
|
||||
{%- set ns.is_last_user = false -%}
|
||||
{%- set ns.is_tool = true -%}
|
||||
{{'<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}
|
||||
{%- endif %}
|
||||
{%- if message['role'] != 'system' %}
|
||||
{% set ns.is_only_sys = false %}
|
||||
{%- endif %}
|
||||
{%- endfor -%}
|
||||
{% if add_generation_prompt and not ns.is_tool%}
|
||||
{% if ns.is_last_user or ns.is_only_sys or not ns.is_prefix %}
|
||||
{{'<|Assistant|>'}}
|
||||
{%- if not thinking %}
|
||||
{{'</think>'}}
|
||||
{%- else %}
|
||||
{{'<think>'}}
|
||||
{%- endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
66
config.json
Normal file
66
config.json
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"architectures": [
|
||||
"DeepseekV32ForCausalLM"
|
||||
],
|
||||
"attention_bias": false,
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": 0,
|
||||
"eos_token_id": 1,
|
||||
"ep_size": 1,
|
||||
"first_k_dense_replace": 3,
|
||||
"hidden_act": "silu",
|
||||
"hidden_size": 7168,
|
||||
"index_head_dim": 128,
|
||||
"index_n_heads": 64,
|
||||
"index_topk": 2048,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 18432,
|
||||
"kv_lora_rank": 512,
|
||||
"max_position_embeddings": 163840,
|
||||
"model_type": "deepseek_v32",
|
||||
"moe_intermediate_size": 2048,
|
||||
"moe_layer_freq": 1,
|
||||
"n_group": 8,
|
||||
"n_routed_experts": 256,
|
||||
"n_shared_experts": 1,
|
||||
"norm_topk_prob": true,
|
||||
"num_attention_heads": 128,
|
||||
"num_experts_per_tok": 8,
|
||||
"num_hidden_layers": 61,
|
||||
"num_key_value_heads": 128,
|
||||
"num_nextn_predict_layers": 1,
|
||||
"q_lora_rank": 1536,
|
||||
"qk_nope_head_dim": 128,
|
||||
"qk_rope_head_dim": 64,
|
||||
"quantization_config": {
|
||||
"activation_scheme": "dynamic",
|
||||
"fmt": "e4m3",
|
||||
"quant_method": "fp8",
|
||||
"scale_fmt": "ue8m0",
|
||||
"weight_block_size": [
|
||||
128,
|
||||
128
|
||||
]
|
||||
},
|
||||
"rms_norm_eps": 1e-06,
|
||||
"rope_scaling": {
|
||||
"beta_fast": 32,
|
||||
"beta_slow": 1,
|
||||
"factor": 40,
|
||||
"mscale": 1.0,
|
||||
"mscale_all_dim": 1.0,
|
||||
"original_max_position_embeddings": 4096,
|
||||
"type": "yarn"
|
||||
},
|
||||
"rope_theta": 10000,
|
||||
"routed_scaling_factor": 2.5,
|
||||
"scoring_func": "sigmoid",
|
||||
"tie_word_embeddings": false,
|
||||
"topk_group": 4,
|
||||
"topk_method": "noaux_tc",
|
||||
"torch_dtype": "bfloat16",
|
||||
"transformers_version": "4.44.2",
|
||||
"use_cache": true,
|
||||
"v_head_dim": 128,
|
||||
"vocab_size": 129280
|
||||
}
|
||||
9
generation_config.json
Normal file
9
generation_config.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"_from_model_config": true,
|
||||
"bos_token_id": 0,
|
||||
"eos_token_id": 1,
|
||||
"do_sample": true,
|
||||
"temperature": 0.6,
|
||||
"top_p": 0.95,
|
||||
"transformers_version": "4.46.3"
|
||||
}
|
||||
3
model-00091-of-000163.safetensors
Normal file
3
model-00091-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1af54d034a014c6dc7fcc31fe4dc12283dabd646663e0600e1c497ace317283f
|
||||
size 4302384963
|
||||
3
model-00121-of-000163.safetensors
Normal file
3
model-00121-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8220f4bba79bc539b5e9f620ee6bd011c2d7019ca5c87a1de756aadb6fd3a8fb
|
||||
size 4302384963
|
||||
3
model-00123-of-000163.safetensors
Normal file
3
model-00123-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:933a0047a3076f3567a12653492acdf8908ae1b949a50fd799037061856bf3a7
|
||||
size 4302061105
|
||||
3
model-00124-of-000163.safetensors
Normal file
3
model-00124-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb4c1d6160b67023093f34063e83c623f5fbf45397368f0d7b0e115e1cab3616
|
||||
size 4302384914
|
||||
3
model-00125-of-000163.safetensors
Normal file
3
model-00125-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d04ab22f6b81510a934adc41ab5f54101d1bd02598c6ad16c5f11f37e56f34ff
|
||||
size 4302122764
|
||||
3
model-00126-of-000163.safetensors
Normal file
3
model-00126-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f2076aa18de4129c3458a0c615fab2c36eb587f25b6169a5b672ff67a3bc1cf9
|
||||
size 4302384516
|
||||
3
model-00127-of-000163.safetensors
Normal file
3
model-00127-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3d257babe622d97e62bb47381cc22d68c8e5a33144aff16e7cef1e9332a2899b
|
||||
size 4302384961
|
||||
3
model-00128-of-000163.safetensors
Normal file
3
model-00128-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7bdcc3e95bc69acdcd8719e856d46c5e9da452142fbfd31422f4cb26ce9b7b5b
|
||||
size 4302122576
|
||||
3
model-00129-of-000163.safetensors
Normal file
3
model-00129-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b867068ab2b0af1195c3d5150b4876fe0ae915e0a20778c31938b0652c5ab67
|
||||
size 4302384704
|
||||
3
model-00130-of-000163.safetensors
Normal file
3
model-00130-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7e7762e1c24b582e683792613e3f2f51dfa56d3d9ba4469707c8608bf5b81b8b
|
||||
size 4302384963
|
||||
3
model-00131-of-000163.safetensors
Normal file
3
model-00131-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:038a877e36efb2db30228136973c596d70465eb815733ea78b2294048e9b3e53
|
||||
size 4302122398
|
||||
3
model-00132-of-000163.safetensors
Normal file
3
model-00132-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a44bd9d0c9321f8035a75c6884a1eb15d5095560718c20c32af8ed0f5b1ed42
|
||||
size 4302384890
|
||||
3
model-00133-of-000163.safetensors
Normal file
3
model-00133-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:48c805a44a792608ed607e7b059a69f0d16d54296c9c30531ce0d34d143b1b61
|
||||
size 4302122786
|
||||
3
model-00134-of-000163.safetensors
Normal file
3
model-00134-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f60fcb87cbdd1cdc1065788f2d312ca408202847c18bae4b76861cc22bec25e1
|
||||
size 4302384494
|
||||
3
model-00135-of-000163.safetensors
Normal file
3
model-00135-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2ff2a81a95620f18bf7effe05fe88aae93b9da277051fb1179f5ea95a641b7c
|
||||
size 4302384963
|
||||
3
model-00136-of-000163.safetensors
Normal file
3
model-00136-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51a301d4251ceb67e4a4131bbe13b3e0392ea7d1e046baf70fa833073e37162c
|
||||
size 4302122598
|
||||
3
model-00137-of-000163.safetensors
Normal file
3
model-00137-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28ca58280396bacaed5822b50810a6ec18f50246f6f0e16d0d4b1ca7916d5003
|
||||
size 4302384680
|
||||
3
model-00138-of-000163.safetensors
Normal file
3
model-00138-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2188167c9a92f23abc688b811631af950c657ad11b6babb19193c484fb47c89
|
||||
size 4302384963
|
||||
3
model-00139-of-000163.safetensors
Normal file
3
model-00139-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:730e1f7a60a8dd668b9f66e19e845bf460c69ed16e1ca147536db454cb920dcf
|
||||
size 4302122420
|
||||
3
model-00140-of-000163.safetensors
Normal file
3
model-00140-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c9d97f77f84cb1f2ce648957c7c4a9a2e4be40517230dae34440713193be199
|
||||
size 4302384870
|
||||
3
model-00141-of-000163.safetensors
Normal file
3
model-00141-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:addafdbda4f4f2372d9bc6602ad2c9db41e08994801e65dcf80c2713cbb8f578
|
||||
size 3245204828
|
||||
3
model-00142-of-000163.safetensors
Normal file
3
model-00142-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7811d07e729bc554ca1d4cf6e483cb0ceadf77a15803fcc5a31c84508df1aa85
|
||||
size 4302061105
|
||||
3
model-00143-of-000163.safetensors
Normal file
3
model-00143-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af72ca4b9c78b8ed572ba6a802622b54137b83c2ae78b92e1b8c6ccd40b1484a
|
||||
size 4302384914
|
||||
3
model-00144-of-000163.safetensors
Normal file
3
model-00144-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:777d3e07c8e30327ea7636ddcc06d5b37d8c19f1eb316450e77c2bfbd60ce7d4
|
||||
size 4302122764
|
||||
3
model-00145-of-000163.safetensors
Normal file
3
model-00145-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:45b82ca66094d7e6d33f6491017985530b3f8b090d74384c37ae0968ae3c018a
|
||||
size 4302384516
|
||||
3
model-00146-of-000163.safetensors
Normal file
3
model-00146-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c7ec67772c98355997775b5a29bae1de1322b365f515ef54c3bf980912d5497
|
||||
size 4302384961
|
||||
3
model-00147-of-000163.safetensors
Normal file
3
model-00147-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:933770f5b4431fb49e417bb2decea8ce1165b314103fd6bc41fd44b85c26e4a2
|
||||
size 4302122576
|
||||
3
model-00148-of-000163.safetensors
Normal file
3
model-00148-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a63c0e22abbac275a25a68eb94b92f10df68bb3c04adee8e1998e77cad3abfdb
|
||||
size 4302384704
|
||||
BIN
model-00149-of-000163.safetensors
LFS
Normal file
BIN
model-00149-of-000163.safetensors
LFS
Normal file
Binary file not shown.
3
model-00150-of-000163.safetensors
Normal file
3
model-00150-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17aa00caaf33e569adf3f0dd6f68ee25204b60f3de933d5c3a339d0aa58ed96f
|
||||
size 4302122398
|
||||
3
model-00151-of-000163.safetensors
Normal file
3
model-00151-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3143a333d78bfd9b04d1c901495bf9808a84ef264fad8db1a4a7303bd8de36e3
|
||||
size 4302384890
|
||||
3
model-00152-of-000163.safetensors
Normal file
3
model-00152-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:faab231af4888b4144a2b1e2ceefef95267720ce680a01b77b6e0939271c276a
|
||||
size 4302122786
|
||||
3
model-00153-of-000163.safetensors
Normal file
3
model-00153-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:541920f3455fd2af78183cb4dfc25c506ce3307aaef00747ec775c6a5f6b81c2
|
||||
size 4302384494
|
||||
3
model-00154-of-000163.safetensors
Normal file
3
model-00154-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb92a9b64c15767b0091689ee83e09f665575efd9828e9c23fbb4f3f0116bb38
|
||||
size 4302384963
|
||||
3
model-00155-of-000163.safetensors
Normal file
3
model-00155-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00e7db5d5886e70b2b1a00c726e0a16e479e09108b9cfcf50cd40477d110aecc
|
||||
size 4302122598
|
||||
3
model-00156-of-000163.safetensors
Normal file
3
model-00156-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f9173e6ff5ba68336cf89555a1a9012abb9603cfb2c2ceadde88e913c60ffff
|
||||
size 4302384680
|
||||
3
model-00157-of-000163.safetensors
Normal file
3
model-00157-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9753c9ccd4054c7376e118fda9ce26af382e14dfc5dae3e720fcd92163c40a0
|
||||
size 4302384963
|
||||
3
model-00158-of-000163.safetensors
Normal file
3
model-00158-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:96779eff0e873144606f55d25b26e547a0e7d6dd7e43f293fd3022c41b3d0ab8
|
||||
size 4302122420
|
||||
3
model-00159-of-000163.safetensors
Normal file
3
model-00159-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ded32f0915daeec6f62f0362897adbe24cc4f182fd2654699e8031deca5b7ca8
|
||||
size 4302384870
|
||||
3
model-00160-of-000163.safetensors
Normal file
3
model-00160-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9bebfda7d0b074448ff96a4db7f296c747b6bf99d1e37ae311a12bd6a1ff3517
|
||||
size 5285723731
|
||||
BIN
model-00161-of-000163.safetensors
LFS
Normal file
BIN
model-00161-of-000163.safetensors
LFS
Normal file
Binary file not shown.
3
model-00162-of-000163.safetensors
Normal file
3
model-00162-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae44c570af0a2a0da07af3d04d9ee956013189d62b2d15b5da807604ecabe53e
|
||||
size 4302384938
|
||||
3
model-00163-of-000163.safetensors
Normal file
3
model-00163-of-000163.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6eef9fb48d5bdb7e09c7ed08d06b9a8bbf44726379e02e8f43d28cda7c921537
|
||||
size 6643591758
|
||||
92432
model.safetensors.index.json
Normal file
92432
model.safetensors.index.json
Normal file
File diff suppressed because it is too large
Load Diff
263174
tokenizer.json
Normal file
263174
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
35
tokenizer_config.json
Normal file
35
tokenizer_config.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"add_bos_token": true,
|
||||
"add_eos_token": false,
|
||||
"bos_token": {
|
||||
"__type": "AddedToken",
|
||||
"content": "<|begin▁of▁sentence|>",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"clean_up_tokenization_spaces": false,
|
||||
"eos_token": {
|
||||
"__type": "AddedToken",
|
||||
"content": "<|end▁of▁sentence|>",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"legacy": true,
|
||||
"model_max_length": 131072,
|
||||
"pad_token": {
|
||||
"__type": "AddedToken",
|
||||
"content": "<|end▁of▁sentence|>",
|
||||
"lstrip": false,
|
||||
"normalized": true,
|
||||
"rstrip": false,
|
||||
"single_word": false
|
||||
},
|
||||
"sp_model_kwargs": {},
|
||||
"unk_token": null,
|
||||
"tokenizer_class": "LlamaTokenizerFast",
|
||||
"chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% if not thinking is defined %}{% set thinking = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, system_prompt='', is_first_sp=true, is_last_user=false, is_only_sys=false, is_prefix=false) %}{%- for message in messages %}{%- if message['role'] == 'system' %}{%- if ns.is_first_sp %}{% set ns.system_prompt = ns.system_prompt + message['content'] %}{% set ns.is_first_sp = false %}{%- else %}{% set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}{%- endif %}{% set ns.is_only_sys = true %}{%- endif %}{%- endfor %}{{ bos_token }}{{ ns.system_prompt }}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{%- set ns.is_first = false -%}{%- set ns.is_last_user = true -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['tool_calls'] is defined and message['tool_calls'] is not none %}{%- if ns.is_last_user or ns.is_only_sys %}{{'<|Assistant|></think>'}}{%- endif %}{%- set ns.is_last_user = false -%}{%- set ns.is_first = false %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls'] %}{%- if not ns.is_first %}{%- if message['content'] is none %}{{'<|tool▁calls▁begin|><|tool▁call▁begin|>'+ tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}{%- else %}{{message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}{%- endif %}{%- set ns.is_first = true -%}{%- else %}{{'<|tool▁call▁begin|>'+ tool['function']['name'] + '<|tool▁sep|>' + tool['function']['arguments'] + '<|tool▁call▁end|>'}}{%- endif %}{%- endfor %}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- if message['role'] == 'assistant' and (message['tool_calls'] is not defined or message['tool_calls'] is none) %}{%- if ns.is_last_user %}{{'<|Assistant|>'}}{%- if message['prefix'] is defined and message['prefix'] and thinking %}{{'<think>'}}{%- else %}{{'</think>'}}{%- endif %}{%- endif %}{%- if message['prefix'] is defined and message['prefix'] %}{%- set ns.is_prefix = true -%}{%- endif %}{%- set ns.is_last_user = false -%}{%- if ns.is_tool %}{{message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{%- set content = message['content'] -%}{%- if '</think>' in content %}{%- set content = content.split('</think>', 1)[1] -%}{%- endif %}{{content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_last_user = false -%}{%- set ns.is_tool = true -%}{{'<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- if message['role'] != 'system' %}{% set ns.is_only_sys = false %}{%- endif %}{%- endfor -%}{% if add_generation_prompt and not ns.is_tool%}{% if ns.is_last_user or ns.is_only_sys or not ns.is_prefix %}{{'<|Assistant|>'}}{%- if not thinking %}{{'</think>'}}{%- else %}{{'<think>'}}{%- endif %}{% endif %}{% endif %}"
|
||||
}
|
||||
Reference in New Issue
Block a user