AI Model Hub
CIX AI Model Hub 仓库托管在魔搭社区上,访问地址 cix ai_model_hub
克隆目录
通过下面的命令可以仅克隆非 git lfs 跟踪的文件:
信息
板端克隆目录结构之后,根据是否要进行主机端模型转换决定是否在主机克隆。
GIT_LFS_SKIP_SMUDGE=1 git clone https://www.modelscope.cn/cix/ai_model_hub_25_Q3.git
配置板端环境
信息
运行前激活虚拟环境!
提示
这里创建虚拟环境时必须加上 --system-site-packages 继承系统包。
O6 / O6N
cd ai_model_hub_25_Q3/
python3 -m venv --system-site-packages .venv
source .venv/bin/activate
pip3 install -r requirements.txt
安装提示
如果 pip3 install -r requirements.txt 在构建 openai-clip 时失败,而您当前并不需要运行 CLIP 相关 demo,可以先注释 requirements.txt 中对应的 openai-clip 依赖后再继续安装。
如果必须使用 CLIP 模型,请尝试改用 openai-clip 历史版本,并结合实际报错日志进一步排查。
下载整个仓库
建议
由于仓库体积较大,建议避免全量克隆。
使用 git 下载(请确保安装 git-lfs)
mkdir ai-model-hub && cd ai-model-hub
git lfs install
git clone https://www.modelscope.cn/cix/ai_model_hub_25_Q3.git
目录如下:
.
├── 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