hebertgo commited on
Commit
15a2fa7
·
verified ·
1 Parent(s): 23620a0

Upload fine-tuned intent detection model - 2025-06-24 10:35:31

Browse files
Files changed (4) hide show
  1. README.md +1 -1
  2. model.safetensors +1 -1
  3. model_config.json +1 -1
  4. tokenizer_config.json +1 -0
README.md CHANGED
@@ -65,7 +65,7 @@ let model = try await LLMModelFactory.shared.loadContainer(
65
  ## Training Details
66
 
67
  - **Fine-tuning Method**: LoRA with model fusion
68
- - **Export Date**: 2025-06-23T17:11:41.624178
69
  - **Fusion Completed**: True
70
 
71
  ## Expected Outputs
 
65
  ## Training Details
66
 
67
  - **Fine-tuning Method**: LoRA with model fusion
68
+ - **Export Date**: 2025-06-24T10:35:27.294885
69
  - **Fusion Completed**: True
70
 
71
  ## Expected Outputs
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1563c0685d3f79b6bf9423b366a5566f72d1d41d6d6560c9a1a4516dbcabe3d8
3
  size 868628547
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65fb995151430b8a885a21242069c24543d0ecd7cb087b706986c6767b4e1a4a
3
  size 868628547
model_config.json CHANGED
@@ -45,7 +45,7 @@
45
  "examples": 5000,
46
  "iterations": 100,
47
  "training_completed": true,
48
- "export_timestamp": "2025-06-23T17:11:41.624178",
49
  "fusion_completed": true
50
  },
51
  "ios_integration": {
 
45
  "examples": 5000,
46
  "iterations": 100,
47
  "training_completed": true,
48
+ "export_timestamp": "2025-06-24T10:35:27.294885",
49
  "fusion_completed": true
50
  },
51
  "ios_integration": {
tokenizer_config.json CHANGED
@@ -195,6 +195,7 @@
195
  "<|video_pad|>"
196
  ],
197
  "bos_token": null,
 
198
  "clean_up_tokenization_spaces": false,
199
  "eos_token": "<|im_end|>",
200
  "errors": "replace",
 
195
  "<|video_pad|>"
196
  ],
197
  "bos_token": null,
198
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
199
  "clean_up_tokenization_spaces": false,
200
  "eos_token": "<|im_end|>",
201
  "errors": "replace",