From 7a9467137011549192044585f7a7a7ca46a7ca30 Mon Sep 17 00:00:00 2001 From: xuanyue Date: Tue, 6 Jul 2021 14:31:28 +0800 Subject: [PATCH] adjust model name --- mindspore/lite/examples/runtime_extend/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mindspore/lite/examples/runtime_extend/build.sh b/mindspore/lite/examples/runtime_extend/build.sh index 3b57e5b1b82..c57e8ffb0f3 100644 --- a/mindspore/lite/examples/runtime_extend/build.sh +++ b/mindspore/lite/examples/runtime_extend/build.sh @@ -22,7 +22,7 @@ get_version() { VERSION_STR=${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION} } get_version -MODEL_DOWNLOAD_URL="https://download.mindspore.cn/model_zoo/official/lite/quick_start/model_extend.ms" +MODEL_DOWNLOAD_URL="https://download.mindspore.cn/model_zoo/official/lite/quick_start/add_extend.ms" MINDSPORE_FILE_NAME="mindspore-lite-${VERSION_STR}-linux-x64" MINDSPORE_FILE="${MINDSPORE_FILE_NAME}.tar.gz" MINDSPORE_LITE_DOWNLOAD_URL="https://ms-release.obs.cn-north-4.myhuaweicloud.com/${VERSION_STR}/MindSpore/lite/release/linux/${MINDSPORE_FILE}" @@ -31,8 +31,8 @@ mkdir -p build mkdir -p lib mkdir -p include mkdir -p model -if [ ! -e ${BASEPATH}/model/model_extend.ms ]; then - wget -c -O ${BASEPATH}/model/model_extend.ms --no-check-certificate ${MODEL_DOWNLOAD_URL} +if [ ! -e ${BASEPATH}/model/add_extend.ms ]; then + wget -c -O ${BASEPATH}/model/add_extend.ms --no-check-certificate ${MODEL_DOWNLOAD_URL} fi if [ ! -e ${BASEPATH}/build/${MINDSPORE_FILE} ]; then wget -c -O ${BASEPATH}/build/${MINDSPORE_FILE} --no-check-certificate ${MINDSPORE_LITE_DOWNLOAD_URL}