Delete Qwen2.5-1.5B-Instruct
Browse files- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/added_tokens.json +0 -3
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/chat_template.jinja +0 -54
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/config.json +0 -3
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/merges.txt +0 -0
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/model.safetensors +0 -3
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/special_tokens_map.json +0 -3
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/tokenizer.json +0 -3
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/tokenizer_config.json +0 -3
- Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/vocab.json +0 -3
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/added_tokens.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:58b54bbe36fc752f79a24a271ef66a0a0830054b4dfad94bde757d851968060b
|
| 3 |
-
size 605
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/chat_template.jinja
DELETED
|
@@ -1,54 +0,0 @@
|
|
| 1 |
-
{%- if tools %}
|
| 2 |
-
{{- '<|im_start|>system\n' }}
|
| 3 |
-
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
-
{{- messages[0]['content'] }}
|
| 5 |
-
{%- else %}
|
| 6 |
-
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
-
{%- endif %}
|
| 8 |
-
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
-
{%- for tool in tools %}
|
| 10 |
-
{{- "\n" }}
|
| 11 |
-
{{- tool | tojson }}
|
| 12 |
-
{%- endfor %}
|
| 13 |
-
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
-
{%- else %}
|
| 15 |
-
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
-
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
-
{%- else %}
|
| 18 |
-
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
-
{%- endif %}
|
| 20 |
-
{%- endif %}
|
| 21 |
-
{%- for message in messages %}
|
| 22 |
-
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
-
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
-
{%- elif message.role == "assistant" %}
|
| 25 |
-
{{- '<|im_start|>' + message.role }}
|
| 26 |
-
{%- if message.content %}
|
| 27 |
-
{{- '\n' + message.content }}
|
| 28 |
-
{%- endif %}
|
| 29 |
-
{%- for tool_call in message.tool_calls %}
|
| 30 |
-
{%- if tool_call.function is defined %}
|
| 31 |
-
{%- set tool_call = tool_call.function %}
|
| 32 |
-
{%- endif %}
|
| 33 |
-
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
-
{{- tool_call.name }}
|
| 35 |
-
{{- '", "arguments": ' }}
|
| 36 |
-
{{- tool_call.arguments | tojson }}
|
| 37 |
-
{{- '}\n</tool_call>' }}
|
| 38 |
-
{%- endfor %}
|
| 39 |
-
{{- '<|im_end|>\n' }}
|
| 40 |
-
{%- elif message.role == "tool" %}
|
| 41 |
-
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
-
{{- '<|im_start|>user' }}
|
| 43 |
-
{%- endif %}
|
| 44 |
-
{{- '\n<tool_response>\n' }}
|
| 45 |
-
{{- message.content }}
|
| 46 |
-
{{- '\n</tool_response>' }}
|
| 47 |
-
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
-
{{- '<|im_end|>\n' }}
|
| 49 |
-
{%- endif %}
|
| 50 |
-
{%- endif %}
|
| 51 |
-
{%- endfor %}
|
| 52 |
-
{%- if add_generation_prompt %}
|
| 53 |
-
{{- '<|im_start|>assistant\n' }}
|
| 54 |
-
{%- endif %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/config.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c056f4a27d910748710a6cfb66061c3a2d36ca5b2ff0c7df9380cd17bf9e2d2b
|
| 3 |
-
size 1400
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/merges.txt
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/model.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cb9995e2cabc3993196227670c670112a65cd51ccadaba4bea1ab0d7fef22e15
|
| 3 |
-
size 3554214720
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/special_tokens_map.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:76862e765266b85aa9459767e33cbaf13970f327a0e88d1c65846c2ddd3a1ecd
|
| 3 |
-
size 613
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/tokenizer.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
-
size 11421896
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/tokenizer_config.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0a04a9d7d4a62b28482bdfe726c122756de85714fb64166ace92ae75b8f57614
|
| 3 |
-
size 4686
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-1.5B-Instruct/sigma0.0225_alpha0.005_N60_ep10_s42_20260527_160205/merged/vocab.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910
|
| 3 |
-
size 2776833
|
|
|
|
|
|
|
|
|
|
|
|