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
Quantization Notes
Overview
This model was quantized using The Geeked Out Quantizer, a specialized Windows-native quantization environment designed for extreme compression with quality preservation.
Quantization Specifications
| Parameter | Details |
|---|---|
| Source Format | BF16 (bfloat16) or F16 (float16) |
| Target Format | IQ2_M (2.0 bits per weight) |
| Compression Ratio | 16x smaller than FP32 baseline |
| Quantization Method | Importance-aware quantization with IMatrix |
| Quality Metric | ~3-8% perplexity increase vs. baseline |
The Importance Matrix (IMatrix) Method
What is an Importance Matrix?
An importance matrix is a statistical analysis of a neural network that identifies which weights contribute most significantly to model output quality. Rather than applying uniform quantization across all tensors, this method:
- Preserves precision on high-impact weights
- Aggressively compresses low-impact weights
- Maintains information flow through the network architecture
Why It Matters
Traditional uniform quantization to 2-bit precision typically causes 10-20% quality degradation. The importance matrix approach reduces this to 3-8%, making 2-bit models viable for production use.
Calibration Process
Data Selection
The importance matrix is generated using carefully selected calibration data that:
- Represents the model's intended use domain
- Contains diverse vocabulary and sentence structures
- Includes 100-500 text chunks of typical prompt length
- Matches the distribution of expected inference inputs
Generation Parameters
| Setting | Typical Value | Purpose |
|---|---|---|
| Chunks | 200-500 | Balance quality vs. generation time |
| GPU Layers | 99 (max) | Accelerate processing via CUDA |
| Thread Count | Auto-detected | Optimize for hardware configuration |
Memory & Hardware Optimization
The quantization process includes:
- Dynamic memory management β Reserves system RAM to maintain Windows responsiveness
- Hardware detection β Automatically detects CPU cores, memory type (DDR4/DDR5), and GPU capabilities
- Thread optimization β Adjusts parallelism based on available resources
- Retry logic β Handles transient memory pressure gracefully
Model Selection Criteria
Source models are selected based on quality hierarchy:
- BF16 (preferred) β Best precision for quantization
- F16 β Good precision, widely available
- F32 β Acceptable but creates larger intermediate files
Models already in quantized formats are skipped unless explicitly re-quantizing.
Output Format Details
IQ2_M Characteristics
- Bit depth: 2.0 bits per weight
- Speed: 2-3x faster inference than F32
- VRAM usage: ~1/16th of FP32
- Imatrix required: Yes
- Quality tier: Best-in-class for 2-bit quantization
Naming Convention
Quantized models follow this pattern:
OriginalModel-BF16.gguf β OriginalModel-IQ2_M.gguf
Sharded models preserve shard numbering:
Model-00001-of-00004.gguf β Model-IQ2_M-00001-of-00004.gguf
Quality Verification
Models are validated through:
- Perplexity measurement against baseline
- Sample inference testing
- File integrity verification
Use Cases
IQ2_M quantized models are ideal for:
- Edge deployment β Minimal storage footprint
- Consumer hardware β Reduced VRAM requirements
- High-throughput inference β Faster token generation
- Bandwidth-constrained environments β Efficient distribution
Technical Notes
- Quantization performed on Windows with CUDA 12.4+ support
- GPU acceleration utilized for imatrix generation
- Multi-threaded processing with memory safety guards
- Compatible with llama.cpp inference engines
Citation
If you use this quantized model in research or applications, please acknowledge:
Quantized using The Geeked Out Quantizer with importance-aware IQ2_M optimization.
For questions about the quantization method or collaboration inquiries, please open a discussion on this model's page.