-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add model.json for Llama3 and other outdated model version (#2773
) * chore: add model.json for Llama3 and other outdated model version * fix: consistency format * fix: correct folder id * update: bump version * add: stop words * fix: model.json * Update extensions/inference-nitro-extension/resources/models/llama3-8b-instruct/model.json * Update extensions/inference-nitro-extension/resources/models/llama3-8b-instruct/model.json Based on suggested change Co-authored-by: Nikolaus Kühn <[email protected]> --------- Co-authored-by: Van-QA <[email protected]> Co-authored-by: Hoang Ha <[email protected]> Co-authored-by: Louis <[email protected]> Co-authored-by: Nikolaus Kühn <[email protected]>
- Loading branch information
1 parent
83e9e2b
commit 67db45f
Showing
5 changed files
with
39 additions
and
3 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
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
34 changes: 34 additions & 0 deletions
34
extensions/inference-nitro-extension/resources/models/llama3-8b-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,34 @@ | ||
{ | ||
"sources": [ | ||
{ | ||
"filename": "Meta-Llama-3-8B-Instruct-Q4_K_M.gguf", | ||
"url": "https://huggingface.co/lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF/resolve/main/Meta-Llama-3-8B-Instruct-Q4_K_M.gguf" | ||
} | ||
], | ||
"id": "llama3-8b-instruct", | ||
"object": "model", | ||
"name": "Llama 3 8B Q4", | ||
"version": "1.0", | ||
"description": "Meta's Llama 3 excels at general usage situations, including chat, general world knowledge, and coding.", | ||
"format": "gguf", | ||
"settings": { | ||
"ctx_len": 8192, | ||
"prompt_template": "<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n\n{system_message}<|eot_id|><|start_header_id|>user<|end_header_id|>\n\n{prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n\n", | ||
"llama_model_path": "Meta-Llama-3-8B-Instruct-Q4_K_M.gguf" | ||
}, | ||
"parameters": { | ||
"temperature": 0.7, | ||
"top_p": 0.95, | ||
"stream": true, | ||
"max_tokens": 4096, | ||
"stop": ["<|end_of_text|>","<|eot_id|>"], | ||
"frequency_penalty": 0, | ||
"presence_penalty": 0 | ||
}, | ||
"metadata": { | ||
"author": "MetaAI", | ||
"tags": ["7B", "Featured"], | ||
"size": 4920000000 | ||
}, | ||
"engine": "nitro" | ||
} |
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