The trusted upload zone
huggingface.co/mlx-community is the curated organization on Hugging Face where the MLX community uploads converted, quantized models. As of 2026-05, it hosts thousands of MLX-format models — most popular instruct models in multiple quantization levels, vision-language models, audio models, and a long tail of fine-tunes.
The reason this matters is provenance. Anyone can upload a model to Hugging Face. The mlx-community org is run with curation — uploaders are vetted, conversion scripts are visible, and a core group keeps an eye on quality. When you pull a model from mlx-community/..., you're pulling from a trusted reference set, not a random upload.
How to evaluate any MLX upload (in or out of mlx-community)
Before you load a model from a random uploader, check four things on the Hugging Face model page:
- Download count. A high count over the last 30 days is a real signal — many people have loaded this and presumably it works. New uploads with no downloads need more scrutiny.
- The conversion script or command. Most reputable uploaders document exactly which command they ran (e.g.
mlx_lm.convert --hf-path X --quantize --q-bits 4 --q-group-size 64). Reproducibility you can verify. - The source model link. A good upload links to the exact upstream repo it was converted from. "Llama-3.2-1B-Instruct" is too vague;
meta-llama/Llama-3.2-1B-Instructas a link is what you want. - The quantization config. Open the model's
config.jsonon Hugging Face directly (the file viewer makes this trivial). Confirmquantization.bits,quantization.group_size, andquantization.modematch what the model card claims.
The two-uploads-one-name dilemma
Sometimes you'll see two MLX-community uploads for the same source model with the same quantization (e.g. two different mlx-community/Llama-3.2-1B-Instruct-4bit-style repos). The single rule for picking — prefer the upload from the most active maintainer with the more recent date. Browse the uploader's profile; recent activity across many models is the signal that they're maintaining their conversions as mlx-lm evolves. A 2024 upload by an inactive uploader will silently miss any post-2024 dispatcher fixes.
When to upload your own
If you've converted a model that isn't in mlx-community yet (especially with a mixed-precision recipe nobody has uploaded), push it back. Use --upload-repo in mlx_lm.convert (covered in lesson 2). The community runs on this — your upload helps the next person not redo the conversion.