Upload fine-tuned intent detection model - 2025-06-22 22:05:48
Browse files- QwenKnowledgeBase.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- QwenKnowledgeBase.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- QwenKnowledgeBase.mlpackage/Manifest.json +18 -0
- README.md +1 -1
- model.safetensors +1 -1
- model_config.json +1 -1
- setup_xcode.sh +27 -0
- tokenizer_config.json +0 -1
QwenKnowledgeBase.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bcccbf38e008eed54a8b9e6c0fab3b4b03142ab01a1560afc17a74ee69782567
|
3 |
+
size 558192
|
QwenKnowledgeBase.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d3c392f9346bdc7d46803bf0e1ea3b086f74a02c3a2a61970105f72f1e11bca
|
3 |
+
size 1544714560
|
QwenKnowledgeBase.mlpackage/Manifest.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"fileFormatVersion": "1.0.0",
|
3 |
+
"itemInfoEntries": {
|
4 |
+
"3F1423B9-49B1-4149-8134-4F3C1F1687B0": {
|
5 |
+
"author": "com.apple.CoreML",
|
6 |
+
"description": "CoreML Model Weights",
|
7 |
+
"name": "weights",
|
8 |
+
"path": "com.apple.CoreML/weights"
|
9 |
+
},
|
10 |
+
"7DBE82E2-73B4-4431-AB6B-6014D5E826A6": {
|
11 |
+
"author": "com.apple.CoreML",
|
12 |
+
"description": "CoreML Model Specification",
|
13 |
+
"name": "model.mlmodel",
|
14 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
15 |
+
}
|
16 |
+
},
|
17 |
+
"rootModelIdentifier": "7DBE82E2-73B4-4431-AB6B-6014D5E826A6"
|
18 |
+
}
|
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-
|
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-22T22:05:45.624301
|
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:
|
3 |
size 868628547
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d7131fc5a349afd797454c5d369704339196f4f32caeb4cea29f482fc564bafa
|
3 |
size 868628547
|
model_config.json
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
"examples": 5000,
|
31 |
"iterations": 100,
|
32 |
"training_completed": true,
|
33 |
-
"export_timestamp": "2025-06-
|
34 |
"fusion_completed": true
|
35 |
},
|
36 |
"ios_integration": {
|
|
|
30 |
"examples": 5000,
|
31 |
"iterations": 100,
|
32 |
"training_completed": true,
|
33 |
+
"export_timestamp": "2025-06-22T22:05:45.624301",
|
34 |
"fusion_completed": true
|
35 |
},
|
36 |
"ios_integration": {
|
setup_xcode.sh
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
# Xcode Integration Script for QwenKnowledgeBase.mlpackage
|
3 |
+
# Run this script to automatically add the CoreML model to your Xcode project
|
4 |
+
|
5 |
+
echo "🚀 Setting up CoreML model for Xcode integration..."
|
6 |
+
|
7 |
+
# Check if we're in the right directory
|
8 |
+
if [ ! -f "QwenKnowledgeBase.mlpackage" ] && [ ! -d "QwenKnowledgeBase.mlpackage" ]; then
|
9 |
+
echo "❌ Error: QwenKnowledgeBase.mlpackage not found in current directory"
|
10 |
+
echo " Make sure you're in the correct directory"
|
11 |
+
exit 1
|
12 |
+
fi
|
13 |
+
|
14 |
+
echo "✅ Found QwenKnowledgeBase.mlpackage"
|
15 |
+
echo ""
|
16 |
+
echo "📱 Next Steps for Xcode Integration:"
|
17 |
+
echo "1. Open your Xcode project"
|
18 |
+
echo "2. Drag 'QwenKnowledgeBase.mlpackage' from this directory into your Xcode project"
|
19 |
+
echo "3. In the dialog that appears:"
|
20 |
+
echo " - Check 'Add to targets' for your app"
|
21 |
+
echo " - Choose 'Create groups' (not folder references)"
|
22 |
+
echo "4. Xcode will automatically compile the model to .mlmodelc format"
|
23 |
+
echo ""
|
24 |
+
echo "🎯 The model will be available in your app bundle as:"
|
25 |
+
echo " Bundle.main.url(forResource: "QwenKnowledgeBase", withExtension: "mlmodelc")"
|
26 |
+
echo ""
|
27 |
+
echo "✅ Integration complete!"
|
tokenizer_config.json
CHANGED
@@ -195,7 +195,6 @@
|
|
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",
|
|
|
195 |
"<|video_pad|>"
|
196 |
],
|
197 |
"bos_token": null,
|
|
|
198 |
"clean_up_tokenization_spaces": false,
|
199 |
"eos_token": "<|im_end|>",
|
200 |
"errors": "replace",
|