CobrIX-1.0-Coder-Full-MoE — GGUF

CobrIX-1.0-Coder-Full-MoE is a custom Mixture-of-Experts (MoE) coding model distributed in ready-to-use GGUF format.

The model is built from the dense Qwen 3.5 base model empero-ai/Qwythos-9B-v2 and incorporates 13 specialized dense Qwen 3.5 fine-tuned experts, without relying on CobrIXKit.

The GGUF files provided in this repository are already quantized and can be used directly with compatible inference applications such as llama.cpp, LM Studio, Ollama, and other GGUF-compatible runtimes.


🚀 Download

Choose the quantization according to your available RAM/VRAM and desired quality.

File Quantization Approx. BPW Recommended For
CobrIX-1.0-Coder-Full-72B-A18B-Q3_K_M.gguf Q3_K_M ~3.5 bpw Low-VRAM systems
CobrIX-1.0-Coder-Full-72B-A18B-Q4_K_M.gguf Q4_K_M ~4.8 bpw ⭐ Best balance
CobrIX-1.0-Coder-Full-72B-A18B-Q5_K_M.gguf Q5_K_M ~5.5 bpw Higher quality
CobrIX-1.0-Coder-Full-72B-A18B-Q8_0.gguf Q8_0 ~8.5 bpw Maximum GGUF quality

⭐ Recommended

For most users, Q4_K_M is the recommended version:

CobrIX-1.0-Coder-Full-72B-A18B-Q4_K_M.gguf

It provides a strong balance between model quality, memory usage, and inference performance.


🧠 Model Overview

CobrIX-1.0-Coder-Full-MoE is designed as a powerful AI coding copilot, optimized for software engineering, technical reasoning, code generation, debugging, and complex development workflows.

Model characteristics

  • Architecture: Mixture-of-Experts (MoE)
  • Total parameters: ~72B
  • Active parameters: ~18B per token
  • Experts: 13
  • Experts activated per token: 2
  • Shared expert: 1
  • Context window: up to 1,048,576 tokens
  • Format: GGUF
  • Primary use: Advanced coding and software engineering
  • Languages: Portuguese and English

⚡ Capabilities

💻 Advanced Programming

The Full version is designed for demanding software engineering tasks, including:

  • Python
  • JavaScript
  • TypeScript
  • React
  • Next.js
  • Node.js
  • Backend development
  • Frontend development
  • APIs
  • Databases
  • Debugging
  • Refactoring
  • Software architecture
  • Automation
  • DevOps
  • System design

🧩 Complex Reasoning

The model is designed to handle complex technical problems involving:

  • Multi-step reasoning
  • Code analysis
  • Architecture decisions
  • Debugging complex systems
  • Large codebases
  • Technical planning
  • Problem decomposition
  • Optimization

🔐 Cybersecurity

The model also provides capabilities for:

  • Security-oriented code analysis
  • Vulnerability analysis
  • Secure programming
  • Security scripting
  • Application-security concepts
  • Infrastructure security analysis

The primary focus remains programming and software engineering.


🏗️ Architecture

CobrIX-1.0-Coder-Full-MoE uses a custom Mixture-of-Experts architecture based on the Qwen 3.5 model family.

Model class

Qwen35MoEForCausalLM

Model type

qwen35_moe

Context window

The architecture supports a native context window of:

1,048,576 tokens

Configuration:

max_position_embeddings = 1048576

Expert routing

The model contains:

13 total experts
2 experts activated per token

This uses Top-2 routing, where the router selects two experts from the thirteen available experts for each token.

Shared expert

The architecture also contains one shared expert that remains active for every token.

num_shared_experts = 1

The shared expert is based on the base model's MLP and uses a sigmoid gating mechanism.


📦 GGUF Quantizations

Q3_K_M

CobrIX-1.0-Coder-Full-72B-A18B-Q3_K_M.gguf

The smallest provided quantization.

Recommended when memory usage is the primary concern.

Advantages:

  • Lowest memory requirements
  • Better performance on limited hardware
  • Suitable for systems with limited VRAM/RAM

Trade-off:

  • Lower quality than Q4, Q5, and Q8

Q4_K_M ⭐ Recommended

CobrIX-1.0-Coder-Full-72B-A18B-Q4_K_M.gguf

The recommended general-purpose quantization.

Advantages:

  • Excellent quality/size balance
  • Good inference performance
  • Suitable for a wide range of systems
  • Recommended for everyday coding and development

Q5_K_M

CobrIX-1.0-Coder-Full-72B-A18B-Q5_K_M.gguf

Provides higher precision than Q4_K_M.

Recommended when additional memory is available and higher model quality is preferred.


Q8_0

CobrIX-1.0-Coder-Full-72B-A18B-Q8_0.gguf

The highest-precision GGUF quantization provided in this repository.

Recommended for systems with sufficient memory where maximum GGUF quality is preferred.


🦙 Using with llama.cpp

The GGUF files can be loaded directly using llama.cpp.

Example using llama-cli:

llama-cli \
  -m CobrIX-1.0-Coder-Full-72B-A18B-Q4_K_M.gguf \
  -p "Write a Python script to set up an async web server using FastAPI." \
  -n 512 \
  -ngl 99 \
  -c 4096

Important

The -c 4096 value in this example is only an example context size.

The model supports a native context window of up to:

1,048,576 tokens

However, using very large context sizes requires significantly more memory and depends on the inference backend and available hardware.


🐍 Python — llama-cpp-python

Install the Python binding:

pip install llama-cpp-python

Then:

from llama_cpp import Llama

llm = Llama(
    model_path="./CobrIX-1.0-Coder-Full-72B-A18B-Q4_K_M.gguf",
    n_gpu_layers=-1,
    n_ctx=4096,
    verbose=True
)

output = llm(
    "Hello, how can I optimize a React re-render loop?",
    max_tokens=128,
    stop=["<|endoftext|>"],
    echo=False
)

print(output["choices"][0]["text"])

🖥️ LM Studio

The GGUF files can also be loaded into LM Studio.

Steps

  1. Download the desired .gguf file from this repository.
  2. Open LM Studio.
  3. Import or place the GGUF file in your local model directory.
  4. Select the model.
  5. Configure the desired GPU offloading and context size.
  6. Start the model.

For most users, start with:

Q4_K_M

and increase the quantization if additional memory is available.


🦙 Ollama

The GGUF weights can also be used with compatible Ollama workflows.

Create a Modelfile:

FROM ./CobrIX-1.0-Coder-Full-72B-A18B-Q4_K_M.gguf

Then create the model:

ollama create cobrix-1.0-coder-full -f Modelfile

Run it:

ollama run cobrix-1.0-coder-full

📊 Quantization Selection

A simple recommendation:

Limited VRAM/RAM
        │
        ▼
      Q3_K_M
        │
        ▼
     Q4_K_M ⭐
        │
        ▼
      Q5_K_M
        │
        ▼
       Q8_0
        │
        ▼
Higher quality / higher memory usage

For general-purpose usage:

Q4_K_M is the recommended starting point.

For maximum available quality:

Q8_0 is recommended when sufficient memory is available.


🎯 Intended Use

CobrIX-1.0-Coder-Full-MoE is intended primarily for:

  • Advanced software development
  • AI-assisted programming
  • Code generation
  • Complex debugging
  • Code refactoring
  • Technical reasoning
  • Application development
  • Web development
  • Backend development
  • Frontend development
  • Automation
  • DevOps
  • Software architecture
  • Developer assistance

The model is designed to work best as a human-supervised coding copilot, where the developer reviews and validates generated code.


⚠️ Disclaimer

Generated code should always be reviewed and tested before being used in production environments.

The model may produce incorrect, outdated, insecure, or hallucinated information.

Do not blindly execute generated commands or deploy generated code without appropriate validation and security review.


📜 License

This repository is released under the MIT License.

Please also review the licensing and terms of the underlying base model and any models or datasets used during the creation of the experts.


❤️ Support CobrIX

Developing and maintaining custom AI architectures such as CobrIX-1.0-Coder-Full-MoE requires computing resources, model development, experimentation, infrastructure, and ongoing maintenance.

If this project is useful to you or your organization, you can support the development of open AI infrastructure and future model releases through the wallets below.

Bitcoin (BTC)

bc1q8mu8fjak4y84qj4dlk8pu4d3zhknm92zra4r4m

Ethereum (ETH / ERC-20)

0x8D9187dEa0a77390ef668361cd5b236DE54af2BB

Solana (SOL)

GQR2jZnWuWP1c3dbuz4mC7ZnyveacBKy63q8qf9nj8bp

All donations help support:

  • AI infrastructure
  • Compute resources
  • Open-source model development
  • Model experimentation
  • Future CobrIX releases
  • Community support

Thank you to all developers, researchers, enthusiasts, and contributors supporting the development of open and accessible artificial intelligence.


🌎 CobrIX

CobrIX-1.0-Coder-Full-MoE

A powerful open AI coding copilot powered by a custom Mixture-of-Experts architecture.

Downloads last month
112
GGUF
Model size
72B params
Architecture
qwen35moe
Hardware compatibility
Log In to add your hardware

3-bit

4-bit

5-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for CobrIX/CobrIX-1.0-Coder-Full-72B-A18B-GGUF

Finetuned
Qwen/Qwen3.5-9B
Quantized
(29)
this model