Alibaba-Apsara/Superior-Reasoning-SFT-gpt-oss-120b-Logprob
Viewer • Updated • 435k • 4.65k • 63
How to use nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx with MLX:
# Make sure mlx-lm is installed
# pip install --upgrade mlx-lm
# Generate text with mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx")
prompt = "Write a story about Einstein"
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True
)
text = generate(model, tokenizer, prompt=prompt, verbose=True)How to use nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx with Pi:
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx"
# Install Pi:
npm install -g @mariozechner/pi-coding-agent
# Add to ~/.pi/agent/models.json:
{
"providers": {
"mlx-lm": {
"baseUrl": "http://localhost:8080/v1",
"api": "openai-completions",
"apiKey": "none",
"models": [
{
"id": "nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx"
}
]
}
}
}# Start Pi in your project directory: pi
How to use nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx with Hermes Agent:
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx"
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx
hermes
How to use nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx with MLX LM:
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx"
# Install MLX LM
uv tool install mlx-lm
# Start the server
mlx_lm.server --model "nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx"
# Calling the OpenAI-compatible server with curl
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "nightmedia/DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx",
"messages": [
{"role": "user", "content": "Hello"}
]
}'This is the performance compared to the baseline Qwen3-30B-A3B-Thinking-2507 at a similar quant.
A few other models included for comparison that only contain Qwen base Brainwaves
DASD 0.462,0.529,0.840,0.636,0.406,0.766,0.596
baseline 0.410,0.444,0.691,0.635,0.390,0.769,0.650
Qwen3-30B-A3B-YOYO-V2
qx86-hi 0.531,0.690,0.885,0.685,0.448,0.785,0.646
Qwen3-30B-A3B-YOYO-V3
qx86-hi 0.472,0.550,0.880,0.698,0.442,0.789,0.650
Qwen3-30B-A3B-YOYO-V4
qx86-hi 0.511,0.674,0.885,0.649,0.442,0.769,0.618
Qwen3-30B-A3B-YOYO-V5
qx86-hi 0.511,0.669,0.885,0.653,0.440,0.772,0.619
Qwen3-30B-A3B-YOYO-AutoThink
qx86-hi 0.454,0.481,0.869,0.673,0.404,0.777,0.643
Some 30B Nightmedia models
Qwen3-30B-A3B-Architect18
qx86-hi 0.577,0.760,0.879,0.760,0.446,0.803,0.702
Qwen3-30B-A3B-Element6-1M
qx86-hi 0.568,0.737,0.880,0.760,0.450,0.803,0.714
This model DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx was converted to MLX format from Alibaba-Apsara/DASD-30B-A3B-Thinking-Preview using mlx-lm version 0.30.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("DASD-30B-A3B-Thinking-Preview-qx86-hi-mlx")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True, return_dict=False,
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
8-bit
Base model
Alibaba-Apsara/DASD-30B-A3B-Thinking-Preview