rawsh commited on
Commit
6dac8cb
·
verified ·
1 Parent(s): 64c7971

Upload folder using huggingface_hub

Browse files
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "rawsh/SmallThinker-3B",
3
  "architectures": [
4
  "Qwen2ForCausalLM"
5
  ],
 
1
  {
2
+ "_name_or_path": "PowerInfer/SmallThinker-3B-Preview",
3
  "architectures": [
4
  "Qwen2ForCausalLM"
5
  ],
model-00001-of-00003.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f8580c331ff5519a7f85c410a41d42b658c0a8ce51be8b6894dec973c46221c8
3
  size 4982131536
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14e071a19c32033f150031ead7cddad0de0700fa92d6cbb2318346b4129bfb1a
3
  size 4982131536
model-00002-of-00003.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2fb2f6367db16a21c81ee8ec9cdfba13816ee57636a7a210163fb17398d8776a
3
  size 4932949336
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34a7c7b30fc32e0016e5d1779e189d9673c883bb6b664a8c9b71bfde94b244a2
3
  size 4932949336
model-00003-of-00003.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a6bc3cab1eb1ddf8ab210dfa56f9c5f166938e349f6777c32e5810a5240ad1b1
3
  size 3673383040
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a92800c212be45b97d469843921606b3040e6bb70ede2d3e6bef29c148d5bee
3
  size 3673383040
tokenizer_config.json CHANGED
@@ -213,7 +213,7 @@
213
  "</thinking>"
214
  ],
215
  "bos_token": null,
216
- "chat_template": "{% for message in messages %}{% set content = message['content'] %}{% if message['role'] == 'user' %}{{ '<|im_start|>user\n' + content + '<|im_end|>\n<|im_start|>assistant\n' }}{% elif message['role'] == 'assistant' %}{{ content + '<|im_end|>' + '\n' }}{% endif %}{% endfor %}",
217
  "clean_up_tokenization_spaces": false,
218
  "eos_token": "<|im_end|>",
219
  "errors": "replace",
 
213
  "</thinking>"
214
  ],
215
  "bos_token": null,
216
+ "chat_template": "{% set system_message = 'You are a helpful assistant.' %}{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% endif %}{% if system_message is defined %}{{ '<|im_start|>system\n' + system_message + '<|im_end|>\n' }}{% endif %}{% for message in loop_messages %}{% set content = message['content'] %}{% if message['role'] == 'user' %}{{ '<|im_start|>user\n' + content + '<|im_end|>\n<|im_start|>assistant\n' }}{% elif message['role'] == 'assistant' %}{{ content + '<|im_end|>' + '\n' }}{% endif %}{% endfor %}",
217
  "clean_up_tokenization_spaces": false,
218
  "eos_token": "<|im_end|>",
219
  "errors": "replace",