MLX
Safetensors
qwen3_moe
causal-lm
Mixture of Experts
mixture-of-experts
qwen
distillation
svd
lora-merged
code-generation
mlx-my-repo
Instructions to use YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16 with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16 YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: BasedBase/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32
|
| 4 |
+
tags:
|
| 5 |
+
- causal-lm
|
| 6 |
+
- moe
|
| 7 |
+
- mixture-of-experts
|
| 8 |
+
- qwen
|
| 9 |
+
- distillation
|
| 10 |
+
- svd
|
| 11 |
+
- lora-merged
|
| 12 |
+
- code-generation
|
| 13 |
+
- mlx
|
| 14 |
+
- mlx-my-repo
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16
|
| 18 |
+
|
| 19 |
+
The Model [YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16](https://huggingface.co/YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16) was converted to MLX format from [BasedBase/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32](https://huggingface.co/BasedBase/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32) using mlx-lm version **0.26.4**.
|
| 20 |
+
|
| 21 |
+
## Use with mlx
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
pip install mlx-lm
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from mlx_lm import load, generate
|
| 29 |
+
|
| 30 |
+
model, tokenizer = load("YOYO-AI/Qwen3-30B-A3B-Thinking-2507-Deepseek-v3.1-Distill-V2-FP32-mlx-fp16")
|
| 31 |
+
|
| 32 |
+
prompt="hello"
|
| 33 |
+
|
| 34 |
+
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
|
| 35 |
+
messages = [{"role": "user", "content": prompt}]
|
| 36 |
+
prompt = tokenizer.apply_chat_template(
|
| 37 |
+
messages, tokenize=False, add_generation_prompt=True
|
| 38 |
+
)
|
| 39 |
+
|
| 40 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
| 41 |
+
```
|