Instructions to use LGxNDs/Geeked-Out-Quantization-Software with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use LGxNDs/Geeked-Out-Quantization-Software with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="LGxNDs/Geeked-Out-Quantization-Software", filename="Qwen3.6-GeekedOutAi-35B-A3B-BF16-IQ2_M-00001-of-00002.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use LGxNDs/Geeked-Out-Quantization-Software with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_M # Run inference directly in the terminal: llama-cli -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_M # Run inference directly in the terminal: llama-cli -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_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 LGxNDs/Geeked-Out-Quantization-Software:IQ2_M # Run inference directly in the terminal: ./llama-cli -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_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 LGxNDs/Geeked-Out-Quantization-Software:IQ2_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
Use Docker
docker model run hf.co/LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
- LM Studio
- Jan
- Ollama
How to use LGxNDs/Geeked-Out-Quantization-Software with Ollama:
ollama run hf.co/LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
- Unsloth Studio new
How to use LGxNDs/Geeked-Out-Quantization-Software 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 LGxNDs/Geeked-Out-Quantization-Software 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 LGxNDs/Geeked-Out-Quantization-Software to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for LGxNDs/Geeked-Out-Quantization-Software to start chatting
- Pi new
How to use LGxNDs/Geeked-Out-Quantization-Software with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_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": "LGxNDs/Geeked-Out-Quantization-Software:IQ2_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use LGxNDs/Geeked-Out-Quantization-Software with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf LGxNDs/Geeked-Out-Quantization-Software:IQ2_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 LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
Run Hermes
hermes
- Docker Model Runner
How to use LGxNDs/Geeked-Out-Quantization-Software with Docker Model Runner:
docker model run hf.co/LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
- Lemonade
How to use LGxNDs/Geeked-Out-Quantization-Software with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LGxNDs/Geeked-Out-Quantization-Software:IQ2_M
Run and chat with the model
lemonade run user.Geeked-Out-Quantization-Software-IQ2_M
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,54 +1,110 @@
|
|
| 1 |
---
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
tags:
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
- gguf
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- iq2-m
|
| 10 |
|
| 11 |
-
- qwen
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
license: other
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
-
# Qwen3.6 - IQ2_M 2-Bit Quantized Model
|
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
|
|
|
|
| 28 |
|
| 29 |
-
## Model Details
|
| 30 |
|
| 31 |
-
| Property | Value |
|
| 32 |
|
| 33 |
-
|----------|-------|
|
| 34 |
|
| 35 |
-
| Architecture | Qwen35Moe |
|
| 36 |
|
| 37 |
-
| Context Length | 262,144 tokens |
|
| 38 |
|
| 39 |
-
| Quantization Scheme | IQ2_M (2-bit) |
|
| 40 |
|
| 41 |
-
|
| 42 |
|
| 43 |
-
| Total Parameters | ~35B (with MoE routing) |
|
| 44 |
|
| 45 |
-
| File Size | ~8.3 GB + ~3.4 GB |
|
| 46 |
|
| 47 |
|
| 48 |
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
-
The **IQ2_M** quantization scheme is part of the Intelligent Quants (IQ) family developed for efficient model inference:
|
| 52 |
|
| 53 |
- Mixed precision - different weights receive varying bit allocations based on their sensitivity and importance
|
| 54 |
-
|
|
@@ -60,9 +116,21 @@ The **IQ2_M** quantization scheme is part of the Intelligent Quants (IQ) family
|
|
| 60 |
-
|
| 61 |
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
## Supported Use Cases
|
| 64 |
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
- Conversational AI applications
|
| 68 |
-
|
|
@@ -74,19 +142,42 @@ This quantized model is designed for:
|
|
| 74 |
-
|
| 75 |
|
| 76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
## Usage Instructions
|
| 78 |
|
| 79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
|
| 81 |
|
| 82 |
|
| 83 |
## Technical Notes
|
| 84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
- IQ2_M quantization maintains conversational capability while achieving significant size reduction
|
| 86 |
-
|
| 87 |
- Compatible with llama.cpp, LM Studio, Jan, and other local inference frameworks
|
| 88 |
-
|
| 89 |
- Uses imatrix-based calibration for optimal quantization quality
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
|
| 91 |
|
| 92 |
|
|
|
|
| 1 |
---
|
| 2 |
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
title: IQ2_M - GeekedOut Quantizer
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
|
| 13 |
tags:
|
| 14 |
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
- gguf
|
| 20 |
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
- iq2-m
|
| 26 |
|
|
|
|
| 27 |
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
- quantization
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
- geeked-out
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
|
| 42 |
|
| 43 |
license: other
|
| 44 |
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
|
| 49 |
---
|
| 50 |
|
| 51 |
|
| 52 |
|
|
|
|
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
+
|
| 57 |
+
# IQ2_M - GeekedOut Quantizer
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
|
| 61 |
|
| 62 |
|
| 63 |
+
GeekedOut Quantizer is a specialized 2-bit quantization tool that implements the IQ2_M (Intelligent Quants) scheme for efficient model compression. This repository showcases IQ2_M quantized models with extreme low-bit precision while preserving critical model capabilities through intelligent weight allocation.
|
| 64 |
|
|
|
|
| 65 |
|
|
|
|
| 66 |
|
|
|
|
| 67 |
|
|
|
|
| 68 |
|
|
|
|
| 69 |
|
|
|
|
| 70 |
|
| 71 |
+
## About GeekedOut Quantizer
|
| 72 |
|
|
|
|
| 73 |
|
|
|
|
| 74 |
|
| 75 |
|
| 76 |
|
| 77 |
+
GeekedOut Quantizer is an advanced quantization framework designed to:
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
- Achieve 2-bit compression using the IQ2_M scheme
|
| 84 |
+
-
|
| 85 |
+
- Maintain high-quality inference performance
|
| 86 |
+
-
|
| 87 |
+
- Support GGUF format for local deployment
|
| 88 |
+
-
|
| 89 |
+
- Optimize memory efficiency through mixed-precision techniques
|
| 90 |
+
-
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
## IQ2_M Quantization Features
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
|
| 103 |
+
The **IQ2_M** (Intelligent Quants) quantization scheme features:
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
|
| 107 |
|
|
|
|
| 108 |
|
| 109 |
- Mixed precision - different weights receive varying bit allocations based on their sensitivity and importance
|
| 110 |
-
|
|
|
|
| 116 |
-
|
| 117 |
|
| 118 |
|
| 119 |
+
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
|
| 123 |
## Supported Use Cases
|
| 124 |
|
| 125 |
+
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
|
| 129 |
+
GeekedOut Quantizer models are designed for:
|
| 130 |
+
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
|
| 134 |
|
| 135 |
- Conversational AI applications
|
| 136 |
-
|
|
|
|
| 142 |
-
|
| 143 |
|
| 144 |
|
| 145 |
+
|
| 146 |
+
|
| 147 |
+
|
| 148 |
+
|
| 149 |
## Usage Instructions
|
| 150 |
|
| 151 |
+
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
To load IQ2_M quantized models locally using llama.cpp or compatible inference frameworks. The GGUF files are split into two parts for efficient storage (00001-of-00002 and 00002-of-00002).
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
|
| 160 |
|
| 161 |
|
| 162 |
|
| 163 |
## Technical Notes
|
| 164 |
|
| 165 |
+
|
| 166 |
+
|
| 167 |
+
|
| 168 |
+
|
| 169 |
- IQ2_M quantization maintains conversational capability while achieving significant size reduction
|
| 170 |
-
|
| 171 |
- Compatible with llama.cpp, LM Studio, Jan, and other local inference frameworks
|
| 172 |
-
|
| 173 |
- Uses imatrix-based calibration for optimal quantization quality
|
| 174 |
+
-
|
| 175 |
+
- Developed by GeekedOut - focused on intelligent quantization methods
|
| 176 |
+
|
| 177 |
+
|
| 178 |
+
|
| 179 |
+
|
| 180 |
+
|
| 181 |
|
| 182 |
|
| 183 |
|