Instructions to use zeromodels/qwen3-next-80b-a3b-thinking with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasFormers
How to use zeromodels/qwen3-next-80b-a3b-thinking with KerasFormers:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Keras
How to use zeromodels/qwen3-next-80b-a3b-thinking with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://zeromodels/qwen3-next-80b-a3b-thinking") - Notebooks
- Google Colab
- Kaggle
Run Qwen3-Next with Keras 3: JAX, PyTorch, or TensorFlow
kerasformers/qwen3-next-80b-a3b-thinking
Pure-Keras 3 conversion of Qwen/Qwen3-Next-80B-A3B-Thinking for kerasformers. One implementation runs unmodified on TensorFlow / Torch / JAX. Qwen3-Next is a Gated-DeltaNet + MoE hybrid; weights are stored in bfloat16.
For model details, license, and usage terms, see the upstream model card.
Paper: Qwen3 Technical Report (arXiv:2505.09388) · HF Papers
Paper: Qwen2.5-1M Technical Report (arXiv:2501.15383) · HF Papers
Paper: YaRN: Efficient Context Window Extension of Large Language Models (arXiv:2309.00071) · HF Papers
✨ Quick start
import os
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
from kerasformers.models.qwen3_next import Qwen3NextTextGenerate, Qwen3NextTokenizer
model = Qwen3NextTextGenerate.from_weights("kerasformers/qwen3-next-80b-a3b-thinking")
tokenizer = Qwen3NextTokenizer.from_weights("kerasformers/qwen3-next-80b-a3b-thinking")
inputs = tokenizer("Give me a short introduction to large language models.")
outputs = model.generate(**inputs, max_new_tokens=128)
print(tokenizer.decode(outputs[0]))
Special Thanks
A huge thank you to the Qwen team at Alibaba for creating and releasing these models.
License: Apache 2.0.
- Downloads last month
- 19
Model tree for zeromodels/qwen3-next-80b-a3b-thinking
Base model
Qwen/Qwen3-Next-80B-A3B-Thinking