CoolFace
Modelpublic

XythicK/Mag-Mell-R1-Uncensored-21B-GGUF

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes777downloads
Model Card

Mag-Mell-R1-Uncensored-21B-GGUF

๐Ÿง  Model Overview

Mag-Mell-R1-Uncensored-21B-GGUF is a quantized version of Mag-Mell-R1-Uncensored-21B, optimized for efficient inference with reduced memory usage and faster runtime while preserving as much of the original model quality as possible.

This repository provides multiple quantized variants suitable for:

  • โ€”Local inference
  • โ€”Low-VRAM GPUs
  • โ€”CPU-only environments

๐Ÿ”— Original Model

  • โ€”Base model: Mag-Mell-R1-Uncensored-21B
  • โ€”Original repository: https://huggingface.co/JustOnion/Mag-Mell-R1-Uncensored-21B
  • โ€”Original authors: JustOnion

๐Ÿ“ฆ Quantization Details

  • โ€”Quantization method: GGUF
  • โ€”Quantization tool: llama.cpp
  • โ€”Precision: Mixed (2-8,bit depands in variant)
  • โ€”Activation aware: No (weight-only quantinization)
  • โ€”Group size: 256 (K-quant variants)

๐Ÿ“ฆ Available Quantized Files

Quant FormatFile NameApprox. SizeVRAM / RAM NeededNotes
Q2_Kmag-mell-r1-uncensored-21b-q2_k.gguf~7.8 GB~8 GBExtreme compression; noticeable quality loss
Q3KSmag-mell-r1-uncensored-21b-q3_k_s.gguf~9 GB~10 GBSmaller, faster, lower quality
Q3KMmag-mell-r1-uncensored-21b-q3_k_m.gguf~10 GB~11 GBBetter balance than Q3KS
Q3KLmag-mell-r1-uncensored-21b-q3_k_l.gguf~10.8 GB~11.5 GBHighest-quality 3-bit variant
Q4_0mag-mell-r1-uncensored-21b-q4_0.gguf~11.7 GB~12.9 GBLegacy format; simpler quantization
Q4KSmag-mell-r1-uncensored-21b-q4_k_s.gguf~11.7 GB~13 GBSmaller grouped 4-bit
Q4KMmag-mell-r1-uncensored-21b-q4_k_m.gguf~12.4 GB~14 GBRecommended default
Q5_0mag-mell-r1-uncensored-21b-q5_0.gguf~14.1 GB~16 GBHigher quality, larger size
Q5KSmag-mell-r1-uncensored-21b-q5_k_s.gguf~14 GB~15.1 GBEfficient high-quality variant
Q5KMmag-mell-r1-uncensored-21b-q5_K_M.gguf~14.5 GB~16 GBNear-FP16 quality
Q6_Kmag-mell-r1-uncensored-21b-q6_k.gguf~16.8 GB~18 GBMinimal quantization loss
Q8_0mag-mell-r1-uncensored-21b-q8_0.gguf~21.6 GB~23 GBMaximum quality; large memory
๐Ÿ’ก Recommendation: Start with Q4_K_M for the best quality-to-performance ratio.

๐Ÿš€ Usage Example

llama.cpp

bash
./main -m mag-mell-r1-uncensored-21b-q5_0.gguf -p "The World is beautiful isn't it?" -n 256

Python (llama-cpp-python)

Python
from llama_cpp import Llama

llm = Llama(
    model_path="<MODEL_FILE>.gguf",
    n_ctx=4096,
    n_threads=8
)

print(llm("Your prompt here"))

๐Ÿ™‹ Contact

Maintainer: M Mashhudur Rahim [XythicK]

Role: Independent Machine Learning Researcher & Model Infrastructure Maintainer

(Focused on model quantization, optimization, and efficient deployment)

For issues, improvement requests, or additional quantization formats, please use the Hugging Face Discussions or Issues tab.

โค๏ธ Acknowledgements

Thanks to the original model authors for their ongoing contributions to open AI research, and to Hugging Face and the open-source machine learning community for providing the tools and platforms that make efficient model sharing and deployment possible.