Instructions to use featherless-ai-quants/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF", filename="Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf featherless-ai-quants/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M
- Unsloth Studio
How to use featherless-ai-quants/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-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/Nekochu-Luminia-13B-v3-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Nekochu-Luminia-13B-v3-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- Nekochu-Luminia-13B-v3-IQ4_XS.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q2_K.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q3_K_L.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q3_K_M.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q3_K_S.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q4_K_M.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q4_K_S.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q5_K_M.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q5_K_S.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q6_K.gguf +3 -0
- Nekochu-Luminia-13B-v3-Q8_0.gguf +3 -0
- README.md +47 -0
- featherless-quants.png +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 |
+
Nekochu-Luminia-13B-v3-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Nekochu-Luminia-13B-v3-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Nekochu-Luminia-13B-v3-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Nekochu-Luminia-13B-v3-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Nekochu-Luminia-13B-v3-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Nekochu-Luminia-13B-v3-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Nekochu-Luminia-13B-v3-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Nekochu-Luminia-13B-v3-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Nekochu-Luminia-13B-v3-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Nekochu-Luminia-13B-v3-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Nekochu-Luminia-13B-v3-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
featherless-quants.png filter=lfs diff=lfs merge=lfs -text
|
Nekochu-Luminia-13B-v3-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc8cc4811cfc32b5d4464d41b666b32df31b5e691f5558b3e063d370bfea7886
|
| 3 |
+
size 7019519776
|
Nekochu-Luminia-13B-v3-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28a3323a2ca6b261c2336243b33a685d6055bb6887b25afbabe4271f1a27c7a9
|
| 3 |
+
size 4854271776
|
Nekochu-Luminia-13B-v3-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbdcb3d7b1f39386f2cf60c47a4a00cc04ea257495b59b9cd02bf3bb4831ed58
|
| 3 |
+
size 6929561376
|
Nekochu-Luminia-13B-v3-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ecf4ff936bc619628df1ed274cb085746e9d6595ed6a8748bb2c8bcab028afb
|
| 3 |
+
size 6337771296
|
Nekochu-Luminia-13B-v3-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26af6fc49490a89751b1cbd37e7281bab30dd3d9ca35eed730d22045aee0759a
|
| 3 |
+
size 5658982176
|
Nekochu-Luminia-13B-v3-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa9d8dda279b08c2e7eaf105cd2ef313f4c66f6dd3dba1891f37f72f2626ce06
|
| 3 |
+
size 7865958176
|
Nekochu-Luminia-13B-v3-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9608b19a74d2da08c8b352f7a5dfed60041f6e29c11761120e5c0879cd4e963
|
| 3 |
+
size 7423180576
|
Nekochu-Luminia-13B-v3-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:202af8edf1c7b839f05c249bb447bf471a761507897cf2d8ca4662438161b4e0
|
| 3 |
+
size 9229926176
|
Nekochu-Luminia-13B-v3-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56f763976899d1e9b18dafabc021cc81a10f82b90eda4f36cc9445d7d1ea8d68
|
| 3 |
+
size 8972287776
|
Nekochu-Luminia-13B-v3-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d556824426af4754c161f883c81e88783d57750a436a57e759cb50eed85124a
|
| 3 |
+
size 10679142176
|
Nekochu-Luminia-13B-v3-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfe539ce7b05a6a0c0bceae6dcc7cf3640307e2dee097431151869d852e11b51
|
| 3 |
+
size 13831321376
|
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Nekochu-Luminia-13B-v3
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Nekochu-Luminia-13B-v3 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 | [Nekochu-Luminia-13B-v3-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-IQ4_XS.gguf) | 6694.34 MB |
|
| 21 |
+
| Q2_K | [Nekochu-Luminia-13B-v3-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q2_K.gguf) | 4629.39 MB |
|
| 22 |
+
| Q3_K_L | [Nekochu-Luminia-13B-v3-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q3_K_L.gguf) | 6608.54 MB |
|
| 23 |
+
| Q3_K_M | [Nekochu-Luminia-13B-v3-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q3_K_M.gguf) | 6044.17 MB |
|
| 24 |
+
| Q3_K_S | [Nekochu-Luminia-13B-v3-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q3_K_S.gguf) | 5396.83 MB |
|
| 25 |
+
| Q4_K_M | [Nekochu-Luminia-13B-v3-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q4_K_M.gguf) | 7501.56 MB |
|
| 26 |
+
| Q4_K_S | [Nekochu-Luminia-13B-v3-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q4_K_S.gguf) | 7079.30 MB |
|
| 27 |
+
| Q5_K_M | [Nekochu-Luminia-13B-v3-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q5_K_M.gguf) | 8802.34 MB |
|
| 28 |
+
| Q5_K_S | [Nekochu-Luminia-13B-v3-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q5_K_S.gguf) | 8556.64 MB |
|
| 29 |
+
| Q6_K | [Nekochu-Luminia-13B-v3-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q6_K.gguf) | 10184.42 MB |
|
| 30 |
+
| Q8_0 | [Nekochu-Luminia-13B-v3-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/Nekochu-Luminia-13B-v3-GGUF/blob/main/Nekochu-Luminia-13B-v3-Q8_0.gguf) | 13190.58 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
|