Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

XiaomiMiMo
/
MiMo-V2.6-Pro-RL

Text Generation
Transformers
Safetensors
English
Chinese
mimo_v2
multimodal
vision-language
audio
agent
video-understanding
long-context
conversational
custom_code
Eval Results
8-bit precision
fp8
Model card Files Files and versions
xet
Community
9

Instructions to use XiaomiMiMo/MiMo-V2.6-Pro-RL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use XiaomiMiMo/MiMo-V2.6-Pro-RL with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="XiaomiMiMo/MiMo-V2.6-Pro-RL", trust_remote_code=True)
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("XiaomiMiMo/MiMo-V2.6-Pro-RL", trust_remote_code=True, device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use XiaomiMiMo/MiMo-V2.6-Pro-RL with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "XiaomiMiMo/MiMo-V2.6-Pro-RL"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "XiaomiMiMo/MiMo-V2.6-Pro-RL",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/XiaomiMiMo/MiMo-V2.6-Pro-RL
  • SGLang

    How to use XiaomiMiMo/MiMo-V2.6-Pro-RL 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 "XiaomiMiMo/MiMo-V2.6-Pro-RL" \
        --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": "XiaomiMiMo/MiMo-V2.6-Pro-RL",
    		"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 "XiaomiMiMo/MiMo-V2.6-Pro-RL" \
            --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": "XiaomiMiMo/MiMo-V2.6-Pro-RL",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Docker Model Runner

    How to use XiaomiMiMo/MiMo-V2.6-Pro-RL with Docker Model Runner:

    docker model run hf.co/XiaomiMiMo/MiMo-V2.6-Pro-RL
New discussion
Resources
  • PR & discussions documentation
  • Code of Conduct
  • Hub documentation

Question about reproducibility of benchmarks (Table 3 of Technical Report)? | 关于技术报告表 3 中基准测试可复现性的问题

#9 opened 1 day ago by
pandemo

Fix ViT attention sink: apply as softmax-denominator logit, not key-0 bias (flat-colour images misread)

#8 opened 4 days ago by
alea31415

一群饭桶,调用工具就循环,26亿token写不完一个网站

3
#7 opened 4 days ago by
zygame

Update logo for light mode

#6 opened 4 days ago by
kramp

Add evaluation results

#5 opened 4 days ago by
SaylorTwift

Does this imply that multimodal training hurts general intelligence?

#4 opened 4 days ago by
t6am3

small typo

🤯 5
3
#3 opened 5 days ago by
g2552

MIT license + Pareto Cost-Efficiency

🔥 5
2
#2 opened 5 days ago by
dendritical

Native quant?

👀 1
2
#1 opened 5 days ago by
singulariti
Company
TOS Privacy About Careers
Website
Models Datasets Spaces Pricing Docs