AI Model Hub
The CIX AI Model Hub repository is hosted on ModelScope. Visit: cix ai_model_hub
Clone the repository
With the following command, you can clone only the files that are not tracked by Git LFS (make sure Git LFS is installed):
After cloning the directory structure on the device, decide whether you also need to clone on the host depending on whether you plan to convert models on the host.
GIT_LFS_SKIP_SMUDGE=1 git clone https://www.modelscope.cn/cix/ai_model_hub_25_Q3.git
Set up the environment on the device
Activate the virtual environment before running.
cd ai_model_hub_25_Q3/
python3 -m venv --system-site-packages .venv
source .venv/bin/activate
pip3 install -r requirements.txt
If pip3 install -r requirements.txt fails while building openai-clip and you do not need to run CLIP-related demos, comment out the openai-clip entry in requirements.txt before continuing.
If you do need CLIP support, try an older openai-clip release and continue troubleshooting with the full build log.
Download the entire repository
Since the repository is large, it is recommended to avoid cloning everything.
Download with Git (make sure Git LFS is installed):
mkdir ai-model-hub && cd ai-model-hub
git lfs install
git clone https://www.modelscope.cn/cix/ai_model_hub_25_Q3.git
Directory structure:
.
├── configuration.json
├── datasets
│ └── ReadMe.md
├── demos
│ ├── ai-album-streamlit
│ ├── ai-demo-manager
│ ├── audio-chat-gradio
│ ├── chatbot-gradio
│ ├── face-recognition-gradio
│ ├── image-multichat-gradio
│ ├── image-multichat-streamlit
│ ├── ort-genai-chat-gradio
│ ├── picquery-cn-gradio
│ ├── pp-ocrv4-gradio
│ ├── rag-chat-gradio
│ ├── rag-chat-streamlit
│ ├── real-esrgan-gradio
│ ├── ReleaseNote.md
│ ├── sam2-demo-gradio
│ ├── sd-demo-streamlit
│ ├── vsr-demo-gradio
│ ├── yolox-demo-v4l2
│ ├── yolox-depth-gradio
│ └── yolox-gradio
├── EULA.md
├── LICENSE
├── models
│ ├── Audio
│ ├── ComputeVision
│ ├── Generative_AI
│ └── MultiModal
├── README.md
├── ReleaseNote.md
├── requirements.txt
├── scripts
│ ├── compute
│ ├── llm-gen
│ └── sanity
└── utils
├── __init__.py
├── bev_postprocess.py
├── draw.py
├── evaluate
├── face_postprocess.py
├── image_process.py
├── label
├── NOE_Engine.py
├── object_detect_postprocess.py
├── OCR_postprocess.py
├── pose_postprocess.py
├── segment_postprocess.py
├── text_process.py
└── tools.py