From 73ee511299d0e989fc2f73542f29962633c4af3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 03:49:51 +0000 Subject: [PATCH 01/10] =?UTF-8?q?=E6=9B=B4=E6=96=B0vocab.txt=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BertBase_ID0490_for_PyTorch/test/train_performance_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_1p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_1p.sh index f09723a2fa..2dad66e054 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_1p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_1p.sh @@ -105,7 +105,7 @@ do --max_steps 100 \ --use_npu \ --loss_scale 4096 \ - --vocab_file "data/uncased_L-24_H-1024_A-16/vocab.txt" \ + --vocab_file ${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt \ --do_eval \ --eval_script ${data_path}/squad/v1.1/evaluate-v1.1.py \ --npu_id ${ASCEND_DEVICE_ID} \ -- Gitee From 8d23b724bdc543a5c0a9fdf41a883728d3388a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 05:46:02 +0000 Subject: [PATCH 02/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh index d38de0ad26..4fc98389e5 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh @@ -61,7 +61,7 @@ precision=${5:-"fp16"} num_npu=${6:-"8"} seed=${7:-"1"} squad_dir=${8:-"`${data_path}/squad/v1.1`"} -vocab_file=${9:-"data/uncased_L-24_H-1024_A-16/vocab.txt"} +vocab_file=${9:-"`${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt`"} OUT_DIR=${10:-"results/SQuAD"} mode=${11:-"train eval"} CONFIG_FILE=${12:-"bert_base_config.json"} -- Gitee From 2d5c03e2c088f0356aa169b5cc225451045522f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 06:31:15 +0000 Subject: [PATCH 03/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh index 4fc98389e5..05162d2569 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_performance_8p.sh @@ -61,7 +61,7 @@ precision=${5:-"fp16"} num_npu=${6:-"8"} seed=${7:-"1"} squad_dir=${8:-"`${data_path}/squad/v1.1`"} -vocab_file=${9:-"`${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt`"} +vocab_file=${9:-"${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt"} OUT_DIR=${10:-"results/SQuAD"} mode=${11:-"train eval"} CONFIG_FILE=${12:-"bert_base_config.json"} -- Gitee From 13e3d789bd54639e3895275bf263fa8e7dd32ba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 06:46:58 +0000 Subject: [PATCH 04/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/train_ID3075_BertBase_performance_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh index 5be95b9f33..7cf28763d3 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh @@ -105,7 +105,7 @@ do --max_steps 100 \ --use_npu \ --loss_scale 4096 \ - --vocab_file "data/uncased_L-24_H-1024_A-16/vocab.txt" \ + --vocab_file {data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt \ --do_eval \ --eval_script ${data_path}/squad/v1.1/evaluate-v1.1.py \ --npu_id ${ASCEND_DEVICE_ID} \ -- Gitee From ab6b8ad1e84b7d2b012cdc8fd981f4c2a54712dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 06:58:13 +0000 Subject: [PATCH 05/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/train_ID3075_BertBase_performance_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh index 7cf28763d3..f7c7779eb1 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_1p.sh @@ -105,7 +105,7 @@ do --max_steps 100 \ --use_npu \ --loss_scale 4096 \ - --vocab_file {data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt \ + --vocab_file ${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt \ --do_eval \ --eval_script ${data_path}/squad/v1.1/evaluate-v1.1.py \ --npu_id ${ASCEND_DEVICE_ID} \ -- Gitee From 06aa0eb5a42873704bbbbb48a83a30cb51c80988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 07:12:52 +0000 Subject: [PATCH 06/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/train_ID3075_BertBase_performance_8p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh index 7370cfa3c3..2e537c4f53 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh @@ -61,7 +61,7 @@ precision=${5:-"fp16"} num_npu=${6:-"8"} seed=${7:-"1"} squad_dir=${8:-"`${data_path}/squad/v1.1`"} -vocab_file=${9:-"data/uncased_L-24_H-1024_A-16/vocab.txt"} +vocab_file=${9:-"${data_path}data/uncased_L-24_H-1024_A-16/vocab.txt"} OUT_DIR=${10:-"results/SQuAD"} mode=${11:-"train eval"} CONFIG_FILE=${12:-"bert_base_config.json"} -- Gitee From 29509cc4c7f6900284048cabc31d7d016bf04ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 07:13:39 +0000 Subject: [PATCH 07/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BertBase_ID0490_for_PyTorch/test/train_full_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh index fcbca90608..ce1f86647d 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh @@ -104,7 +104,7 @@ do --fp16 \ --use_npu \ --loss_scale 4096 \ - --vocab_file "data/uncased_L-24_H-1024_A-16/vocab.txt" \ + --vocab_file ${data_path}data/uncased_L-24_H-1024_A-16/vocab.txt \ --do_eval \ --eval_script ${data_path}/squad/v1.1/evaluate-v1.1.py \ --npu_id ${ASCEND_DEVICE_ID} \ -- Gitee From 069ad0e238d3f00f874c02e52201356fdcd04f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 07:15:47 +0000 Subject: [PATCH 08/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BertBase_ID0490_for_PyTorch/test/train_full_8p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_8p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_8p.sh index 3b555b4232..4634e58c0b 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_8p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_8p.sh @@ -27,7 +27,7 @@ precision=${5:-"fp16"} num_npu=${6:-"8"} seed=${7:-"1"} squad_dir=${8:-"data/squad/v1.1"} -vocab_file=${9:-"data/uncased_L-24_H-1024_A-16/vocab.txt"} +vocab_file=${9:-"${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt"} OUT_DIR=${10:-"results/SQuAD"} mode=${11:-"train eval"} CONFIG_FILE=${12:-"bert_base_config.json"} -- Gitee From 61eef240004a5538e9dc82c294b6911edfccad89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 07:16:20 +0000 Subject: [PATCH 09/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BertBase_ID0490_for_PyTorch/test/train_full_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh index ce1f86647d..66c2811ca5 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_full_1p.sh @@ -104,7 +104,7 @@ do --fp16 \ --use_npu \ --loss_scale 4096 \ - --vocab_file ${data_path}data/uncased_L-24_H-1024_A-16/vocab.txt \ + --vocab_file ${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt \ --do_eval \ --eval_script ${data_path}/squad/v1.1/evaluate-v1.1.py \ --npu_id ${ASCEND_DEVICE_ID} \ -- Gitee From 8965bc96941101fe05eb2fcc1eb5988325f77c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=9C=B5?= <9953286+wang-duo22@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 07:17:06 +0000 Subject: [PATCH 10/10] =?UTF-8?q?vocab.txt=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=88=B0=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/train_ID3075_BertBase_performance_8p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh index 2e537c4f53..e0a09bf468 100644 --- a/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh +++ b/PyTorch/dev/cv/image_classification/BertBase_ID0490_for_PyTorch/test/train_ID3075_BertBase_performance_8p.sh @@ -61,7 +61,7 @@ precision=${5:-"fp16"} num_npu=${6:-"8"} seed=${7:-"1"} squad_dir=${8:-"`${data_path}/squad/v1.1`"} -vocab_file=${9:-"${data_path}data/uncased_L-24_H-1024_A-16/vocab.txt"} +vocab_file=${9:-"${data_path}/data/uncased_L-24_H-1024_A-16/vocab.txt"} OUT_DIR=${10:-"results/SQuAD"} mode=${11:-"train eval"} CONFIG_FILE=${12:-"bert_base_config.json"} -- Gitee