Instructions to use featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-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 featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-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 featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-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 featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-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 featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-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 featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-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/rmihaylov-Llama-3-DARE-v3-8B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.rmihaylov-Llama-3-DARE-v3-8B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +46 -0
- featherless-quants.png +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-IQ4_XS.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q2_K.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q3_K_L.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q3_K_M.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q3_K_S.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q4_K_M.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q4_K_S.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q5_K_M.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q5_K_S.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-Q6_K.gguf +3 -0
- rmihaylov-Llama-3-DARE-v3-8B-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 |
+
rmihaylov-Llama-3-DARE-v3-8B-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
rmihaylov-Llama-3-DARE-v3-8B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: rmihaylov/Llama-3-DARE-v3-8B
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# rmihaylov/Llama-3-DARE-v3-8B GGUF Quantizations π
|
| 8 |
+
|
| 9 |
+

|
| 10 |
+
|
| 11 |
+
*Optimized GGUF quantization files for enhanced model performance*
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## Available Quantizations π
|
| 16 |
+
|
| 17 |
+
| Quantization Type | File | Size |
|
| 18 |
+
|-------------------|------|------|
|
| 19 |
+
| Q8_0 | [rmihaylov-Llama-3-DARE-v3-8B-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q8_0.gguf) | 8145.11 MB |
|
| 20 |
+
| Q4_K_S | [rmihaylov-Llama-3-DARE-v3-8B-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q4_K_S.gguf) | 4475.28 MB |
|
| 21 |
+
| Q2_K | [rmihaylov-Llama-3-DARE-v3-8B-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q6_K | [rmihaylov-Llama-3-DARE-v3-8B-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q6_K.gguf) | 6290.44 MB |
|
| 23 |
+
| Q3_K_M | [rmihaylov-Llama-3-DARE-v3-8B-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [rmihaylov-Llama-3-DARE-v3-8B-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q3_K_L | [rmihaylov-Llama-3-DARE-v3-8B-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q3_K_L.gguf) | 4121.74 MB |
|
| 26 |
+
| Q4_K_M | [rmihaylov-Llama-3-DARE-v3-8B-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q4_K_M.gguf) | 4692.78 MB |
|
| 27 |
+
| Q5_K_S | [rmihaylov-Llama-3-DARE-v3-8B-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q5_K_S.gguf) | 5339.90 MB |
|
| 28 |
+
| Q5_K_M | [rmihaylov-Llama-3-DARE-v3-8B-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-Q5_K_M.gguf) | 5467.40 MB |
|
| 29 |
+
| IQ4_XS | [rmihaylov-Llama-3-DARE-v3-8B-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/rmihaylov-Llama-3-DARE-v3-8B-GGUF/blob/main/rmihaylov-Llama-3-DARE-v3-8B-IQ4_XS.gguf) | 4276.62 MB |
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
+
## β‘ Powered by [Featherless AI](https://featherless.ai)
|
| 35 |
+
|
| 36 |
+
### Key Features
|
| 37 |
+
|
| 38 |
+
- π₯ **Instant Hosting** - Deploy any Llama model on HuggingFace instantly
|
| 39 |
+
- π οΈ **Zero Infrastructure** - No server setup or maintenance required
|
| 40 |
+
- π **Vast Compatibility** - Support for 2400+ models and counting
|
| 41 |
+
- π **Affordable Pricing** - Starting at just $10/month
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
**Links:**
|
| 46 |
+
[Get Started](https://featherless.ai) | [Documentation](https://featherless.ai/docs) | [Models](https://featherless.ai/models)
|
featherless-quants.png
ADDED
|
Git LFS Details
|
rmihaylov-Llama-3-DARE-v3-8B-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c049cbdef56d2e795b6d68ac13e0c94ab80e09bfe9732759a47cac4cc35cfc8f
|
| 3 |
+
size 4484363456
|
rmihaylov-Llama-3-DARE-v3-8B-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81b7f23a12f9027df69a801647f9c7d5b8d3e458e9209be90edab100727edf8f
|
| 3 |
+
size 3179132096
|
rmihaylov-Llama-3-DARE-v3-8B-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ba1b6da73ee3331a73abf0d8840ced8a89c6de0de566d463f7e681cfdd6624c
|
| 3 |
+
size 4321957056
|
rmihaylov-Llama-3-DARE-v3-8B-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2c7d2f35de4af77abcc8e757436896ccd4a155f3e92ad576d4c9fd88e3457c2
|
| 3 |
+
size 4018918592
|
rmihaylov-Llama-3-DARE-v3-8B-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2420ce4cd19693724101c82b0bd648f5b2ef1eee688476992c33cd7fcf49078
|
| 3 |
+
size 3664499904
|
rmihaylov-Llama-3-DARE-v3-8B-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45180cc5bb77fdc77d25f437484cb4ad2cfa7091843815518ec28303a8b30c2e
|
| 3 |
+
size 4920734912
|
rmihaylov-Llama-3-DARE-v3-8B-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b42dfc0ee709f922e8e7303b3273d5732a05b7884645b4bd0b03a293bea05fa
|
| 3 |
+
size 4692669632
|
rmihaylov-Llama-3-DARE-v3-8B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f57f6fd35dc69a7b1a5ffcc18d31a260e24dfdb18ae1d60c961a2e8a6460e95
|
| 3 |
+
size 5732988096
|
rmihaylov-Llama-3-DARE-v3-8B-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:890b6527af969779445442296295dd6ab2aba3978a7c826be7245e82490ed124
|
| 3 |
+
size 5599294656
|
rmihaylov-Llama-3-DARE-v3-8B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a95b7f19710f02c655df271dd3c3fdb46030fd42efd5094ac88f1055b6a8e92
|
| 3 |
+
size 6596007104
|
rmihaylov-Llama-3-DARE-v3-8B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7b62d2978c7519dbe1070e64b7acc098eb87e85dcbc12a3fed3f9fbdf0cec88
|
| 3 |
+
size 8540771520
|