← back to catalog · registered 2026-09-11 08:55

jan1k/Qwen3.5-9B-Uncensored-Genesis-NVFP4-GGUF

jan1k 9B GGUF multimodal second-order
Abliteration classifier · v1.0.0
M-U
Primary method

Uncensored (method unknown)

No other method signals detected in this model.
Confidence
LOW
Why this label 3 signals
Weak or ambiguous signals. Best guess based on catalog patterns; treat as tentative and check the evidence below.
  • 'uncensored' in name/tags but no 'abliterated' marker
  • method not identifiable from author declaration alone
  • may be DPO fine-tune, prompt engineering, or unknown technique
Refusal direction extraction

No specific extraction method could be identified for this model. The producer either did not document it or used a proprietary pipeline.

What is a refusal direction? →
Downloads · 30-day
0
Likes
0
Model age
today
created 2026-09-11

Genealogy 0 direct forks

Full fork graph →

This model's place in the market. Above: what it was derived from. Below: the tree of everything derived from it.

Metadata

License
apache-2.0
Languages
en multilingual
Tags
gguf text-generation nvfp4 fp4 qwen3.5 uncensored vision multimodal genesis llama-cpp image-text-to-text conversational

Related

Total size
4.91 GB
Files
5
Quantizations
2
Registered
2026-09-11 08:55
Last updated on HF
2026-09-11 11:59

Files by quantization

BF16 1 file 879 MB
mmproj-Qwen3.5-9B-Uncensored-Genesis-BF16.gguf 879 MB 410f2e5a download
Auxiliary files 4 files 4.91 GB
Qwen3.5-9B-Uncensored-Genesis-NVFP4.gguf 4.91 GB df757089 download
chat_template.jinja 12.6 KB 76ffc334 download
README.md 5.47 KB a29f9503 download
.gitattributes 1.64 KB 2ae19a8e download

README current version from Hugging Face


license: apache-2.0
tags:

  • text-generation
  • gguf
  • nvfp4
  • fp4
  • qwen3.5
  • uncensored
  • vision
  • multimodal
  • genesis
  • llama-cpp
    language:
  • en
  • multilingual
    pipeline_tag: image-text-to-text
    base_model:
  • HauhauCS/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive
    base_model_relation: quantized

🌟 Qwen3.5-9B-Uncensored-Genesis-NVFP4-GGUF

This repository contains the NVFP4 (NVIDIA 4-bit Floating Point) quantized GGUF release of Qwen3.5-9B-Uncensored repaired with LuffyTheFox's Genesis calibration algorithm.

  • Original Base Model: HauhauCS/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive
  • Genesis Tensor Repair: LuffyTheFox
  • NVFP4 Quantization: jan1k
  • Quantization Format: NVFP4 (NVIDIA FP4) GGUF (optimized for NVIDIA Blackwell, Ada Lovelace, and Ampere GPUs via llama.cpp NVFP4 CUDA kernels)
  • Model Architecture: Dense 9B Parameters, hybrid SSM (DeltaNet / Gated Linear Attention) + full attention
  • Context Length: 262K native context
  • Multimodal (Vision): Supported via mmproj-Qwen3.5-9B-Uncensored-Genesis-BF16.gguf

⚡ What is Genesis?

Genesis is a post-training data regeneration and calibration algorithm for neural networks (LLM) in GGUF format developed by LuffyTheFox over almost half a year of development with AI assistance. It is optimized, architecture-independent, works with any model in GGUF format, and is based on mathematical statistics.

LLM models often suffer from:

  • Saturated weights: activations get stuck, gradients vanish, outputs degrade.
  • Scale mismatches: one layer's weights are 10× larger than peers for no valid reason.
  • Mean drift: weight distributions shifted positive or negative, breaking symmetry assumptions.
  • Zero blocks: zero blocks corrupt the signal, turning training into noise amplification.
  • Training noise: increases randomness and ruins output quality.

Genesis fixes all of that without retraining — pure numerical surgery on the raw bytes of the file:

  1. Stage 1: Scans ssm_conv1d tensors (handling long-context memory) and repairs balance between heads.
  2. Stage 2: Scans blocks in chunks (via 3 parameters) and picks the best fit to weight distribution in the tensor, replacing zero blocks without touching learned structure.
  3. Stage 3: Scans for noise via custom SVD (excluding token_embd.weight, output.weight, 1D tensors, bias, and norms). Reduces training noise based on the Marchenko–Pastur law while preserving 99% of signal and learned gradient.

⚡ Sampling Recommendations (Genesis SVD Stabilization)

Due to the removal of tensor noise via Marchenko–Pastur SVD noise-gate stabilization, the model is most stable when Top P and Min P are disabled for coding and precise tasks. Only Temperature and Top K should be used for these profiles.

Recommended Parameters:

Profile Mode Temperature Top P Top K Min P Seed Presence Penalty Repeat Penalty
Coding / Precise Thinking ON 0.6 Disabled (1.0) 20 Disabled (0.0) 42 Disabled (0.0) 1.0 (or 1.05 for agent)
Creative / Roleplay Thinking OFF 1.0 Disabled (1.0) 20 Disabled (0.0) 42 Disabled (0.0) 1.0
Relaxed / Brainstorm Thinking OFF 1.0 0.95 40 0.05 42 Disabled (0.0) 1.0

🚀 Usage Examples (llama-server / llama.cpp)

1. Standard NVFP4 Inference (Thinking ON, 128K Context)

llama-server \
  --host 0.0.0.0 --port 8080 \
  --model Qwen3.5-9B-Uncensored-Genesis-NVFP4.gguf \
  --n-gpu-layers all \
  --flash-attn on \
  --cache-type-k f16 \
  --cache-type-v f16 \
  --ctx-size 131072 \
  --parallel 1 \
  --batch-size 2048 \
  --ubatch-size 512 \
  --temp 0.6 \
  --top-p 1.0 \
  --top-k 20 \
  --min-p 0.0 \
  --seed 42 \
  --presence-penalty 0 \
  --repeat-penalty 1.0 \
  --jinja \
  --chat-template-file chat_template.jinja \
  --reasoning on \
  --reasoning-effort high \
  --reasoning-preserve \
  --reasoning-format deepseek \
  --chat-template-kwargs '{"enable_thinking":true}'

2. Vision (Multimodal) Support

To enable image understanding, pass the multimodal projector:

  --mmproj mmproj-Qwen3.5-9B-Uncensored-Genesis-BF16.gguf

📦 Files in this Repository

File Size Description
Qwen3.5-9B-Uncensored-Genesis-NVFP4.gguf ~4.90 GiB Main NVFP4 quantized model (quantized by jan1k)
mmproj-Qwen3.5-9B-Uncensored-Genesis-BF16.gguf ~879 MiB Vision multimodal projector (BF16)
chat_template.jinja ~12.9 KiB Jinja chat template with reasoning and tool calling support

🤝 Credits & Attribution

⚡ If you like this Genesis release, consider supporting LuffyTheFox via Telegram Tribute or Hipolink.

Catalog is the map. Apps are the tools.

Run models on your own machine, not in the cloud.

Every model page has an "Open in app" button that hands off directly to a local runtime of your choice - Infrahuman, LM Studio, or Ollama. No API keys, no subscription, no prompt leakage.