Introduction

On May 25, ModelBest officially released and open-sourced the next-generation edge-side foundational language model, MiniCPM5-1B. With only 1B parameters, the model achieved a score of 17.9 on the AA-Index leaderboard, surpassing all open-source foundation models under 4B parameters, including Qwen3.5-2B (16.3 points). This continues the “Density Law” proposed by ModelBest — the intelligence density of large models roughly doubles every 3.5 months. The Base version was pretrained using ForgeTrain, ModelBest’s self-developed AI training framework, which is the world’s first production-grade training framework fully written by AI. After INT4 quantization, the model weights are only 0.5 GB, enabling it to run on over 90% of terminal devices, including smartphones and web browsers. Official support has already been provided for mainstream inference frameworks such as vLLM, SGLang, and llama.cpp.

Integrated Deployment

  • Out-of-the-box inference scripts with pre-configured hardware and software parameters
  • Released FlagOS-Armv9 container image supporting deployment within minutes

Consistency Validation

  • Rigorously evaluated through benchmark testing: Performance and results from the FlagOS software stack are compared against native stacks on multiple public.

Evaluation Results

Benchmark Result

Metrics MiniCPM5-1B-Nvidia-Origin MiniCPM5-1B-Armv9-BF16-FlagOS MiniCPM5-1B-Armv9-INT8(W8A8-dyn)-FlagOS
truthfulqa_mc1 0.3293 0.2656 0.2815
winogrande 0.5484 0.5627 0.5525
commonsense_qa 0.3473 0.4267 0.4316

User Guide

Environment Setup

Item Version
Docker Version 24.0.7
Operating System Ubuntu 22.04.5 LTS (Noble Numbat)

Operation Steps

Download FlagOS Image

docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-minicpm5-armv9-tree_0.5.0-gems_5.0.2-vllm_none-plugin_none-cx_none-python_3.11.2-torch_2.10.0_cpu-pcp_none-gpu_cpu-arc_arm64-driver_none:202605261758

Download Open-source Model Weights

pip install modelscope
modelscope download --model FlagRelease/MiniCPM5-1B-Armv9-FlagOS --local_dir /data/MiniCPM5-1B

Start the Container

#Container Startup
sudo docker run --init --detach --net=host --user 0 --ipc=host \
           -v /data:/data --security-opt=seccomp=unconfined \
           --privileged --ulimit=stack=67108864 --ulimit=memlock=-1 \
           --shm-size=8G \
           --name flagos harbor.baai.ac.cn/flagrelease-public/flagrelease-minicpm5-armv9-tree_0.5.0-gems_5.0.2-vllm_none-plugin_none-cx_none-python_3.11.2-torch_2.10.0_cpu-pcp_none-gpu_cpu-arc_arm64-driver_none:202605261758 sleep infinity
sudo docker exec -it flagos /bin/bash

Service Invocation

Invocation Script

# BF16 inference
python /root/run_inference.py \
    --model /data/MiniCPM5-1B \
    --dtype bf16 \
    --prompt "Introduce yourself briefly." \
    --max-new-tokens 128

# INT8 inference (W8A8-dynamic)
python /root/run_inference.py \
    --model /data/MiniCPM5-1B \
    --dtype int8 \
    --prompt "Introduce yourself briefly." \
    --max-new-tokens 128

AnythingLLM Integration Guide

1. Download & Install

  • Visit the official site: https://anythingllm.com/
  • Choose the appropriate version for your OS (Windows/macOS/Linux)
  • Follow the installation wizard to complete the setup

2. Configuration

  • Launch AnythingLLM
  • Open settings (bottom left, fourth tab)
  • Configure core LLM parameters
  • Click "Save Settings" to apply changes

3. Model Interaction

  • After model loading is complete:
  • Click "New Conversation"
  • Enter your question (e.g., "Explain the basics of quantum computing")
  • Click the send button to get a response

Technical Overview

FlagOS is a fully open-source system software stack designed to unify the "model–system–chip" layers and foster an open, collaborative ecosystem. It enables a "develop once, run anywhere" workflow across diverse AI accelerators, unlocking hardware performance, eliminating fragmentation among vendor-specific software stacks, and substantially lowering the cost of porting and maintaining AI workloads. With core technologies such as the FlagScale, together with vllm-plugin-fl, distributed training/inference framework, FlagGems universal operator library, FlagCX communication library, and FlagTree unified compiler, the FlagRelease platform leverages the FlagOS stack to automatically produce and release various combinations of <chip + open-source model>. This enables efficient and automated model migration across diverse chips, opening a new chapter for large model deployment and application.

FlagGems

FlagGems is a high-performance, generic operator library implemented in Triton language. It is built on a collection of backend-neutral kernels that aims to accelerate LLM (Large-Language Models) training and inference across diverse hardware platforms.

FlagTree

FlagTree is an open source, unified compiler for multiple AI chips project dedicated to developing a diverse ecosystem of AI chip compilers and related tooling platforms, thereby fostering and strengthening the upstream and downstream Triton ecosystem. Currently in its initial phase, the project aims to maintain compatibility with existing adaptation solutions while unifying the codebase to rapidly implement single-repository multi-backend support. For upstream model users, it provides unified compilation capabilities across multiple backends; for downstream chip manufacturers, it offers examples of Triton ecosystem integration.

FlagScale and vllm-plugin-fl

Flagscale is a comprehensive toolkit designed to support the entire lifecycle of large models. It builds on the strengths of several prominent open-source projects, including Megatron-LM and vLLM, to provide a robust, end-to-end solution for managing and scaling large models. vllm-plugin-fl is a vLLM plugin built on the FlagOS unified multi-chip backend, to help flagscale support multi-chip on vllm framework.

FlagCX

FlagCX is a scalable and adaptive cross-chip communication library. It serves as a platform where developers, researchers, and AI engineers can collaborate on various projects, contribute to the development of cutting-edge AI solutions, and share their work with the global community.

FlagEval Evaluation Framework

FlagEval is a comprehensive evaluation system and open platform for large models launched in 2023. It aims to establish scientific, fair, and open benchmarks, methodologies, and tools to help researchers assess model and training algorithm performance. It features:

  • Multi-dimensional Evaluation: Supports 800+ model evaluations across NLP, CV, Audio, and Multimodal fields, covering 20+ downstream tasks including language understanding and image-text generation.
  • Industry-Grade Use Cases: Has completed horizontal evaluations of mainstream large models, providing authoritative benchmarks for chip-model performance validation.

Contributing

We warmly welcome global developers to join us:

  1. Submit Issues to report problems
  2. Create Pull Requests to contribute code
  3. Improve technical documentation
  4. Expand hardware adaptation support

License

The model weights are derived from OpenBMB/MiniCPM5-1B and are open‑sourced under the Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt

Downloads last month
-
Safetensors
Model size
1B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support