Text Generation
MLX
Safetensors
qwen3_5_moe
mlx-lm
qwen3.6
Mixture of Experts
modelopt
quantized
nvfp4
fp4
fp8
lora
merged
antidoom
conversational
Instructions to use mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4 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("mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4") 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) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4"
Configure the model in Pi
# 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": "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4 with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4"
Configure Hermes
# 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 mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4
Run Hermes
hermes
- OpenClaw new
How to use mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- MLX LM
How to use mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mlx-community/Qwen3.6-35B-A3B-AntiLoop-NVFP4", "messages": [ {"role": "user", "content": "Hello"} ] }'
File size: 20,068 Bytes
c179c12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 | #!/usr/bin/env python3
"""Stream a Qwen3.6 ModelOpt FP8/NVFP4 checkpoint into MLX format.
This is intentionally a format conversion, not a re-quantization:
* FP8 E4M3 weight bytes are packed four-at-a-time into MLX uint32 tensors.
Unit E8M0 block scales make MLX's MXFP8 kernel decode the original FP8
values exactly; the original ModelOpt tensor scale is retained separately.
* NVFP4 E2M1 weight nibbles and E4M3 block-scale bytes are repacked without
numerical modification. The original FP32 tensor scales are retained.
* Expert tensors are stacked into MLX's SwitchGLU layout one layer at a time.
* The original BF16 vision tower is preserved unchanged in a dedicated shard
and loaded by the model-local MLX-VLM runtime.
* ModelOpt activation scales are recorded as dropped because this runtime uses
weight-only quantized kernels and keeps activations in the model dtype.
Each transformer layer is written as its own safetensors shard, bounding peak
memory to roughly one layer rather than the whole model.
"""
from __future__ import annotations
import argparse
import json
import os
import re
import resource
import shutil
import sys
from collections import Counter, defaultdict
from datetime import datetime, timezone
from pathlib import Path
from typing import Dict, Iterable, Mapping
import mlx.core as mx
RUNTIME_FILE = "modeling_mlx_qwen36_modelopt_hybrid.py"
VLM_RUNTIME_FILE = "modeling_mlx_vlm_qwen36_modelopt_hybrid.py"
EXPERT_RE = re.compile(
r"^model\.language_model\.layers\.(\d+)\.mlp\.experts\.(\d+)\."
r"(gate_proj|up_proj|down_proj)\."
r"(weight|weight_scale|weight_scale_2|input_scale)$"
)
LAYER_RE = re.compile(r"^model\.language_model\.layers\.(\d+)\.")
NORM_SUFFIXES = (
".input_layernorm.weight",
".post_attention_layernorm.weight",
"model.norm.weight",
".q_norm.weight",
".k_norm.weight",
)
def log(message: str) -> None:
now = datetime.now().strftime("%H:%M:%S")
rss = resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / (1024**3)
print(f"[{now}] [peak RSS {rss:.2f} GiB] {message}", flush=True)
def pack_u8x4(x: mx.array) -> mx.array:
"""Pack four consecutive bytes into one little-endian uint32."""
if x.dtype != mx.uint8:
raise TypeError(f"Expected uint8 storage, got {x.dtype}")
if x.shape[-1] % 4:
raise ValueError(f"Last dimension {x.shape[-1]} is not divisible by four")
y = x.reshape(*x.shape[:-1], x.shape[-1] // 4, 4).astype(mx.uint32)
return y[..., 0] | (y[..., 1] << 8) | (y[..., 2] << 16) | (y[..., 3] << 24)
def sanitize_name(key: str) -> str:
prefix = "model.language_model."
if key.startswith(prefix):
return "language_model.model." + key[len(prefix) :]
if key.startswith("language_model."):
return key
return "language_model." + key
def should_drop(key: str) -> bool:
return (
key.startswith("model.visual")
or key.startswith("vision_tower")
or key.startswith("mtp.")
or ".mtp." in key
)
class SourceWeights:
def __init__(self, root: Path, weight_map: Mapping[str, str]):
self.root = root
self.weight_map = weight_map
self._shards: Dict[str, Dict[str, mx.array]] = {}
def get(self, key: str) -> mx.array:
shard_name = self.weight_map[key]
if shard_name not in self._shards:
log(f"Opening source shard {shard_name} lazily")
self._shards[shard_name] = mx.load(str(self.root / shard_name))
return self._shards[shard_name][key]
def group_id_for_key(key: str) -> int | None:
match = LAYER_RE.match(key)
return int(match.group(1)) if match else None
def group_id_for_prefix(prefix: str) -> int | None:
return group_id_for_key(prefix + ".weight")
def add_output(
output: Dict[str, mx.array],
key: str,
value: mx.array,
) -> None:
if key in output:
raise KeyError(f"Duplicate output tensor {key}")
output[key] = value
def convert_dense_nvfp4(
source: SourceWeights,
prefix: str,
output: Dict[str, mx.array],
quantization: Dict[str, str],
) -> None:
raw = source.get(prefix + ".weight")
scales = source.get(prefix + ".weight_scale")
tensor_scale = source.get(prefix + ".weight_scale_2")
if raw.dtype != mx.uint8 or scales.dtype != mx.uint8:
raise TypeError(
f"Unexpected NVFP4 storage for {prefix}: {raw.dtype}, {scales.dtype}"
)
if raw.shape[-1] != scales.shape[-1] * 8:
raise ValueError(
f"NVFP4 shape mismatch for {prefix}: weight={raw.shape}, scales={scales.shape}"
)
out_prefix = sanitize_name(prefix)
add_output(output, out_prefix + ".weight", pack_u8x4(raw))
add_output(output, out_prefix + ".scales", scales)
add_output(output, out_prefix + ".global_scale", tensor_scale)
quantization[out_prefix] = "scaled_nvfp4"
def convert_dense_fp8(
source: SourceWeights,
prefix: str,
output: Dict[str, mx.array],
quantization: Dict[str, str],
) -> None:
raw = source.get(prefix + ".weight")
tensor_scale = source.get(prefix + ".weight_scale")
if raw.dtype != mx.uint8:
raise TypeError(f"Unexpected FP8 storage for {prefix}: {raw.dtype}")
if raw.shape[-1] % 32:
raise ValueError(
f"FP8 input dimension for {prefix} is not divisible by 32: {raw.shape}"
)
out_prefix = sanitize_name(prefix)
add_output(output, out_prefix + ".weight", pack_u8x4(raw))
# E8M0 byte 0x7f represents exactly 1.0. With unit scales, MLX's
# MXFP8 decoder reproduces ModelOpt's E4M3 weight bytes losslessly.
scale_shape = (*raw.shape[:-1], raw.shape[-1] // 32)
add_output(
output,
out_prefix + ".scales",
mx.full(scale_shape, 0x7F, dtype=mx.uint8),
)
add_output(output, out_prefix + ".global_scale", tensor_scale)
quantization[out_prefix] = "scaled_mxfp8"
def convert_expert_projection(
source: SourceWeights,
layer: int,
projection: str,
expert_lookup: Mapping[tuple[int, str, str], Mapping[int, str]],
num_experts: int,
output: Dict[str, mx.array],
quantization: Dict[str, str],
) -> None:
expected = list(range(num_experts))
suffix_maps = {
suffix: expert_lookup[(layer, projection, suffix)]
for suffix in ("weight", "weight_scale", "weight_scale_2")
}
for suffix, mapping in suffix_maps.items():
present = sorted(mapping)
if present != expected:
missing = sorted(set(expected) - set(present))
raise ValueError(
f"Layer {layer} {projection} {suffix}: expected {num_experts} "
f"experts, missing {missing[:20]}"
)
raw = mx.stack(
[source.get(suffix_maps["weight"][expert]) for expert in expected], axis=0
)
scales = mx.stack(
[source.get(suffix_maps["weight_scale"][expert]) for expert in expected],
axis=0,
)
tensor_scales = mx.stack(
[source.get(suffix_maps["weight_scale_2"][expert]) for expert in expected],
axis=0,
)
if raw.dtype != mx.uint8 or scales.dtype != mx.uint8:
raise TypeError(
f"Unexpected expert NVFP4 storage at layer {layer} {projection}: "
f"{raw.dtype}, {scales.dtype}"
)
if raw.shape[-1] != scales.shape[-1] * 8:
raise ValueError(
f"Expert NVFP4 shape mismatch at layer {layer} {projection}: "
f"weight={raw.shape}, scales={scales.shape}"
)
out_prefix = (
f"language_model.model.layers.{layer}.mlp.switch_mlp.{projection}"
)
add_output(output, out_prefix + ".weight", pack_u8x4(raw))
add_output(output, out_prefix + ".scales", scales)
add_output(output, out_prefix + ".global_scales", tensor_scales)
quantization[out_prefix] = "scaled_nvfp4_switch"
def transform_standard_weight(
key: str,
value: mx.array,
shift_norm_weights: bool,
) -> tuple[str, mx.array]:
out_key = sanitize_name(key)
if "conv1d.weight" in out_key and value.shape[-1] != 1:
value = value.moveaxis(2, 1)
if (
shift_norm_weights
and value.ndim == 1
and any(out_key.endswith(suffix) for suffix in NORM_SUFFIXES)
):
value = value + 1.0
return out_key, value
def write_shard(
partial: Path,
filename: str,
tensors: Dict[str, mx.array],
output_weight_map: Dict[str, str],
) -> int:
tensors = dict(sorted(tensors.items()))
total_bytes = sum(array.nbytes for array in tensors.values())
log(
f"Writing {filename}: {len(tensors)} tensors, "
f"{total_bytes / (1024**3):.2f} GiB"
)
mx.save_safetensors(
str(partial / filename),
tensors,
metadata={"format": "mlx"},
)
for key in tensors:
if key in output_weight_map:
raise KeyError(f"Tensor {key} was already assigned to a shard")
output_weight_map[key] = filename
del tensors
try:
mx.clear_cache()
except AttributeError:
# Compatibility with older MLX releases.
mx.metal.clear_cache()
return total_bytes
def copy_metadata(source: Path, partial: Path) -> None:
names = [
"README.md",
"LICENSE",
"chat_template.jinja",
"generation_config.json",
"preprocessor_config.json",
"video_preprocessor_config.json",
"special_tokens_map.json",
"tokenizer.json",
"tokenizer.model",
"tokenizer_config.json",
"vocab.json",
"merges.txt",
]
for name in names:
src = source / name
if src.exists():
shutil.copy2(src, partial / name, follow_symlinks=True)
assets = source / "assets"
if assets.exists():
shutil.copytree(assets, partial / "assets")
def convert(
source: Path,
output: Path,
runtime_source: Path,
vlm_runtime_source: Path,
) -> None:
source = source.resolve()
output = output.resolve()
partial = output.with_name(output.name + ".partial")
if output.exists():
raise FileExistsError(f"Output already exists: {output}")
if partial.exists():
raise FileExistsError(
f"Partial output already exists: {partial}. Remove it or choose another path."
)
if not (source / "config.json").exists():
raise FileNotFoundError(f"Missing config.json in {source}")
if not (source / "model.safetensors.index.json").exists():
raise FileNotFoundError(f"Missing model.safetensors.index.json in {source}")
config = json.loads((source / "config.json").read_text())
index = json.loads((source / "model.safetensors.index.json").read_text())
weight_map: Dict[str, str] = index["weight_map"]
all_keys = sorted(weight_map)
vision_keys = [key for key in all_keys if key.startswith("model.visual.")]
text_config = config.get("text_config", config)
num_layers = int(text_config["num_hidden_layers"])
num_experts = int(text_config["num_experts"])
log(
f"Source {source}: {len(all_keys)} tensors, {num_layers} layers, "
f"{num_experts} experts"
)
nvfp4_prefixes = {
key[: -len(".weight_scale_2")]
for key in all_keys
if key.endswith(".weight_scale_2") and not should_drop(key)
}
all_scale_prefixes = {
key[: -len(".weight_scale")]
for key in all_keys
if key.endswith(".weight_scale") and not should_drop(key)
}
fp8_prefixes = all_scale_prefixes - nvfp4_prefixes
expert_lookup: dict[tuple[int, str, str], dict[int, str]] = defaultdict(dict)
expert_keys = set()
for key in all_keys:
match = EXPERT_RE.match(key)
if not match:
continue
layer, expert, projection, suffix = match.groups()
expert_lookup[(int(layer), projection, suffix)][int(expert)] = key
expert_keys.add(key)
expert_prefix_marker = ".mlp.experts."
dense_nvfp4 = sorted(
prefix for prefix in nvfp4_prefixes if expert_prefix_marker not in prefix
)
dense_fp8 = sorted(
prefix for prefix in fp8_prefixes if expert_prefix_marker not in prefix
)
log(
f"Detected {len(dense_fp8)} dense FP8 modules, "
f"{len(dense_nvfp4)} dense NVFP4 modules, and "
f"{len(expert_keys)} expert component tensors"
)
layer_standard_keys: dict[int, list[str]] = defaultdict(list)
global_standard_keys: list[str] = []
quantized_prefixes = nvfp4_prefixes | fp8_prefixes
quant_metadata_suffixes = (
".input_scale",
".weight_scale",
".weight_scale_2",
)
for key in all_keys:
if should_drop(key) or key in expert_keys:
continue
if key.endswith(quant_metadata_suffixes):
continue
if key.endswith(".weight") and key[: -len(".weight")] in quantized_prefixes:
continue
group = group_id_for_key(key)
if group is None:
global_standard_keys.append(key)
else:
layer_standard_keys[group].append(key)
has_mtp = any(key.startswith("mtp.") or ".mtp." in key for key in all_keys)
has_unsanitized_conv = False
source_weights = SourceWeights(source, weight_map)
for key in all_keys:
if "conv1d.weight" in key and not should_drop(key):
if source_weights.get(key).shape[-1] != 1:
has_unsanitized_conv = True
break
shift_norm_weights = has_mtp or has_unsanitized_conv
log(
f"Qwen sanitizer flags: has_mtp={has_mtp}, "
f"unsanitized_conv1d={has_unsanitized_conv}, "
f"shift_norm_weights={shift_norm_weights}"
)
partial.mkdir(parents=True)
copy_metadata(source, partial)
shutil.copy2(runtime_source, partial / RUNTIME_FILE)
shutil.copy2(vlm_runtime_source, partial / VLM_RUNTIME_FILE)
quantization: Dict[str, str] = {}
output_weight_map: Dict[str, str] = {}
total_size = 0
shard_count = num_layers + 1 + bool(vision_keys)
# Global tensors: embeddings, final norm, and LM head.
global_output: Dict[str, mx.array] = {}
for prefix in dense_fp8:
if group_id_for_prefix(prefix) is None:
convert_dense_fp8(source_weights, prefix, global_output, quantization)
for prefix in dense_nvfp4:
if group_id_for_prefix(prefix) is None:
convert_dense_nvfp4(source_weights, prefix, global_output, quantization)
for key in global_standard_keys:
out_key, value = transform_standard_weight(
key, source_weights.get(key), shift_norm_weights
)
add_output(global_output, out_key, value)
total_size += write_shard(
partial,
f"model-{1:05d}-of-{shard_count:05d}.safetensors",
global_output,
output_weight_map,
)
for layer in range(num_layers):
layer_output: Dict[str, mx.array] = {}
log(f"Converting transformer layer {layer + 1}/{num_layers}")
for prefix in dense_fp8:
if group_id_for_prefix(prefix) == layer:
convert_dense_fp8(source_weights, prefix, layer_output, quantization)
for prefix in dense_nvfp4:
if group_id_for_prefix(prefix) == layer:
convert_dense_nvfp4(source_weights, prefix, layer_output, quantization)
for projection in ("gate_proj", "up_proj", "down_proj"):
convert_expert_projection(
source_weights,
layer,
projection,
expert_lookup,
num_experts,
layer_output,
quantization,
)
for key in layer_standard_keys[layer]:
out_key, value = transform_standard_weight(
key, source_weights.get(key), shift_norm_weights
)
add_output(layer_output, out_key, value)
total_size += write_shard(
partial,
f"model-{layer + 2:05d}-of-{shard_count:05d}.safetensors",
layer_output,
output_weight_map,
)
log(f"Finished transformer layer {layer + 1}/{num_layers}")
# Vision is unchanged by the AntiLoop adapter. Keep the original BF16
# tensors under their source names; the MLX-VLM runtime maps and sanitizes
# them. Arrays returned by mx.load remain lazy until the safetensors writer
# consumes them, so this does not materialize the source shard twice.
if vision_keys:
vision_output = {key: source_weights.get(key) for key in vision_keys}
total_size += write_shard(
partial,
f"model-{shard_count:05d}-of-{shard_count:05d}.safetensors",
vision_output,
output_weight_map,
)
log(f"Preserved {len(vision_keys)} vision tensors without requantization")
output_index = {
"metadata": {"total_size": total_size},
"weight_map": dict(sorted(output_weight_map.items())),
}
(partial / "model.safetensors.index.json").write_text(
json.dumps(output_index, indent=2, sort_keys=True) + "\n"
)
original_quantization = config.pop("quantization_config", None)
config.pop("quantization", None)
if isinstance(config.get("text_config"), dict):
config["text_config"].pop("quantization_config", None)
config["text_config"].pop("quantization", None)
config["model_file"] = RUNTIME_FILE
config["vlm_model_file"] = VLM_RUNTIME_FILE
config["mlx_modelopt_quantization"] = dict(sorted(quantization.items()))
config["mlx_hybrid_format"] = {
"format": "modelopt_fp8_nvfp4_v1",
"fp8_storage": "mxfp8_carrier_with_unit_e8m0_scales",
"nvfp4_storage": "native_e2m1_e4m3_with_output_tensor_scale",
"activations": "model_dtype_weight_only_quantized_matmul",
"source_activation_scales_retained": False,
"source_quantization_config": original_quantization,
}
(partial / "config.json").write_text(
json.dumps(config, indent=2, sort_keys=True) + "\n"
)
input_scales_dropped = sum(key.endswith(".input_scale") for key in all_keys)
manifest = {
"source": str(source),
"output": str(output),
"created_at": datetime.now(timezone.utc).isoformat(),
"converter": str(Path(__file__).resolve()),
"runtime_file": RUNTIME_FILE,
"vlm_runtime_file": VLM_RUNTIME_FILE,
"num_layers": num_layers,
"num_experts": num_experts,
"source_tensor_count": len(all_keys),
"output_tensor_count": len(output_weight_map),
"output_shards": shard_count,
"output_total_size_bytes": total_size,
"quantized_module_counts": dict(Counter(quantization.values())),
"input_scales_dropped": input_scales_dropped,
"weight_bytes_requantized": False,
"vision_tensor_count": len(vision_keys),
"vision_weight_bytes_requantized": False,
"norm_weights_shifted": shift_norm_weights,
}
(partial / "mlx_conversion_manifest.json").write_text(
json.dumps(manifest, indent=2, sort_keys=True) + "\n"
)
partial.rename(output)
log(
f"Conversion complete: {output} ({total_size / (1024**3):.2f} GiB, "
f"{len(output_weight_map)} tensors)"
)
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--source", type=Path, required=True)
parser.add_argument("--output", type=Path, required=True)
parser.add_argument(
"--runtime-source",
type=Path,
default=Path(__file__).with_name(RUNTIME_FILE),
)
parser.add_argument(
"--vlm-runtime-source",
type=Path,
default=Path(__file__).with_name(VLM_RUNTIME_FILE),
)
return parser.parse_args()
def main() -> None:
args = parse_args()
convert(
args.source,
args.output,
args.runtime_source.resolve(),
args.vlm_runtime_source.resolve(),
)
if __name__ == "__main__":
main()
|