Instructions to use tensorblock/DPOpenHermes-11B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/DPOpenHermes-11B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/DPOpenHermes-11B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/DPOpenHermes-11B-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 tensorblock/DPOpenHermes-11B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/DPOpenHermes-11B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/DPOpenHermes-11B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/DPOpenHermes-11B-GGUF:Q2_K
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 tensorblock/DPOpenHermes-11B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/DPOpenHermes-11B-GGUF:Q2_K
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 tensorblock/DPOpenHermes-11B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/DPOpenHermes-11B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/DPOpenHermes-11B-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/DPOpenHermes-11B-GGUF with Ollama:
ollama run hf.co/tensorblock/DPOpenHermes-11B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/DPOpenHermes-11B-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 tensorblock/DPOpenHermes-11B-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 tensorblock/DPOpenHermes-11B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/DPOpenHermes-11B-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/DPOpenHermes-11B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/DPOpenHermes-11B-GGUF:Q2_K
- Lemonade
How to use tensorblock/DPOpenHermes-11B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/DPOpenHermes-11B-GGUF:Q2_K
Run and chat with the model
lemonade run user.DPOpenHermes-11B-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- DPOpenHermes-11B-Q2_K.gguf +3 -0
- DPOpenHermes-11B-Q3_K_L.gguf +3 -0
- DPOpenHermes-11B-Q3_K_M.gguf +3 -0
- DPOpenHermes-11B-Q3_K_S.gguf +3 -0
- DPOpenHermes-11B-Q4_0.gguf +3 -0
- DPOpenHermes-11B-Q4_K_M.gguf +3 -0
- DPOpenHermes-11B-Q4_K_S.gguf +3 -0
- DPOpenHermes-11B-Q5_0.gguf +3 -0
- DPOpenHermes-11B-Q5_K_M.gguf +3 -0
- DPOpenHermes-11B-Q5_K_S.gguf +3 -0
- DPOpenHermes-11B-Q6_K.gguf +3 -0
- DPOpenHermes-11B-Q8_0.gguf +3 -0
- README.md +87 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
DPOpenHermes-11B-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
DPOpenHermes-11B-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
DPOpenHermes-11B-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
DPOpenHermes-11B-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
DPOpenHermes-11B-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
DPOpenHermes-11B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
DPOpenHermes-11B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
DPOpenHermes-11B-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
DPOpenHermes-11B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
DPOpenHermes-11B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
DPOpenHermes-11B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
DPOpenHermes-11B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
DPOpenHermes-11B-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92fe8781805e778b8eb2ace65b43f7bd0f84bbfbf359de54887ea601b74b6199
|
| 3 |
+
size 4003242112
|
DPOpenHermes-11B-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:205adf5bfb59cf613cb7b4b1cdba207b9f7ffb9ead87558deec03eff68987bfd
|
| 3 |
+
size 5650760640
|
DPOpenHermes-11B-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86179f9c3205c5fcffc1fd69ec2d66e5950a6fb7eecdc5e2414d867c6dc8dca2
|
| 3 |
+
size 5195678656
|
DPOpenHermes-11B-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69c7570f4ea27b6555510a33ad63cc5152b77c7920aeae74b0a36fa9bd33f419
|
| 3 |
+
size 4664574912
|
DPOpenHermes-11B-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63ccd2457d6fbe1d0191027abed9b512d71e6436d9c1114ed305a8b1a481ae64
|
| 3 |
+
size 6072395776
|
DPOpenHermes-11B-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:006abf7c4d68129fca58b34bd3ee925f58a870b4414be25a5c0d75d9794787fd
|
| 3 |
+
size 6461679616
|
DPOpenHermes-11B-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2d9aa3407507b11d062665f8af1119f164839043773a786748f3a58f316a556
|
| 3 |
+
size 6118533120
|
DPOpenHermes-11B-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42b7c737501f59f1acbaabfc73a97abf84524a87977da00c9bc10127364f6253
|
| 3 |
+
size 7397403648
|
DPOpenHermes-11B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3c21506e62d005d02d579242fb858282f22aca61b468266c339d491637d7898
|
| 3 |
+
size 7597943808
|
DPOpenHermes-11B-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762ad8da5ed78a3cc901d3fabfe70ba2243fd1334b26eea2c83af2b27ddc441b
|
| 3 |
+
size 7397403648
|
DPOpenHermes-11B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94a331303832c39c5e608f9989ca86a816becd664b89231fff4e5b18ff410a4f
|
| 3 |
+
size 8805224512
|
DPOpenHermes-11B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb9ee03be6db9baeef3ee5ba54d99c1e81bb1083156c64af3557506e67dcf984
|
| 3 |
+
size 11404173248
|
README.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- teknium/openhermes
|
| 5 |
+
- argilla/ultrafeedback-binarized-preferences
|
| 6 |
+
- Intel/orca_dpo_pairs
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
library_name: transformers
|
| 10 |
+
base_model: openaccess-ai-collective/DPOpenHermes-11B
|
| 11 |
+
tags:
|
| 12 |
+
- TensorBlock
|
| 13 |
+
- GGUF
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 17 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 18 |
+
</div>
|
| 19 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 20 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 21 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 22 |
+
Feedback and support: TensorBlock's <a href="https://x.com/tensorblock_aoi">Twitter/X</a>, <a href="https://t.me/TensorBlock">Telegram Group</a> and <a href="https://x.com/tensorblock_aoi">Discord server</a>
|
| 23 |
+
</p>
|
| 24 |
+
</div>
|
| 25 |
+
</div>
|
| 26 |
+
|
| 27 |
+
## openaccess-ai-collective/DPOpenHermes-11B - GGUF
|
| 28 |
+
|
| 29 |
+
This repo contains GGUF format model files for [openaccess-ai-collective/DPOpenHermes-11B](https://huggingface.co/openaccess-ai-collective/DPOpenHermes-11B).
|
| 30 |
+
|
| 31 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4011](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 32 |
+
|
| 33 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 34 |
+
<a href="https://tensorblock.co/waitlist/client" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
| 35 |
+
Run them on the TensorBlock client using your local machine ↗
|
| 36 |
+
</a>
|
| 37 |
+
</div>
|
| 38 |
+
|
| 39 |
+
## Prompt template
|
| 40 |
+
|
| 41 |
+
```
|
| 42 |
+
<|im_start|>system
|
| 43 |
+
{system_prompt}<|im_end|>
|
| 44 |
+
<|im_start|>user
|
| 45 |
+
{prompt}<|im_end|>
|
| 46 |
+
<|im_start|>assistant
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
## Model file specification
|
| 50 |
+
|
| 51 |
+
| Filename | Quant type | File Size | Description |
|
| 52 |
+
| -------- | ---------- | --------- | ----------- |
|
| 53 |
+
| [DPOpenHermes-11B-Q2_K.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q2_K.gguf) | Q2_K | 3.728 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 54 |
+
| [DPOpenHermes-11B-Q3_K_S.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q3_K_S.gguf) | Q3_K_S | 4.344 GB | very small, high quality loss |
|
| 55 |
+
| [DPOpenHermes-11B-Q3_K_M.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q3_K_M.gguf) | Q3_K_M | 4.839 GB | very small, high quality loss |
|
| 56 |
+
| [DPOpenHermes-11B-Q3_K_L.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q3_K_L.gguf) | Q3_K_L | 5.263 GB | small, substantial quality loss |
|
| 57 |
+
| [DPOpenHermes-11B-Q4_0.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q4_0.gguf) | Q4_0 | 5.655 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 58 |
+
| [DPOpenHermes-11B-Q4_K_S.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q4_K_S.gguf) | Q4_K_S | 5.698 GB | small, greater quality loss |
|
| 59 |
+
| [DPOpenHermes-11B-Q4_K_M.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q4_K_M.gguf) | Q4_K_M | 6.018 GB | medium, balanced quality - recommended |
|
| 60 |
+
| [DPOpenHermes-11B-Q5_0.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q5_0.gguf) | Q5_0 | 6.889 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 61 |
+
| [DPOpenHermes-11B-Q5_K_S.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q5_K_S.gguf) | Q5_K_S | 6.889 GB | large, low quality loss - recommended |
|
| 62 |
+
| [DPOpenHermes-11B-Q5_K_M.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q5_K_M.gguf) | Q5_K_M | 7.076 GB | large, very low quality loss - recommended |
|
| 63 |
+
| [DPOpenHermes-11B-Q6_K.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q6_K.gguf) | Q6_K | 8.201 GB | very large, extremely low quality loss |
|
| 64 |
+
| [DPOpenHermes-11B-Q8_0.gguf](https://huggingface.co/tensorblock/DPOpenHermes-11B-GGUF/blob/main/DPOpenHermes-11B-Q8_0.gguf) | Q8_0 | 10.621 GB | very large, extremely low quality loss - not recommended |
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
## Downloading instruction
|
| 68 |
+
|
| 69 |
+
### Command line
|
| 70 |
+
|
| 71 |
+
Firstly, install Huggingface Client
|
| 72 |
+
|
| 73 |
+
```shell
|
| 74 |
+
pip install -U "huggingface_hub[cli]"
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
Then, downoad the individual model file the a local directory
|
| 78 |
+
|
| 79 |
+
```shell
|
| 80 |
+
huggingface-cli download tensorblock/DPOpenHermes-11B-GGUF --include "DPOpenHermes-11B-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 84 |
+
|
| 85 |
+
```shell
|
| 86 |
+
huggingface-cli download tensorblock/DPOpenHermes-11B-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 87 |
+
```
|