-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3998 from janhq/chore/add-qwen-coder-models
chore: add qwen2.5-coder 14B and 32B models
- Loading branch information
Showing
8 changed files
with
154 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
extensions/inference-cortex-extension/resources/models/qwen2.5-coder-14b-instruct/model.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"sources": [ | ||
{ | ||
"filename": "Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf", | ||
"url": "https://huggingface.co/bartowski/Qwen2.5-Coder-14B-Instruct-GGUF/resolve/main/Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf" | ||
} | ||
], | ||
"id": "qwen2.5-coder-14b-instruct", | ||
"object": "model", | ||
"name": "Qwen2.5 Coder 14B Instruct Q4", | ||
"version": "1.0", | ||
"description": "Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models. Significantly improvements in code generation, code reasoning and code fixing.", | ||
"format": "gguf", | ||
"settings": { | ||
"ctx_len": 32768, | ||
"prompt_template": "<|im_start|>system\n{system_message}<|im_end|>\n<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant", | ||
"llama_model_path": "Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf", | ||
"ngl": 29 | ||
}, | ||
"parameters": { | ||
"temperature": 0.7, | ||
"top_p": 0.95, | ||
"stream": true, | ||
"max_tokens": 32768, | ||
"stop": ["<|endoftext|>", "<|im_end|>"], | ||
"frequency_penalty": 0, | ||
"presence_penalty": 0 | ||
}, | ||
"metadata": { | ||
"author": "QwenLM", | ||
"tags": ["14B", "Featured"], | ||
"size": 8990000000 | ||
}, | ||
"engine": "llama-cpp" | ||
} | ||
|
36 changes: 36 additions & 0 deletions
36
extensions/inference-cortex-extension/resources/models/qwen2.5-coder-32b-instruct/model.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"sources": [ | ||
{ | ||
"filename": "Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf", | ||
"url": "https://huggingface.co/bartowski/Qwen2.5-Coder-32B-Instruct-GGUF/resolve/main/Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf" | ||
} | ||
], | ||
"id": "qwen2.5-coder-32b-instruct", | ||
"object": "model", | ||
"name": "Qwen2.5 Coder 32B Instruct Q4", | ||
"version": "1.0", | ||
"description": "Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models. Significantly improvements in code generation, code reasoning and code fixing.", | ||
"format": "gguf", | ||
"settings": { | ||
"ctx_len": 32768, | ||
"prompt_template": "<|im_start|>system\n{system_message}<|im_end|>\n<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant", | ||
"llama_model_path": "Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf", | ||
"ngl": 29 | ||
}, | ||
"parameters": { | ||
"temperature": 0.7, | ||
"top_p": 0.95, | ||
"stream": true, | ||
"max_tokens": 32768, | ||
"stop": ["<|endoftext|>", "<|im_end|>"], | ||
"frequency_penalty": 0, | ||
"presence_penalty": 0 | ||
}, | ||
"metadata": { | ||
"author": "QwenLM", | ||
"tags": ["32B", "Featured"], | ||
"size": 19900000000 | ||
}, | ||
"engine": "llama-cpp" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters