Instructions to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF", filename="unsloth-Meta-Llama-3.1-8B-Instruct-IQ4_XS.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
- Unsloth Studio new
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-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/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF to start chatting
- Pi new
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.unsloth-Meta-Llama-3.1-8B-Instruct-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
- unsloth-Meta-Llama-3.1-8B-Instruct-IQ4_XS.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q2_K.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_L.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_M.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_S.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_S.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_S.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q6_K.gguf +3 -0
- unsloth-Meta-Llama-3.1-8B-Instruct-Q8_0.gguf +3 -0
|
@@ -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 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
unsloth-Meta-Llama-3.1-8B-Instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth-Meta-Llama-3.1-8B-Instruct
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# unsloth-Meta-Llama-3.1-8B-Instruct 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 | [unsloth-Meta-Llama-3.1-8B-Instruct-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-IQ4_XS.gguf) | 4276.63 MB |
|
| 21 |
+
| Q2_K | [unsloth-Meta-Llama-3.1-8B-Instruct-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q3_K_L | [unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_L.gguf) | 4121.74 MB |
|
| 23 |
+
| Q3_K_M | [unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q4_K_M | [unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf) | 4692.78 MB |
|
| 26 |
+
| Q4_K_S | [unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q4_K_S.gguf) | 4475.28 MB |
|
| 27 |
+
| Q5_K_M | [unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf) | 5467.41 MB |
|
| 28 |
+
| Q5_K_S | [unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q5_K_S.gguf) | 5339.91 MB |
|
| 29 |
+
| Q6_K | [unsloth-Meta-Llama-3.1-8B-Instruct-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q6_K.gguf) | 6290.45 MB |
|
| 30 |
+
| Q8_0 | [unsloth-Meta-Llama-3.1-8B-Instruct-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/unsloth-Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/unsloth-Meta-Llama-3.1-8B-Instruct-Q8_0.gguf) | 8145.12 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)
|
|
Git LFS Details
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99a3fc0601971e588dcd209598b826d255da652101a9514bc36d49a777838742
|
| 3 |
+
size 4484367520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43c8026a9bbf830473756f3ec65b84a8805d9f78ba96c006552fc6480375d6e6
|
| 3 |
+
size 3179136160
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18ccda9a529a4fe8479893ea651f8efc422898f6137851e2a861616dae37e84c
|
| 3 |
+
size 4321961120
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0aa0cfd84fcf1124ef923471c018ad75181c95ecbcff38c1f442513464a48ec7
|
| 3 |
+
size 4018922656
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9b95bd47a4869d278e00ab9af4b5f4ea1cd7ef46bcddaadbb35ca5c44530460
|
| 3 |
+
size 3664503968
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0cde55f6c41417df6babc6f22907ee902c97f76718555e24e6953a0947b2ceb9
|
| 3 |
+
size 4920738976
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c6cb8a45c0dc2bd4e8679ceec191f108c7142d4d2691efd928badcb89199460
|
| 3 |
+
size 4692673696
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb001ffd01307a223b0776fbdf75f5c4df2472424ba63c6c944d681df56f4089
|
| 3 |
+
size 5732992160
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1049a385fb0fe38ce2007cda6223208824418162a93fad27c52e83716032f75
|
| 3 |
+
size 5599298720
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:151208e3318eb86ee620470c7e3802ab5ea9ecc6cdcdaa0f5c4d5bbc612394d4
|
| 3 |
+
size 6596011168
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14734b2c3c0a06c1b2a6c522fbb335ec375a69fbd9fbb8328d3c22569953a359
|
| 3 |
+
size 8540775584
|