From cf0484b086a28e88bf65f6ea6e8afd58f4cf2fbf Mon Sep 17 00:00:00 2001 From: Fate Sky <15711467148@163.com> Date: Mon, 29 Sep 2025 23:51:10 +0800 Subject: [PATCH] docs: fix typos and update model download URL - Correct grammar in README and remove unused model version variable - Update model download URL to use latest version directly --- official/lite/image_classification/app/download.gradle | 3 +-- research/cv/se_resnext50/README.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/official/lite/image_classification/app/download.gradle b/official/lite/image_classification/app/download.gradle index 715c04160..c0080d1b5 100644 --- a/official/lite/image_classification/app/download.gradle +++ b/official/lite/image_classification/app/download.gradle @@ -5,12 +5,11 @@ */ def targetMindSporeInclude = "src/main/cpp/" def mindsporeLite_Version = "1.6.0" -def modle_Version = "1.6" def mindsporeLite_android_Version = "mindspore-lite-1.6.0-android-aarch64" def targetModelFile = "src/main/assets/model/mobilenetv2.ms" def mindSporeLibrary_arm64 = "src/main/cpp/${mindsporeLite_android_Version}.tar.gz" -def modelDownloadUrl = "https://download.mindspore.cn/model_zoo/official/lite/mobilenetv2_openimage_lite/${modle_Version}/mobilenetv2.ms" +def modelDownloadUrl = "https://download.mindspore.cn/model_zoo/official/lite/mobilenetv2_openimage_lite/mobilenetv2.ms" def mindsporeLiteDownloadUrl = "https://ms-release.obs.cn-north-4.myhuaweicloud.com/${mindsporeLite_Version}/MindSpore/lite/android_aarch64/gpu/${mindsporeLite_android_Version}.tar.gz" def cleantargetMindSporeInclude = "src/main/cpp" diff --git a/research/cv/se_resnext50/README.md b/research/cv/se_resnext50/README.md index 7177cdc05..a6486402a 100644 --- a/research/cv/se_resnext50/README.md +++ b/research/cv/se_resnext50/README.md @@ -230,7 +230,7 @@ sh run_eval.sh 0 /opt/npu/datasets/classification/val /se_resnext50.ckpt Ascend #### Result -Evaluation result will be stored in the scripts path. Under this, you can find result like the following in log. +Evaluation result will be stored in the scripts path. Under this, you can find result like the followings in log. ```log acc=78.81%(TOP1) -- Gitee