Views
No views yet
InternScience/Agents-A1-4B for Apple Silicon (mlx-vlm).Agents-A1-4B is a Qwen3_5ForConditionalGeneration (Qwen3.5-VL family) vision-language
model. The text tower uses a hybrid of linear attention and full attention
(full_attention_interval: 4) with interleaved MRoPE.InternScience/Agents-A1-4B (license: apache-2.0)mlx-vlm 0.6.6 — mlx_vlm.convert --hf-path InternScience/Agents-A1-4B --mlx-path . -q --q-bits 4 --q-group-size 641from mlx_vlm import load, generate
2model, processor = load("ToPo-ToPo/Agents-A1-4B-mlx-4bit")1mlx_vlm.generate --model ToPo-ToPo/Agents-A1-4B-mlx-4bit \
2 --image path/to/image.png --prompt "Describe this image." --max-tokens 200mlx-vlm >= 0.6.6. Earlier versions do not implement the qwen3_5
architecture and cannot load or convert this model.tokenizer_config.json and processor_config.json were re-serialized by
transformers 5.14.1 during conversion, so they differ textually from upstream:
the chat template now lives in chat_template.jinja (byte-identical to upstream),
special tokens moved into model_specific_special_tokens, and the image processor
uses min_pixels/max_pixels instead of size/resample. The tokenizer was
verified functionally identical to upstream (identical vocab, and identical
encode/decode on a spot-check set). Users on transformers 4.x should prefer the
upstream config files.