GGUF
English
Llama-3
instruct
finetune
chatml
DPO
RLHF
gpt4
synthetic data
distillation
function calling
json mode
axolotl
merges
conversational
Instructions to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF", filename="Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-F16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with Ollama:
ollama run hf.co/NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
- Unsloth Studio
How to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with Docker Model Runner:
docker model run hf.co/NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
- Lemonade
How to use NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull NousResearch/Hermes-2-Theta-Llama-3-8B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Hermes-2-Theta-Llama-3-8B-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +5 -0
- Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-F16.gguf +3 -0
- Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q4_K_M.gguf +3 -0
- Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q5_K_M.gguf +3 -0
- Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q6_K.gguf +3 -0
- Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3605f0d34778fde80b2157778b8c2a63b0f51f0b113385d263e25310c282d0db
|
| 3 |
+
size 16068890624
|
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762b9371a296ab2628592b9462dc676b27d881a3402816492801641a437669b3
|
| 3 |
+
size 4920733728
|
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70947d332893597b98221ea2dd50a7b9467f2af5e5587e66fc139082f30f0492
|
| 3 |
+
size 5732986912
|
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9f5aeec4f881721ffc69cf3d2576ce6727cd17ed0a5eedbc3432a382a259c79
|
| 3 |
+
size 6596005920
|
Hermes-2-Pro-Llama-3-Instruct-Merged-DPO-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:330d094dd3b0e03ab37069b35772dab4cffa40edbd9943b33559766e78ec9678
|
| 3 |
+
size 8540770336
|