Instructions to use featherless-ai-quants/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.numind-NuExtract-1.5-tiny-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-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/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +47 -0
- featherless-quants.png +3 -0
- numind-NuExtract-1.5-tiny-IQ4_XS.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q2_K.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q3_K_L.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q3_K_M.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q3_K_S.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q4_K_M.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q4_K_S.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q5_K_M.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q5_K_S.gguf +3 -0
- numind-NuExtract-1.5-tiny-Q6_K.gguf +3 -0
- numind-NuExtract-1.5-tiny-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 |
+
numind-NuExtract-1.5-tiny-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
numind-NuExtract-1.5-tiny-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
numind-NuExtract-1.5-tiny-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
numind-NuExtract-1.5-tiny-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
numind-NuExtract-1.5-tiny-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
numind-NuExtract-1.5-tiny-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
numind-NuExtract-1.5-tiny-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
numind-NuExtract-1.5-tiny-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
numind-NuExtract-1.5-tiny-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
numind-NuExtract-1.5-tiny-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
numind-NuExtract-1.5-tiny-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: numind/NuExtract-1.5-tiny
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# numind/NuExtract-1.5-tiny 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 | [numind-NuExtract-1.5-tiny-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-IQ4_XS.gguf) | 335.16 MB |
|
| 21 |
+
| Q2_K | [numind-NuExtract-1.5-tiny-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q2_K.gguf) | 322.92 MB |
|
| 22 |
+
| Q3_K_L | [numind-NuExtract-1.5-tiny-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q3_K_L.gguf) | 352.25 MB |
|
| 23 |
+
| Q3_K_M | [numind-NuExtract-1.5-tiny-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q3_K_M.gguf) | 339.00 MB |
|
| 24 |
+
| Q3_K_S | [numind-NuExtract-1.5-tiny-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q3_K_S.gguf) | 322.59 MB |
|
| 25 |
+
| Q4_K_M | [numind-NuExtract-1.5-tiny-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q4_K_M.gguf) | 379.38 MB |
|
| 26 |
+
| Q4_K_S | [numind-NuExtract-1.5-tiny-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q4_K_S.gguf) | 367.61 MB |
|
| 27 |
+
| Q5_K_M | [numind-NuExtract-1.5-tiny-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q5_K_M.gguf) | 400.63 MB |
|
| 28 |
+
| Q5_K_S | [numind-NuExtract-1.5-tiny-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q5_K_S.gguf) | 393.59 MB |
|
| 29 |
+
| Q6_K | [numind-NuExtract-1.5-tiny-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q6_K.gguf) | 482.31 MB |
|
| 30 |
+
| Q8_0 | [numind-NuExtract-1.5-tiny-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/numind-NuExtract-1.5-tiny-GGUF/blob/main/numind-NuExtract-1.5-tiny-Q8_0.gguf) | 506.47 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
|
numind-NuExtract-1.5-tiny-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:296c8459be724b04faed9f0696fd915c1d3cbe289d8c0cb2eb2161a6d10df46e
|
| 3 |
+
size 351445152
|
numind-NuExtract-1.5-tiny-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0abfd9c052d1fb0136a9b2c5adc917ccd3be09ec06a00f561cb0e8986cbaaf8a
|
| 3 |
+
size 338607264
|
numind-NuExtract-1.5-tiny-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca0c46b103e921b62936266db4a068b179d6bb668704d3d3184e6ed11860c94e
|
| 3 |
+
size 369357984
|
numind-NuExtract-1.5-tiny-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58f3635a32352b8c6d1c758122bc3e577dede393040e2b5d5d2b8ac8e6ea900e
|
| 3 |
+
size 355466400
|
numind-NuExtract-1.5-tiny-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0bc5bb5533bc40ff67323fc6c7427ef93212c576ab3fb5d824729dad8bfb2b98
|
| 3 |
+
size 338263200
|
numind-NuExtract-1.5-tiny-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdc0ba795ad84968461288baacaacf4183562f70486cd4af5665be8a24bb6660
|
| 3 |
+
size 397807776
|
numind-NuExtract-1.5-tiny-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9bc628734128a7997d4e28cf55623a232320743569c6a72f20a9447b5ededc8
|
| 3 |
+
size 385471648
|
numind-NuExtract-1.5-tiny-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70f4a6fa94f5743c108868a0f21bac8e2027a236be10a6c7547ffad8857455c6
|
| 3 |
+
size 420085920
|
numind-NuExtract-1.5-tiny-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da43360d43bcf81a2350fd04042ca457793b4f6831b576081027eb19a6f923c7
|
| 3 |
+
size 412710048
|
numind-NuExtract-1.5-tiny-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e033fd26ffe5e81535ffd24701fa60e947c9e6d3ae1306b5381de5a91a4cd09a
|
| 3 |
+
size 505736352
|
numind-NuExtract-1.5-tiny-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1391aa468a4b33a36357950fbbd236e9e5e432a72d31a24352becceaee270cb2
|
| 3 |
+
size 531068064
|