Instructions to use tensorblock/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF with Ollama:
ollama run hf.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-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/Barcenas-Tiny-1.1b-DPO-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K
- Lemonade
How to use tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF:Q2_K
Run and chat with the model
lemonade run user.Barcenas-Tiny-1.1b-DPO-GGUF-Q2_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- Barcenas-Tiny-1.1b-DPO-Q2_K.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q3_K_L.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q3_K_M.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q3_K_S.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q4_0.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q4_K_M.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q4_K_S.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q5_0.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q5_K_M.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q5_K_S.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q6_K.gguf +3 -0
- Barcenas-Tiny-1.1b-DPO-Q8_0.gguf +3 -0
- README.md +85 -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 |
+
Barcenas-Tiny-1.1b-DPO-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Barcenas-Tiny-1.1b-DPO-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Barcenas-Tiny-1.1b-DPO-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Barcenas-Tiny-1.1b-DPO-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Barcenas-Tiny-1.1b-DPO-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Barcenas-Tiny-1.1b-DPO-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Barcenas-Tiny-1.1b-DPO-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Barcenas-Tiny-1.1b-DPO-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Barcenas-Tiny-1.1b-DPO-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Barcenas-Tiny-1.1b-DPO-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Barcenas-Tiny-1.1b-DPO-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Barcenas-Tiny-1.1b-DPO-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Barcenas-Tiny-1.1b-DPO-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5fc04944bdc38bcb834066e735d794085856489ec99f7f9312b0e7c40e6a4ad
|
| 3 |
+
size 432131712
|
Barcenas-Tiny-1.1b-DPO-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89c78adda804671a1f0ee2ddea2966e702eefbbaf3817ae076b755a9ab7d884a
|
| 3 |
+
size 591527552
|
Barcenas-Tiny-1.1b-DPO-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ed3536d3efc79003db9d9138acab1ae27c81f0a5ae3717cbb9a2eb840f7384d
|
| 3 |
+
size 548404864
|
Barcenas-Tiny-1.1b-DPO-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90dd1acf48cceeeda106bab026c5898bc4f8e77d2b52a2af5e69ee2a53ea73ca
|
| 3 |
+
size 499342976
|
Barcenas-Tiny-1.1b-DPO-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14a9c82fa97d6474f075def4da87df5e92d4adcb41736e35ecdcbb61d5cfe788
|
| 3 |
+
size 636726912
|
Barcenas-Tiny-1.1b-DPO-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5673945cdc0a61710ad3843d5fc975746a44cd97549849fea5c5881f64dff3e1
|
| 3 |
+
size 667815552
|
Barcenas-Tiny-1.1b-DPO-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5cf59538e7430e15bea64e73caf681af579e5261da839bd45fbe90b5cefaafd
|
| 3 |
+
size 639872640
|
Barcenas-Tiny-1.1b-DPO-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:551cb8d93a8e9d5003fdde4d847bb5ffac8c71b8c7240e918241604f709e9c79
|
| 3 |
+
size 766029440
|
Barcenas-Tiny-1.1b-DPO-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:732eee75d94a5ec9942854cc57ad3b9e6f3dbbb37e385a108c300e59da0d8c3e
|
| 3 |
+
size 782044800
|
Barcenas-Tiny-1.1b-DPO-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c61f2e7d565a2424cad5bb6d7f62f7c181cf3a9180b0540088ec8d670bda28dc
|
| 3 |
+
size 766029440
|
Barcenas-Tiny-1.1b-DPO-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:407341c23a807c06f652ae9b4ece3b2139e878738b5cb84daff3d3ebede2b4a4
|
| 3 |
+
size 903413376
|
Barcenas-Tiny-1.1b-DPO-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bba26c30e441c72e5a94e88db9f1b3b3a6122091895d0c7ff717a22a0f7a46a
|
| 3 |
+
size 1169809024
|
README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- Intel/orca_dpo_pairs
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- es
|
| 8 |
+
base_model: Danielbrdz/Barcenas-Tiny-1.1b-DPO
|
| 9 |
+
tags:
|
| 10 |
+
- TensorBlock
|
| 11 |
+
- GGUF
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 15 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 16 |
+
</div>
|
| 17 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 18 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 19 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 20 |
+
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>
|
| 21 |
+
</p>
|
| 22 |
+
</div>
|
| 23 |
+
</div>
|
| 24 |
+
|
| 25 |
+
## Danielbrdz/Barcenas-Tiny-1.1b-DPO - GGUF
|
| 26 |
+
|
| 27 |
+
This repo contains GGUF format model files for [Danielbrdz/Barcenas-Tiny-1.1b-DPO](https://huggingface.co/Danielbrdz/Barcenas-Tiny-1.1b-DPO).
|
| 28 |
+
|
| 29 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4242](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 30 |
+
|
| 31 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 32 |
+
<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;">
|
| 33 |
+
Run them on the TensorBlock client using your local machine ↗
|
| 34 |
+
</a>
|
| 35 |
+
</div>
|
| 36 |
+
|
| 37 |
+
## Prompt template
|
| 38 |
+
|
| 39 |
+
```
|
| 40 |
+
<|system|>
|
| 41 |
+
{system_prompt}</s>
|
| 42 |
+
<|user|>
|
| 43 |
+
{prompt}</s>
|
| 44 |
+
<|assistant|>
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Model file specification
|
| 48 |
+
|
| 49 |
+
| Filename | Quant type | File Size | Description |
|
| 50 |
+
| -------- | ---------- | --------- | ----------- |
|
| 51 |
+
| [Barcenas-Tiny-1.1b-DPO-Q2_K.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q2_K.gguf) | Q2_K | 0.432 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 52 |
+
| [Barcenas-Tiny-1.1b-DPO-Q3_K_S.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q3_K_S.gguf) | Q3_K_S | 0.499 GB | very small, high quality loss |
|
| 53 |
+
| [Barcenas-Tiny-1.1b-DPO-Q3_K_M.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q3_K_M.gguf) | Q3_K_M | 0.548 GB | very small, high quality loss |
|
| 54 |
+
| [Barcenas-Tiny-1.1b-DPO-Q3_K_L.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q3_K_L.gguf) | Q3_K_L | 0.592 GB | small, substantial quality loss |
|
| 55 |
+
| [Barcenas-Tiny-1.1b-DPO-Q4_0.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q4_0.gguf) | Q4_0 | 0.637 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 56 |
+
| [Barcenas-Tiny-1.1b-DPO-Q4_K_S.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q4_K_S.gguf) | Q4_K_S | 0.640 GB | small, greater quality loss |
|
| 57 |
+
| [Barcenas-Tiny-1.1b-DPO-Q4_K_M.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q4_K_M.gguf) | Q4_K_M | 0.668 GB | medium, balanced quality - recommended |
|
| 58 |
+
| [Barcenas-Tiny-1.1b-DPO-Q5_0.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q5_0.gguf) | Q5_0 | 0.766 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 59 |
+
| [Barcenas-Tiny-1.1b-DPO-Q5_K_S.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q5_K_S.gguf) | Q5_K_S | 0.766 GB | large, low quality loss - recommended |
|
| 60 |
+
| [Barcenas-Tiny-1.1b-DPO-Q5_K_M.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q5_K_M.gguf) | Q5_K_M | 0.782 GB | large, very low quality loss - recommended |
|
| 61 |
+
| [Barcenas-Tiny-1.1b-DPO-Q6_K.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q6_K.gguf) | Q6_K | 0.903 GB | very large, extremely low quality loss |
|
| 62 |
+
| [Barcenas-Tiny-1.1b-DPO-Q8_0.gguf](https://huggingface.co/tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF/blob/main/Barcenas-Tiny-1.1b-DPO-Q8_0.gguf) | Q8_0 | 1.170 GB | very large, extremely low quality loss - not recommended |
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
## Downloading instruction
|
| 66 |
+
|
| 67 |
+
### Command line
|
| 68 |
+
|
| 69 |
+
Firstly, install Huggingface Client
|
| 70 |
+
|
| 71 |
+
```shell
|
| 72 |
+
pip install -U "huggingface_hub[cli]"
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
Then, downoad the individual model file the a local directory
|
| 76 |
+
|
| 77 |
+
```shell
|
| 78 |
+
huggingface-cli download tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF --include "Barcenas-Tiny-1.1b-DPO-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 82 |
+
|
| 83 |
+
```shell
|
| 84 |
+
huggingface-cli download tensorblock/Barcenas-Tiny-1.1b-DPO-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 85 |
+
```
|