1 Star 0 Fork 0

on the way/lightweight_model

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
image_build.sh 702 Bytes
一键复制 编辑 原始数据 按行查看 历史
on the way 提交于 2024-12-26 20:52 . 昇腾小模型镜像构建初版(DiT)
#!/bin/bash
script_dir=$(cd "$(dirname "$0")" && pwd -P)
if ! pgrep -f server.js >>/dev/null ; then
cd "$script_dir" || exit 1
nohup node server.js >> server.log 2>&1 &
fi
source prepare.sh
docker build \
--build-arg http_proxy=$http_proxy \
--build-arg https_proxy=$http_proxy \
--build-arg no_proxy=127.0.0.1,localhost,local,.local,172.17.0.1 \
--build-arg USER=${USER} \
--build-arg U_ID=${U_ID} \
--build-arg GROUP=${GROUP} \
--build-arg GID=${GID} \
--build-arg CANN_TOOLKIT=${CANN_TOOLKIT} \
--build-arg CANN_KERNELS=${CANN_KERNELS} \
--build-arg PORT=${PORT} \
--target modelbase \
-t ascend:lightweight_modelbase_${USER} \
-f "${script_dir}/dockerfile/Dockerfile" \
"${script_dir}"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/daniel6666/lightweight_model.git
git@gitee.com:daniel6666/lightweight_model.git
daniel6666
lightweight_model
lightweight_model
master

搜索帮助