Text Generation
Transformers
Safetensors
English
Chinese
qwen3_5_moe
image-text-to-text
macaron
macaron-v1
qwen3.6
qwen3.6-35b-a3b
mixture-of-lora
personal-agent
tool-use
generative-ui
ui4a
a2ui
coding-agent
conversational
Eval Results
Instructions to use mindlab-research/Macaron-V1-Tall with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mindlab-research/Macaron-V1-Tall with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mindlab-research/Macaron-V1-Tall") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("mindlab-research/Macaron-V1-Tall") model = AutoModelForMultimodalLM.from_pretrained("mindlab-research/Macaron-V1-Tall", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mindlab-research/Macaron-V1-Tall with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mindlab-research/Macaron-V1-Tall" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mindlab-research/Macaron-V1-Tall", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mindlab-research/Macaron-V1-Tall
- SGLang
How to use mindlab-research/Macaron-V1-Tall with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mindlab-research/Macaron-V1-Tall" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mindlab-research/Macaron-V1-Tall", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mindlab-research/Macaron-V1-Tall" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mindlab-research/Macaron-V1-Tall", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use mindlab-research/Macaron-V1-Tall with Docker Model Runner:
docker model run hf.co/mindlab-research/Macaron-V1-Tall
[P2] Add 50B footprint, complete evaluation table, and multimodal section Critical additions: - Change parameter footprint to 50B release label (was missing) - Add COMPLETE evaluation table comparing Tall vs Qwen3.6-35B-A3B (7 benchmarks) - Add Multimodal Behavior section with 5 benchmark results Core updates: - Add arXiv:2608.09819 tag and paper link - Update citation from blog to arXiv paper - Add contact email New sections (T3-T8): - Routing Behavior and Cost (Tall-specific latency: 1.76s vs Venti 4.68s) - Limitations (base-vs-system comparison, multimodal inherited not tuned) - Safety (no standalone eval, data governance, deployment guidance) - Hardware Requirements (local deployment focus, ~50B footprint) - Training Details (rank 64, alpha 128, expert parameters) - Parameter count clarification (50B label vs 35B base)
#5 opened 5 days ago
by
mindlab-bot
Why no GGUF release?
#3 opened 19 days ago
by
akierum
Add SWE-bench Verified evaluation result
#2 opened 21 days ago
by
nielsr