CoolFace
Modelpublic

LibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
2likes151downloads
Model Card

Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4

Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4 is an MLX MXFP4 checkpoint derived from Qwen/Qwen3-Next-80B-A3B-Instruct, intended for local text generation on Apple Silicon.

Intended use

  • —Local text generation and chat-style prompting on Apple Silicon
  • —MLX-LM experimentation with the declared upstream model family
  • —Offline or operator-controlled inference workflows

Out of scope

  • —Safety-critical decisions without domain expert review
  • —Claims of benchmark superiority not backed by published evaluation data
  • —Non-MLX runtime guarantees; this card documents the shipped HF checkpoint, not every possible serving stack

Training and conversion metadata

ParameterValue
RepositoryLibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4
Base modelQwen/Qwen3-Next-80B-A3B-Instruct
Tasktext-generation
Librarymlx-lm
FormatMLX / Apple Silicon checkpoint
QuantizationMXFP4
ArchitectureQwen3NextForCausalLM
Model files9
Config model_typeqwen3_next

This card only reports metadata present in the Hugging Face repository, existing card frontmatter, or public config files. Missing benchmark, dataset, or training-run details are left explicit rather than reconstructed.

Tested inference path

Inference for this checkpoint has been tested with [`LibraxisAI/mlx-batch-server`](https://github.com/LibraxisAI/mlx-batch-server).\ This is the recommended tested path for operator-controlled local inference on Apple Silicon.
AspectStatus
Tested runtimeLibraxisAI/mlx-batch-server
Target hardwareApple Silicon
Inference modeLocal / self-hosted
Hugging Face Hosted InferenceDisabled for this repository (inference: false)

This does not claim compatibility with every possible serving stack. It documents the path that has been exercised for this published checkpoint.

Usage

CLI

bash
pip install mlx-lm

mlx_lm.generate \
  --model LibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4 \
  --prompt "Summarize the key signals in this document and list the next action items." \
  --max-tokens 400

Python

python
from mlx_lm import load, generate

model, tokenizer = load("LibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4")

prompt = "Summarize the key signals in this document and list the next action items."
response = generate(model, tokenizer, prompt=prompt, max_tokens=400)
print(response)

Multi-turn with the chat template

This checkpoint follows the tokenizer/chat-template contract inherited from Qwen/Qwen3-Next-80B-A3B-Instruct when the template is present in the repository:

python
from mlx_lm import load, generate

model, tokenizer = load("LibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4")

messages = [
    {"role": "user", "content": "Summarize the key signals in this document and list the next action items."},
]
prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
response = generate(model, tokenizer, prompt=prompt, max_tokens=400)
print(response)

Example output

No public sample output is currently declared for this checkpoint.

Quantization notes

AspectOriginal/base checkpointThis checkpoint
LineageQwen/Qwen3-Next-80B-A3B-InstructLibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4
Runtime targetUpstream runtime formatMLX on Apple Silicon
QuantizationBase precision or upstream-declared formatMXFP4
Published quality deltaNot declared in public metadataNot declared in public metadata

Limitations

  • —No public benchmarks for this checkpoint are declared in the model metadata.
  • —No public benchmark claims are made by this card unless listed in the frontmatter.
  • —Validate outputs on your own domain data before relying on this checkpoint.
  • —Memory use and speed depend heavily on the exact Apple Silicon generation, unified-memory size, and prompt length.

License

apache-2.0. Check the upstream/base model license as well when a base model is declared.

Citation

bibtex
@misc{libraxisai-qwen3-next-80b-a3b-instruct-mlx-mxfp4,
  title = {Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4},
  author = {LibraxisAI},
  year = {2026},
  howpublished = {\url{https://huggingface.co/LibraxisAI/Qwen3-Next-80B-A3B-Instruct-MLX-MXFP4}},
  note = {MLX checkpoint published by LibraxisAI}
}

𝚅𝚒𝚋𝚎𝚌𝚛𝚊𝚏𝚝𝚎𝚍. with AI Agents by VetCoders (c)2024-2026 LibraxisAI