Instructions to use tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/DataVortexS-10.7B-dpo-v1.11-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/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/DataVortexS-10.7B-dpo-v1.11-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/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/DataVortexS-10.7B-dpo-v1.11-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/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/DataVortexS-10.7B-dpo-v1.11-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/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K
- Ollama
How to use tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF with Ollama:
ollama run hf.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K
- Unsloth Desktop
- Docker Model Runner
How to use tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K
- Lemonade
How to use tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF:Q2_K
Run and chat with the model
lemonade run user.DataVortexS-10.7B-dpo-v1.11-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- DataVortexS-10.7B-dpo-v1.11-Q2_K.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q3_K_L.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q3_K_M.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q3_K_S.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q4_0.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q4_K_M.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q4_K_S.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q5_0.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q5_K_M.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q5_K_S.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q6_K.gguf +3 -0
- DataVortexS-10.7B-dpo-v1.11-Q8_0.gguf +3 -0
- README.md +80 -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 |
+
DataVortexS-10.7B-dpo-v1.11-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
DataVortexS-10.7B-dpo-v1.11-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
DataVortexS-10.7B-dpo-v1.11-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
DataVortexS-10.7B-dpo-v1.11-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
DataVortexS-10.7B-dpo-v1.11-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
DataVortexS-10.7B-dpo-v1.11-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
DataVortexS-10.7B-dpo-v1.11-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
DataVortexS-10.7B-dpo-v1.11-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
DataVortexS-10.7B-dpo-v1.11-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
DataVortexS-10.7B-dpo-v1.11-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
DataVortexS-10.7B-dpo-v1.11-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
DataVortexS-10.7B-dpo-v1.11-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
DataVortexS-10.7B-dpo-v1.11-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80e4dabb2ecea360bbcc1eb0f43ff0949594757aeaef17b8d7f08b72669630fd
|
| 3 |
+
size 4078893024
|
DataVortexS-10.7B-dpo-v1.11-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c02dc754272eb2a7285045f1f771e7bd7c09884da786ff9a5918ca6f0b11f5c4
|
| 3 |
+
size 5733066720
|
DataVortexS-10.7B-dpo-v1.11-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff4b99d71b9d7a9d53b0b4e1dcec7f7e39ea0aa157267a393d0d27359366c131
|
| 3 |
+
size 5277984736
|
DataVortexS-10.7B-dpo-v1.11-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3cf46492805d99746ad192808b4627f4e5b1a0d65f56ca13eac72e0dd83d5a5
|
| 3 |
+
size 4746880992
|
DataVortexS-10.7B-dpo-v1.11-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20bc6c74ce0c3880e3c8c2299d0555eb5c92e92de53c4974bdde76c420baf199
|
| 3 |
+
size 6163404768
|
DataVortexS-10.7B-dpo-v1.11-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03a02a51e8f468d9bf5ed1306dc57385cae6e2e519ebaab0fbc044fff8941ac9
|
| 3 |
+
size 6552688608
|
DataVortexS-10.7B-dpo-v1.11-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51b4e5c51ac61f246ac28d33a0385c0ed722da1ee38d056d75afead9649666fe
|
| 3 |
+
size 6209542112
|
DataVortexS-10.7B-dpo-v1.11-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43f70fc485e78a2049042761cb01727d0d47a34755b4e83b65f6bcf09600b473
|
| 3 |
+
size 7496603616
|
DataVortexS-10.7B-dpo-v1.11-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fdbb296626e6ad2a2f12ff729bf2246bd6f00e91c140626aa39637b2cfd5ee02
|
| 3 |
+
size 7697143776
|
DataVortexS-10.7B-dpo-v1.11-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b013ad9eba6752134ea2b9fee8cd7d76736e869fec1a42dd1a511b343195d3e
|
| 3 |
+
size 7496603616
|
DataVortexS-10.7B-dpo-v1.11-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f674ffcdde8f545428fed4b87ae4941cbbc4b371b027f29721ce245330860560
|
| 3 |
+
size 8913127392
|
DataVortexS-10.7B-dpo-v1.11-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9a6e6113ce2bc48f64959d85f4174160e530ace658cdfa4705e8dba8c540f65
|
| 3 |
+
size 11543816160
|
README.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-generation
|
| 4 |
+
- TensorBlock
|
| 5 |
+
- GGUF
|
| 6 |
+
license: cc-by-nc-4.0
|
| 7 |
+
language:
|
| 8 |
+
- ko
|
| 9 |
+
base_model: Edentns/DataVortexS-10.7B-dpo-v1.11
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 14 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 15 |
+
</div>
|
| 16 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 17 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 18 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 19 |
+
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>
|
| 20 |
+
</p>
|
| 21 |
+
</div>
|
| 22 |
+
</div>
|
| 23 |
+
|
| 24 |
+
## Edentns/DataVortexS-10.7B-dpo-v1.11 - GGUF
|
| 25 |
+
|
| 26 |
+
This repo contains GGUF format model files for [Edentns/DataVortexS-10.7B-dpo-v1.11](https://huggingface.co/Edentns/DataVortexS-10.7B-dpo-v1.11).
|
| 27 |
+
|
| 28 |
+
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).
|
| 29 |
+
|
| 30 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 31 |
+
<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;">
|
| 32 |
+
Run them on the TensorBlock client using your local machine ↗
|
| 33 |
+
</a>
|
| 34 |
+
</div>
|
| 35 |
+
|
| 36 |
+
## Prompt template
|
| 37 |
+
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Model file specification
|
| 43 |
+
|
| 44 |
+
| Filename | Quant type | File Size | Description |
|
| 45 |
+
| -------- | ---------- | --------- | ----------- |
|
| 46 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q2_K.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q2_K.gguf) | Q2_K | 3.799 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 47 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q3_K_S.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q3_K_S.gguf) | Q3_K_S | 4.421 GB | very small, high quality loss |
|
| 48 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q3_K_M.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q3_K_M.gguf) | Q3_K_M | 4.916 GB | very small, high quality loss |
|
| 49 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q3_K_L.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q3_K_L.gguf) | Q3_K_L | 5.339 GB | small, substantial quality loss |
|
| 50 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q4_0.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q4_0.gguf) | Q4_0 | 5.740 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 51 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q4_K_S.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q4_K_S.gguf) | Q4_K_S | 5.783 GB | small, greater quality loss |
|
| 52 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q4_K_M.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q4_K_M.gguf) | Q4_K_M | 6.103 GB | medium, balanced quality - recommended |
|
| 53 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q5_0.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q5_0.gguf) | Q5_0 | 6.982 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 54 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q5_K_S.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q5_K_S.gguf) | Q5_K_S | 6.982 GB | large, low quality loss - recommended |
|
| 55 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q5_K_M.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q5_K_M.gguf) | Q5_K_M | 7.169 GB | large, very low quality loss - recommended |
|
| 56 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q6_K.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q6_K.gguf) | Q6_K | 8.301 GB | very large, extremely low quality loss |
|
| 57 |
+
| [DataVortexS-10.7B-dpo-v1.11-Q8_0.gguf](https://huggingface.co/tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF/blob/main/DataVortexS-10.7B-dpo-v1.11-Q8_0.gguf) | Q8_0 | 10.751 GB | very large, extremely low quality loss - not recommended |
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
## Downloading instruction
|
| 61 |
+
|
| 62 |
+
### Command line
|
| 63 |
+
|
| 64 |
+
Firstly, install Huggingface Client
|
| 65 |
+
|
| 66 |
+
```shell
|
| 67 |
+
pip install -U "huggingface_hub[cli]"
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
Then, downoad the individual model file the a local directory
|
| 71 |
+
|
| 72 |
+
```shell
|
| 73 |
+
huggingface-cli download tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF --include "DataVortexS-10.7B-dpo-v1.11-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 77 |
+
|
| 78 |
+
```shell
|
| 79 |
+
huggingface-cli download tensorblock/DataVortexS-10.7B-dpo-v1.11-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 80 |
+
```
|