silx-ai/Quasar-Preview

Hugging Face Models Trending Models

Summary

SILX AI releases Quasar-Preview, an 18B parameter MoE foundation model with 2B active parameters and experimental 5M-token context, built on a hybrid recurrent/attention architecture and designed for decentralized training via Bittensor SN24.

Task: text-generation Tags: transformers, safetensors, quasar_long, text-generation, silx-ai, quasar-preview, quasar, foundation-model, moe, 18b, 2b-active, long-context, bittensor, sn24, decentralized-training, distillation, hybrid-transformer, loop-transformer, safe-nope, drope, conversational, custom_code, en, ar, license:mit, region:us
Original Article
View Cached Full Text

Cached at: 06/15/26, 12:49 AM

silx-ai/Quasar-Preview · Hugging Face

Source: https://huggingface.co/silx-ai/Quasar-Preview Quasar-Preview Foundation Model

Quasar-Previewis the first public model in SILX AI’sQuasar Foundation Modelseries.

It is an early preview checkpoint built to demonstrate the direction of the Quasar architecture at real scale: sparse MoE routing, hybrid recurrent/attention layers, and an experimental long-context configuration designed for future memory-based systems.

This isnot the finished Quasar model.

Quasar-Preview is the first public step in a larger series of Quasar models that will continue scaling through decentralized training, distillation, architecture improvements, and long-context research onBittensor SN24.


https://huggingface.co/silx-ai/Quasar-Preview#tldrTL;DR

  • First public Quasar model
  • ~18B total parameter MoE
  • ~2B active parameter path
  • Experimental 5M-token context configuration
  • Built withLoop Transformer + Quasar hybrid attention
  • IncludesQuasar / Raven / GLAhybrid layers
  • Designed forBittensor SN24 decentralized distillation
  • Trained on**>1T and <1.5T tokens**
  • Long-context extension path has received**<1B tokens**so far
  • Early preview checkpoint, not a final production/SOTA model

Quasar-Preview should be understood as anarchitecture preview and foundation checkpoint, not the final endpoint of the Quasar roadmap.


https://huggingface.co/silx-ai/Quasar-Preview#important-noteImportant Note

Quasar-Preview is an early model from our broader Quasar model series.

It is released to make the architecture public, allow miners and researchers to work with the model, and begin the next phase of decentralized scaling.

This model is:

  • Anearly preview checkpoint
  • Thefirst modelin a planned series of Quasar models
  • Trained on**>1T and <1.5T tokens**
  • Built forresearch, distillation, and SN24 training
  • Not yet the final Quasar model
  • Not intended to represent the final quality of the Quasar architecture

Performance is expected to improve through:

  • Iterative subnet training
  • Distillation cycles
  • Longer training runs
  • Stronger post-training
  • More long-context extension training
  • Future Quasar architecture updates

https://huggingface.co/silx-ai/Quasar-Preview#model-overviewModel Overview

FieldValueModel NameQuasar-PreviewModel FamilyQuasar Foundation ModelsOrganizationSILX AIModel Typequasar\_longArchitectureQuasar Long Hybrid TransformerTotal Parameters~18B classActive Parameters~2B class sparse MoE pathTraining StageEarly preview checkpointContext ConfigExperimental 5M-token configLong-Context MethodSafe NoPE / DrOPE-style stagingTokenizerQuasar tokenizer preserved from checkpoint lineagePrimary UseResearch, distillation, SN24 decentralized trainingLicenseMIT


https://huggingface.co/silx-ai/Quasar-Preview#what-is-active-in-this-checkpointWhat Is Active In This Checkpoint?

Quasar-Preview includes several architecture paths. Some are active in this checkpoint, while others are included for future Quasar versions.

ComponentStatus in Quasar-PreviewSparse MoEActiveQuasar hybrid layersActiveGLA branchActiveRaven branchActiveGQA compatibility attentionActive in this checkpointSafe NoPE / DrOPE-style context configActiveLoop Transformer scaffoldPresentLoop executionConfigured as single-loopLooped anchor injectionDisabledEngram memoryIncluded and loadable, not active by default5M contextConfig exposed, early long-context training only The goal of this release is to expose the first working Quasar architecture checkpoint while keeping the model stable for research and SN24 training.


https://huggingface.co/silx-ai/Quasar-Preview#quick-startQuick Start

Quasar-Preview uses custom architecture code.

Usetrust\_remote\_code=Truewhen loading the model.

from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

model_id = "SILX-AI/Quasar-Preview"

tokenizer = AutoTokenizer.from_pretrained(
    model_id,
    trust_remote_code=True
)

model = AutoModelForCausalLM.from_pretrained(
    model_id,
    trust_remote_code=True,
    torch_dtype=torch.bfloat16,
    device_map="auto"
)

prompt = "Explain the purpose of long-context models in simple terms."

inputs = tokenizer(prompt, return_tensors="pt").to(model.device)

with torch.no_grad():
    output = model.generate(
        **inputs,
        max_new_tokens=256,
        do_sample=True,
        temperature=0.7,
        top_p=0.9
    )

print(tokenizer.decode(output[0], skip_special_tokens=True))

https://huggingface.co/silx-ai/Quasar-Preview#inference-notesInference Notes

Quasar-Preview is an ~18B total parameter MoE checkpoint. Even though the active path is ~2B parameters, the full checkpoint still requires loading the model weights.

Actual memory usage depends on:

  • Precision
  • Quantization
  • Runtime implementation
  • Sequence length
  • Batch size
  • Device mapping
  • Whether long-context experiments are enabled

The 5M context configuration is experimental. Do not assume ordinary inference hardware can run full 5M-token contexts without specialized infrastructure.


https://huggingface.co/silx-ai/Quasar-Preview#quasar-preview-benchmark-snapshotQuasar-Preview Benchmark Snapshot

These are early benchmark results from the current Quasar checkpoint lineage.

They should be treated as a moving snapshot, not final model quality.

CategoryBenchmarkQuasar-PreviewKnowledgeMMLU (5-shot)**68.40%KnowledgeMMLU-Pro33.20%KnowledgeGPQA25.60%CommonsenseARC Challenge63.00%CommonsenseARC Easy80.10%CommonsensePIQA81.90%CommonsenseHellaSwag74.00%ScienceOpenBookQA47.00%**MathMATH-500 (4-shot)71.40%

https://huggingface.co/silx-ai/Quasar-Preview#evaluation-notesEvaluation Notes

These results are provided as an early internal snapshot for the current Quasar-Preview checkpoint lineage.

They are not presented as final model quality. Public verification, different harness versions, prompt formats, decoding settings, and evaluation implementations may change the reported numbers.

When comparing Quasar-Preview to other models, please report:

  • Evaluation harness
  • Harness version or commit
  • Prompt format
  • Shot count
  • Decoding settings
  • Whether chain-of-thought prompting was used
  • Exact checkpoint version

https://huggingface.co/silx-ai/Quasar-Preview#training-strategyTraining Strategy

Quasar follows a multi-stage training plan.

Quasar-Preview is an early checkpoint from this plan.

https://huggingface.co/silx-ai/Quasar-Preview#stage-1–base-pretrainingStage 1 — Base Pretraining

The base model is trained on a broad corpus to build general next-token prediction, reasoning, and language ability.

Goals of this stage:

  • Stabilize the sparse MoE path
  • Build general language ability
  • Train the hybrid Quasar stack
  • Establish a checkpoint suitable for distillation and subnet training

Quasar-Preview has been trained on**>1T and <1.5T tokens**so far.

https://huggingface.co/silx-ai/Quasar-Preview#stage-2–distillation-and-capability-trainingStage 2 — Distillation And Capability Training

After base training, Quasar-Preview is improved through task distillation and targeted capability training.

The goal is to make the checkpoint more useful for:

  • Reasoning
  • Instruction-following
  • Commonsense tasks
  • Math and science tasks
  • SN24 miner distillation
  • Future post-training

This release is designed to be a foundation for continued decentralized improvement rather than the final result.

https://huggingface.co/silx-ai/Quasar-Preview#stage-3–long-context-extensionStage 3 — Long-Context Extension

Quasar is designed to move toward ultra-long-context reasoning and memory.

The current checkpoint exposes an experimental5M-token context configurationusing safe NoPE / DrOPE-style staging.

Important: the 5M context path has receivedless than 1B tokensof long-context extension training so far.

This means the config is present, but mature 5M-token reasoning quality should not be expected yet.

The purpose of this stage is to:

  • Preserve short-context behavior
  • Avoid damaging the base model during extension
  • Prepare the architecture for future long-context training
  • Enable research on scalable memory and recall

https://huggingface.co/silx-ai/Quasar-Preview#quasar-long-hybrid-architectureQuasar Long Hybrid Architecture

Quasar is a hybrid transformer architecture designed for long-context research, sparse computation, and decentralized training.

It is built around:

  • A Loop Transformer execution scaffold
  • Sparse Mixture-of-Experts routing
  • Hybrid Quasar / Raven / GLA branch layers
  • Optional anchor-state conditioning
  • Optional Engram n-gram memory
  • Safe NoPE / DrOPE-style long-context configuration

Quasar-Preview is the first public checkpoint in this architecture family.


https://huggingface.co/silx-ai/Quasar-Preview#technical-specificationsTechnical Specifications

ComponentValueTotal parameters~18BActive parameters~2BLayers20Hidden size2048Intermediate size5120Attention heads16KV heads4Head dim128Vocabulary size157,184Experts256Experts per token8Shared experts1Active hybrid layers4-19Raven slots64Raven top-k32Engram slots config2,000,000Loop count config1Looped injection configDisabledMax context config5,000,000Safe NoPE cutoff512 Compatibility note: this checkpoint includes GQA for the current release path. Future Quasar versions may change this component as the architecture evolves.


https://huggingface.co/silx-ai/Quasar-Preview#looped-transformer-pathLooped Transformer Path

Quasar includes a Loop Transformer execution path.

The idea is to reuse the decoder stack across multiple passes, increasing effective computation depth without copying every parameter into a deeper model.

The current checkpoint is configured conservatively:

num_loops: 1
use_looped_injection: false

This means Quasar-Preview runs as a single-loop model by default.

The loop machinery is still part of the architecture code and can be enabled in future Quasar configurations.

When looped injection is enabled, Quasar keeps an anchor snapshot of the input embedding stream, usually calledP, and injects it back into the hidden state during looped execution.

This gives later loop passes a stable reference to the original token stream.

The intended future looped path is:

Token IDs
  |
  v
Embedding Layer
  |
  +--> Anchor P snapshot
  |
  v
Decoder stack
  |
  v
Loop pass 1
  |
  +--> inject gated Anchor P
  |
  v
Loop pass 2 / future passes
  |
  v
Final hidden state

The injection gate is initialized near zero so the model can adapt safely instead of suddenly changing behavior.

This gives Quasar a path toward deeper effective reasoning while keeping parameter count controlled.


https://huggingface.co/silx-ai/Quasar-Preview#core-data-flowCore Data Flow

Token IDs
  |
  v
Token Embedding
  |
  +--> Optional Anchor P snapshot
  |
  v
Early Transformer Blocks
  layers 0-3
  |
  v
Hybrid Quasar Blocks
  layers 4-19
  |
  +--> GQA attention path
  |
  +--> Quasar recurrent / linear path
  |
  +--> Raven slot-memory path
  |
  +--> GLA recurrent path
  |
  v
Hybrid Add / Branch Merge
  |
  v
Optional Loop Injection / Next Loop
  |
  v
RMSNorm
  |
  v
LM Head
  |
  v
Next-token logits

https://huggingface.co/silx-ai/Quasar-Preview#hybrid-layer-compositionHybrid Layer Composition

The active hybrid layers are:

4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19

The current layerwise branch cycle is:

quasar -> raven -> quasar -> quasar -> gla

Across the hybrid stack, this gives:

  • **Quasar branch:**10 layers
  • **Raven branch:**3 layers
  • **GLA branch:**3 layers

The design keeps Quasar as the dominant branch while giving the model targeted recurrent and slot-memory paths.


https://huggingface.co/silx-ai/Quasar-Preview#quasar–glaQuasar + GLA

GLA is used through the bundled Flash Linear Attention stack.

The goal of the GLA branch is to give Quasar a fast recurrent sequence-mixing path that is cheaper than full dense attention at long lengths.

Current GLA-related config:

hybrid_gla_enabled: true
hybrid_gla_expand_k: 1.0
hybrid_gla_expand_v: 1.0
hybrid_use_short_conv: false

GLA is not used as a standalone model here.

It is a branch inside Quasar’s hybrid layers.


https://huggingface.co/silx-ai/Quasar-Preview#raven-designRaven Design

Raven is included as a slot-routed recurrent attention branch.

Current Raven config:

hybrid_raven_enabled: true
hybrid_raven_slots: 64
hybrid_raven_topk: 32
hybrid_raven_decay_type: Mamba2

Raven routes hidden states through a fixed number of recurrent memory slots.

In this checkpoint:

  • The branch has64 memory slots
  • It selectstop-32 routes
  • It uses aMamba2-style decay

Raven gives Quasar a memory-like path where sequence information can be compressed into routed recurrent state instead of relying only on dense attention.


https://huggingface.co/silx-ai/Quasar-Preview#engram-designEngram Design

Engram is Quasar’s conditional n-gram memory module.

It is included in the repository asengram\.pyand supports:

  • n-gram orders\[2, 3\]
  • 8 Engram heads
  • configurable memory slots
  • Triton hash-table lookup
  • gated projection back into the residual stream

Current Engram config:

engram_slots: 2,000,000
engram_dim: 512
engram_ngram_orders: [2, 3]
engram_num_heads: 8
engram_residual_scale: 0.01
engram_lr_multiplier: 5.0
engram_layers: []

engram\_layersis currently empty.

This means Engram is included and loadable, but not active by default in Quasar-Preview.

Future Quasar versions can enable Engram on selected layers without changing the base model shape.

Engram is intended as a fast recall path for repeated local patterns, while the main model focuses on reasoning and generalization.


https://huggingface.co/silx-ai/Quasar-Preview#safe-nope–drope-context-designSafe NoPE / DrOPE Context Design

The current checkpoint uses safe NoPE as the default long-context configuration.

Current context config:

use_nope: true
long_context_mode: rope_short_nope_long
nope_after_position: 512
max_position_embeddings: 5,000,000
max_seq_length: 5,000,000
max_sequence_length: 5,000,000
rope_scaling: null
rope_theta: 10000

The behavior is:

Positions 0-511
  -> normal RoPE

Positions 512+
  -> NoPE identity rotation
     cos = 1
     sin = 0

This is a safe DrOPE-style staging design for positional extension.

The goals are:

  • Preserve short-context behavior
  • Avoid stretching RoPE everywhere
  • Avoid allocating a giant 5M RoPE table
  • Expose a 5M sequence-length configuration
  • Prepare for future long-context training runs

Important: the 5M context path has only receivedless than 1B tokensof long-context extension training so far.

So high-quality 5M-token reasoning should not be expected yet.

This setting is included to expose and continue training the long-context path safely.


https://huggingface.co/silx-ai/Quasar-Preview#config-snapshotConfig Snapshot

{
  "model_type": "quasar_long",
  "architectures": ["QuasarLongForCausalLM"],
  "hidden_size": 2048,
  "intermediate_size": 5120,
  "num_hidden_layers": 20,
  "num_attention_heads": 16,
  "num_key_value_heads": 4,
  "head_dim": 128,
  "vocab_size": 157184,
  "num_experts": 256,
  "num_experts_per_tok": 8,
  "num_shared_experts": 1,
  "num_loops": 1,
  "use_looped_injection": false,
  "hybrid_attention_layers": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
  "hybrid_branch_layout": "layerwise",
  "hybrid_layerwise_cycle": ["quasar", "raven", "quasar", "quasar", "gla"],
  "hybrid_replacement_mode": "add",
  "hybrid_eval_mode": "hybrid_add",
  "hybrid_quasar_enabled": true,
  "hybrid_raven_enabled": true,
  "hybrid_gla_enabled": true,
  "hybrid_raven_slots": 64,
  "hybrid_raven_topk": 32,
  "use_nope": true,
  "long_context_mode": "rope_short_nope_long",
  "nope_after_position": 512,
  "max_position_embeddings": 5000000,
  "max_seq_length": 5000000,
  "max_sequence_length": 5000000
}

https://huggingface.co/silx-ai/Quasar-Preview#intended-useIntended Use

Quasar-Preview is designed as an early foundation checkpoint for the Quasar ecosystem.

It is primarily intended for:

  • Bittensor SN24 minersparticipating in decentralized training and knowledge distillation
  • Distillation pipelinestransferring capabilities from stronger teacher models
  • Research on long-context architectures
  • Research on sparse MoE systems
  • Hybrid attention research
  • Agentic system experiments
  • Memory and recall experiments
  • Future Quasar model development

This model is best treated as a research and development checkpoint.


https://huggingface.co/silx-ai/Quasar-Preview#out-of-scope-useOut-of-Scope Use

Quasar-Preview is not intended to be used as:

  • A final production assistant
  • A safety-aligned chatbot
  • A medical, legal, or financial authority
  • A final benchmark-maximized release
  • Proof of mature 5M-token reasoning quality
  • The final Quasar architecture endpoint

The model may produce incorrect, unsafe, biased, or low-quality outputs.

Use appropriate evaluation, filtering, and safety layers before any deployment.


https://huggingface.co/silx-ai/Quasar-Preview#limitationsLimitations

Quasar-Preview is early.

Known limitations:

  • It is not the finished Quasar model.
  • It is the first model in a broader Quasar series.
  • Long-context behavior is experimental.
  • The 5M-token context is a configuration path, not yet mature 5M-token reasoning quality.
  • The long-context path has received less than 1B tokens of extension training so far.
  • Some architecture modules are included for future versions but disabled in this checkpoint.
  • Engram is included but not active by default.
  • Loop execution is configured as single-loop by default.
  • Benchmarks are early checkpoint-lineage snapshots and require public verification.
  • The model may hallucinate or produce incorrect answers.
  • The model has not completed the full Quasar training roadmap.

https://huggingface.co/silx-ai/Quasar-Preview#bittensor-sn24Bittensor SN24

Quasar-Preview is designed for theSN24 Quasar subneton Bittensor.

The goal is to create a shared architecture where miners can continuously improve the model through distributed knowledge distillation, evaluation, and iterative training.

SN24 is intended to support:

  • Open model improvement
  • Competitive distillation
  • Decentralized training incentives
  • Shared progress on the Quasar architecture
  • Long-context and memory-focused model development

Quasar-Preview is the starting checkpoint for this direction.


https://huggingface.co/silx-ai/Quasar-Preview#roadmapRoadmap

Quasar-Preview is only the first public model in the Quasar series.

Next Quasar models will continue toward:

  • Larger-scale decentralized training
  • More training tokens
  • Stronger post-training
  • Better reasoning performance
  • More stable long-context behavior
  • More long-context extension training
  • Deeper Loop Transformer experiments
  • More Raven, GLA, and Engram experimentation
  • Improved benchmark performance
  • Stronger agentic and memory capabilities

Future releases may change architecture components, routing, loop configuration, long-context training strategy, and active memory modules as the Quasar series evolves.


https://huggingface.co/silx-ai/Quasar-Preview#release-statementRelease Statement

Quasar-Preview is not the final destination.

It is the first public checkpoint in the Quasar model series and the first public proof of the architecture direction at scale.

The model is early, but it is real, usable, and ready for research, distillation, and decentralized improvement.

This is the beginning of Quasar.

Similar Articles

deepseek-ai/DeepSeek-V4-Pro-DSpark

Hugging Face Models Trending

DeepSeek releases preview versions of its V4 series, including DeepSeek-V4-Pro (1.6T parameters, 49B activated) and DeepSeek-V4-Flash (284B parameters, 13B activated), both supporting a one-million-token context and featuring hybrid attention, manifold-constrained hyper-connections, and a Muon optimizer.

deepseek-ai/DeepSeek-V4-Pro

Hugging Face Models Trending

DeepSeek releases V4-Pro and V4-Flash, Mixture-of-Experts models supporting million-token context with hybrid attention and Muon optimizer.

Subquadratic AI introduces SubQ-1.1-Small, a new model using Smart Sparse Attention

Reddit r/singularity

Subquadratic AI introduces SubQ-1.1-Small, a model leveraging Smart Sparse Attention to achieve near-perfect long-context retrieval up to 12M tokens with up to 1,000x attention compute reduction. It balances long-context optimization with strong general reasoning, outperforming baselines on benchmarks like NIAH and RULER.

Qwen3.6-Max-Preview

Product Hunt

Alibaba releases Qwen3.6-Max-Preview, a flagship model optimized for agentic coding tasks.