Skip to content

Commit

Permalink
add(stablezephyr): add new stable 3b model
Browse files Browse the repository at this point in the history
  • Loading branch information
hahuyhoang411 committed Jan 29, 2024
1 parent 73171c8 commit 693c4e8
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
12 changes: 6 additions & 6 deletions models/dolphin-phi-2/model.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"source": [
{
"url": "https://huggingface.co/TheBloke/dolphin-2_6-phi-2-GGUF/resolve/main/dolphin-2_6-phi-2.Q4_K_M.gguf",
"filename": "dolphin-2_6-phi-2.Q4_K_M.gguf"
"url": "https://huggingface.co/TheBloke/dolphin-2_6-phi-2-GGUF/resolve/main/dolphin-2_6-phi-2.Q8_0.gguf",
"filename": "dolphin-2_6-phi-2.Q8_0.gguf"
}
],
"id": "dolphin-phi-2",
"object": "model",
"name": "Dolphin Phi-2 2.7B Q4",
"name": "Dolphin Phi-2 2.7B Q8",
"version": "1.0",
"description": "Dolphin Phi-2 is a 2.7B model, fine-tuned for chat, excelling in common sense and logical reasoning benchmarks.",
"format": "gguf",
"settings": {
"ctx_len": 4096,
"prompt_template": "<|im_start|>system\n{system_message}<|im_end|>\n<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n",
"llama_model_path": "dolphin-2_6-phi-2.Q4_K_M.gguf"
"llama_model_path": "dolphin-2_6-phi-2.Q8_0.gguf"
},
"parameters": {
"max_tokens": 4096,
Expand All @@ -24,9 +24,9 @@
"author": "Cognitive Computations, Microsoft",
"tags": [
"3B",
"Chat Model"
"Finetuned"
],
"size": 1790000000
"size": 2960000000
},
"engine": "nitro"
}
34 changes: 34 additions & 0 deletions models/stable-zephyr-3b/model.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"source": [
{
"url": "https://huggingface.co/TheBloke/stablelm-zephyr-3b-GGUF/resolve/main/stablelm-zephyr-3b.Q8_0.gguf",
"filename": "stablelm-zephyr-3b.Q8_0.gguf"
}
],
"id": "stable-zephyr-3b",
"object": "model",
"name": "Stable Zephyr 3B Q8",
"version": "1.0",
"description": "StableLM Zephyr 3B is trained on a mix of publicly and synthetic datasets. It's focus on safety and reliability.",
"format": "gguf",
"settings": {
"ctx_len": 4096,
"prompt_template": "<|user|>\n{prompt}<|endoftext|>\n<|assistant|>",
"llama_model_path": "stablelm-zephyr-3b.Q8_0.gguf"
},
"parameters": {
"temperature": 0.7,
"top_p": 0.95,
"stream": true,
"max_tokens": 4096,
"stop": ["<|endoftext|>"],
"frequency_penalty": 0,
"presence_penalty": 0
},
"metadata": {
"author": "StabilityAI",
"tags": ["3B", "Finetuned"],
"size": 2970000000
},
"engine": "nitro"
}

0 comments on commit 693c4e8

Please sign in to comment.