首页
随机
最近更改
特殊页面
社群首页
参数设置
关于WHY42
免责声明
WHY42
搜索
用户菜单
登录
欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
查看“︁MiniCPM”︁的源代码
←
MiniCPM
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
https://github.com/OpenBMB/MiniCPM MiniCPM 是面壁智能与清华大学自然语言处理实验室共同开源的系列端侧大模型,主体语言模型 MiniCPM-2B 仅有 24亿(2.4B)的非词嵌入参数量, 总计2.7B参数量。 = Run MiniCPM = == Install dependencies == <syntaxhighlight lang="bash"> pip install --upgrade pip --index-url https://mirrors.sustech.edu.cn/pypi/web/simple pip config set global.index-url https://mirrors.sustech.edu.cn/pypi/web/simple pip install torch torchvision flash_attn pip install transformers==4.37.2 gradio==4.16.0 accelerate==0.26.1 </syntaxhighlight> == Download Model == <syntaxhighlight lang="bash"> pip install -U huggingface_hub export HF_ENDPOINT=https://hf-mirror.com huggingface-cli download openbmb/MiniCPM-2B-dpo-bf16 --local-dir=./models/openbmb/MiniCPM-2B-dpo-bf16 --cache-dir=./cache --local-dir-use-symlinks=False --resume-download # if huggingface-cli command not found # echo "export PATH=\"`python3 -m site --user-base`/bin:\$PATH\"" >> ~/.bashrc # source ~/.bashrc </syntaxhighlight> [[Category:Deep Learning]]
返回
MiniCPM
。