Instructions to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF", filename="mlabonne-TwinLlama-3.1-8B-DPO-IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-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 featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-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 featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
- Unsloth Studio
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-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 featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-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 featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-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 featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.mlabonne-TwinLlama-3.1-8B-DPO-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +47 -0
- featherless-quants.png +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-IQ4_XS.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q2_K.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_L.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_M.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_S.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_M.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_S.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_M.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_S.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q6_K.gguf +3 -0
- mlabonne-TwinLlama-3.1-8B-DPO-Q8_0.gguf +3 -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 |
+
featherless-quants.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
mlabonne-TwinLlama-3.1-8B-DPO-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
mlabonne-TwinLlama-3.1-8B-DPO-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: mlabonne-TwinLlama-3.1-8B-DPO
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# mlabonne-TwinLlama-3.1-8B-DPO GGUF Quantizations π
|
| 8 |
+
|
| 9 |
+

|
| 10 |
+
|
| 11 |
+
*Optimized GGUF quantization files for enhanced model performance*
|
| 12 |
+
|
| 13 |
+
> Powered by [Featherless AI](https://featherless.ai) - run any model you'd like for a simple small fee.
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
## Available Quantizations π
|
| 17 |
+
|
| 18 |
+
| Quantization Type | File | Size |
|
| 19 |
+
|-------------------|------|------|
|
| 20 |
+
| IQ4_XS | [mlabonne-TwinLlama-3.1-8B-DPO-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-IQ4_XS.gguf) | 4276.62 MB |
|
| 21 |
+
| Q2_K | [mlabonne-TwinLlama-3.1-8B-DPO-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q3_K_L | [mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_L.gguf) | 4121.74 MB |
|
| 23 |
+
| Q3_K_M | [mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q4_K_M | [mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_M.gguf) | 4692.78 MB |
|
| 26 |
+
| Q4_K_S | [mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_S.gguf) | 4475.28 MB |
|
| 27 |
+
| Q5_K_M | [mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_M.gguf) | 5467.40 MB |
|
| 28 |
+
| Q5_K_S | [mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_S.gguf) | 5339.90 MB |
|
| 29 |
+
| Q6_K | [mlabonne-TwinLlama-3.1-8B-DPO-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q6_K.gguf) | 6290.44 MB |
|
| 30 |
+
| Q8_0 | [mlabonne-TwinLlama-3.1-8B-DPO-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/mlabonne-TwinLlama-3.1-8B-DPO-GGUF/blob/main/mlabonne-TwinLlama-3.1-8B-DPO-Q8_0.gguf) | 8145.11 MB |
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## β‘ Powered by [Featherless AI](https://featherless.ai)
|
| 36 |
+
|
| 37 |
+
### Key Features
|
| 38 |
+
|
| 39 |
+
- π₯ **Instant Hosting** - Deploy any Llama model on HuggingFace instantly
|
| 40 |
+
- π οΈ **Zero Infrastructure** - No server setup or maintenance required
|
| 41 |
+
- π **Vast Compatibility** - Support for 2400+ models and counting
|
| 42 |
+
- π **Affordable Pricing** - Starting at just $10/month
|
| 43 |
+
|
| 44 |
+
---
|
| 45 |
+
|
| 46 |
+
**Links:**
|
| 47 |
+
[Get Started](https://featherless.ai) | [Documentation](https://featherless.ai/docs) | [Models](https://featherless.ai/models)
|
featherless-quants.png
ADDED
|
Git LFS Details
|
mlabonne-TwinLlama-3.1-8B-DPO-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69f1c1084a2d46aafae3e56a39119747032200f7655de2b8fd44079fbd8b3308
|
| 3 |
+
size 4484363104
|
mlabonne-TwinLlama-3.1-8B-DPO-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbcffff3b759e7d5bd6fc67e4520bd9efd18f0c2e213f2a6ea710ffcba0cfe72
|
| 3 |
+
size 3179131744
|
mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c414be96b7d7ab06a6176302fb59d2d78b32c28900bf368d823839d236cb215
|
| 3 |
+
size 4321956704
|
mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a5d06d695df1ec115ba27be5680ab4e9aad09d9de6fd305acf09f1401adf6f6
|
| 3 |
+
size 4018918240
|
mlabonne-TwinLlama-3.1-8B-DPO-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a870d12089c558ca102c1a53919346f079b248bc009a67f9a721e5d22301409
|
| 3 |
+
size 3664499552
|
mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00e79e68adeb144196e6dcf5c2626c3655edf6bd6fb03153e4494d2959bce991
|
| 3 |
+
size 4920734560
|
mlabonne-TwinLlama-3.1-8B-DPO-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbaea73144885c66c47696aa58a3694d6c618e54a5c730fb7ae6ceda3ac196b4
|
| 3 |
+
size 4692669280
|
mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f915c99edd0e1e3c97ad821ccd645f020baeacd2b896b57365c449a541dfc9f0
|
| 3 |
+
size 5732987744
|
mlabonne-TwinLlama-3.1-8B-DPO-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0b39c31a049fdc4ab809b899fce52c7c8c1780bfc00a71f4fcd9dddc776bd8c
|
| 3 |
+
size 5599294304
|
mlabonne-TwinLlama-3.1-8B-DPO-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b73afb0e474e2af52ba3631fd5f92d3b79f269d0e422a10a2f19b0a7a12f194d
|
| 3 |
+
size 6596006752
|
mlabonne-TwinLlama-3.1-8B-DPO-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c58f0a3732fb42c11f81e6ac7e54bc8506f3fa45062dffa81e2994a4b05f5dc
|
| 3 |
+
size 8540771168
|