Instructions to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF", filename="openchat-openchat-3.6-8b-20240522-IQ4_XS.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M
- Unsloth Studio
How to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-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/openchat-openchat-3.6-8b-20240522-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.openchat-openchat-3.6-8b-20240522-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
- openchat-openchat-3.6-8b-20240522-IQ4_XS.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q2_K.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q3_K_L.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q3_K_M.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q3_K_S.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q4_K_M.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q4_K_S.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q5_K_M.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q5_K_S.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-Q6_K.gguf +3 -0
- openchat-openchat-3.6-8b-20240522-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 |
+
openchat-openchat-3.6-8b-20240522-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
openchat-openchat-3.6-8b-20240522-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
openchat-openchat-3.6-8b-20240522-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
openchat-openchat-3.6-8b-20240522-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
openchat-openchat-3.6-8b-20240522-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
openchat-openchat-3.6-8b-20240522-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
openchat-openchat-3.6-8b-20240522-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
openchat-openchat-3.6-8b-20240522-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
openchat-openchat-3.6-8b-20240522-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
openchat-openchat-3.6-8b-20240522-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
openchat-openchat-3.6-8b-20240522-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: openchat-openchat-3.6-8b-20240522
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# openchat-openchat-3.6-8b-20240522 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 | [openchat-openchat-3.6-8b-20240522-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-IQ4_XS.gguf) | 4276.62 MB |
|
| 21 |
+
| Q2_K | [openchat-openchat-3.6-8b-20240522-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q3_K_L | [openchat-openchat-3.6-8b-20240522-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q3_K_L.gguf) | 4121.74 MB |
|
| 23 |
+
| Q3_K_M | [openchat-openchat-3.6-8b-20240522-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [openchat-openchat-3.6-8b-20240522-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q4_K_M | [openchat-openchat-3.6-8b-20240522-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q4_K_M.gguf) | 4692.78 MB |
|
| 26 |
+
| Q4_K_S | [openchat-openchat-3.6-8b-20240522-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q4_K_S.gguf) | 4475.28 MB |
|
| 27 |
+
| Q5_K_M | [openchat-openchat-3.6-8b-20240522-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q5_K_M.gguf) | 5467.40 MB |
|
| 28 |
+
| Q5_K_S | [openchat-openchat-3.6-8b-20240522-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q5_K_S.gguf) | 5339.90 MB |
|
| 29 |
+
| Q6_K | [openchat-openchat-3.6-8b-20240522-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-Q6_K.gguf) | 6290.44 MB |
|
| 30 |
+
| Q8_0 | [openchat-openchat-3.6-8b-20240522-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/openchat-openchat-3.6-8b-20240522-GGUF/blob/main/openchat-openchat-3.6-8b-20240522-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
|
openchat-openchat-3.6-8b-20240522-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:889d78e332a9a2a7e5c67d1e5f9a87b2a9ba935228d326de53bd908eee85ee18
|
| 3 |
+
size 4484363424
|
openchat-openchat-3.6-8b-20240522-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d7179b4e27d17dcaeb944b5e1f9def1913f9bffe78fe6e2446c3320c6116874
|
| 3 |
+
size 3179132064
|
openchat-openchat-3.6-8b-20240522-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d5e307854441032c8d471b1a1b362ed9ad7f33166ff14f3260632c6cd813921
|
| 3 |
+
size 4321957024
|
openchat-openchat-3.6-8b-20240522-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9139d9330a5ebe2a58ec6763321c03778037ac9cf78d9d21bd937c4e339be15f
|
| 3 |
+
size 4018918560
|
openchat-openchat-3.6-8b-20240522-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f69ff04c2aa2c8d92513f5c81bc74528632cb6f36c72811a503c009ec46e17c7
|
| 3 |
+
size 3664499872
|
openchat-openchat-3.6-8b-20240522-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f887751b7e0760f0646d0fad918ba59904b711d6df09a31542aea103524aa08
|
| 3 |
+
size 4920734880
|
openchat-openchat-3.6-8b-20240522-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97a5318adf2313d6d4bef72f068bceb4ba6c543d3af5dfe5be8c44f179c87804
|
| 3 |
+
size 4692669600
|
openchat-openchat-3.6-8b-20240522-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:819b6276a4cbb82289ae9628283eae9185f024147f7536ae986b1bd6506b7ce9
|
| 3 |
+
size 5732988064
|
openchat-openchat-3.6-8b-20240522-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94d5b06c5d479195750dbd3fb5395cb416bed114ed277850ee21bc3c0016264d
|
| 3 |
+
size 5599294624
|
openchat-openchat-3.6-8b-20240522-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cd47d9720492f15a3b8aafda541c2d37ed2bef5f89aadcfe049ba31195db57f
|
| 3 |
+
size 6596007072
|
openchat-openchat-3.6-8b-20240522-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b3a3711830dc70ffc7a2ca45e392014a53b1bdd48d1d480eb9bc575e5ffe7ee
|
| 3 |
+
size 8540771488
|