Browse Source

remove ./

tags/v1.1.0
wukesong 5 years ago
parent
commit
19f4c60a63
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      model_zoo/official/cv/lenet/scripts/run_standalone_eval_ascend.sh
  2. +1
    -1
      model_zoo/official/cv/lenet/scripts/run_standalone_eval_cpu.sh
  3. +1
    -1
      model_zoo/official/cv/lenet/scripts/run_standalone_eval_gpu.sh
  4. +1
    -1
      model_zoo/official/cv/lenet/scripts/run_standalone_train_ascend.sh
  5. +1
    -1
      model_zoo/official/cv/lenet/scripts/run_standalone_train_cpu.sh
  6. +1
    -1
      model_zoo/official/cv/lenet/scripts/run_standalone_train_gpu.sh

+ 1
- 1
model_zoo/official/cv/lenet/scripts/run_standalone_eval_ascend.sh View File

@@ -19,4 +19,4 @@ script_self=$(readlink -f "$0")
self_path=$(dirname "${script_self}")
DATA_PATH=$1
CKPT_PATH=$2
python -s ${self_path}/../eval.py --data_path=./$DATA_PATH --device_target="Ascend" --ckpt_path=./$CKPT_PATH > log.txt 2>&1 &
python -s ${self_path}/../eval.py --data_path=$DATA_PATH --device_target="Ascend" --ckpt_path=$CKPT_PATH > log.txt 2>&1 &

+ 1
- 1
model_zoo/official/cv/lenet/scripts/run_standalone_eval_cpu.sh View File

@@ -19,4 +19,4 @@ script_self=$(readlink -f "$0")
self_path=$(dirname "${script_self}")
DATA_PATH=$1
CKPT_PATH=$2
python -s ${self_path}/../eval.py --data_path=./$DATA_PATH --device_target="CPU" --ckpt_path=./$CKPT_PATH > log.txt 2>&1 &
python -s ${self_path}/../eval.py --data_path=$DATA_PATH --device_target="CPU" --ckpt_path=$CKPT_PATH > log.txt 2>&1 &

+ 1
- 1
model_zoo/official/cv/lenet/scripts/run_standalone_eval_gpu.sh View File

@@ -19,4 +19,4 @@ script_self=$(readlink -f "$0")
self_path=$(dirname "${script_self}")
DATA_PATH=$1
CKPT_PATH=$2
python -s ${self_path}/../eval.py --data_path=./$DATA_PATH --device_target="GPU" --ckpt_path=./$CKPT_PATH > log.txt 2>&1 &
python -s ${self_path}/../eval.py --data_path=$DATA_PATH --device_target="GPU" --ckpt_path=$CKPT_PATH > log.txt 2>&1 &

+ 1
- 1
model_zoo/official/cv/lenet/scripts/run_standalone_train_ascend.sh View File

@@ -19,4 +19,4 @@ script_self=$(readlink -f "$0")
self_path=$(dirname "${script_self}")
DATA_PATH=$1
CKPT_PATH=$2
python -s ${self_path}/../train.py --data_path=./$DATA_PATH --device_target="Ascend" --ckpt_path=./$CKPT_PATH > log.txt 2>&1 &
python -s ${self_path}/../train.py --data_path=$DATA_PATH --device_target="Ascend" --ckpt_path=$CKPT_PATH > log.txt 2>&1 &

+ 1
- 1
model_zoo/official/cv/lenet/scripts/run_standalone_train_cpu.sh View File

@@ -19,4 +19,4 @@ script_self=$(readlink -f "$0")
self_path=$(dirname "${script_self}")
DATA_PATH=$1
CKPT_PATH=$2
python -s ${self_path}/../train.py --data_path=./$DATA_PATH --device_target="CPU" --ckpt_path=./$CKPT_PATH > log.txt 2>&1 &
python -s ${self_path}/../train.py --data_path=$DATA_PATH --device_target="CPU" --ckpt_path=$CKPT_PATH > log.txt 2>&1 &

+ 1
- 1
model_zoo/official/cv/lenet/scripts/run_standalone_train_gpu.sh View File

@@ -19,4 +19,4 @@ script_self=$(readlink -f "$0")
self_path=$(dirname "${script_self}")
DATA_PATH=$1
CKPT_PATH=$2
python -s ${self_path}/../train.py --data_path=./$DATA_PATH --device_target="GPU" --ckpt_path=./$CKPT_PATH > log.txt 2>&1 &
python -s ${self_path}/../train.py --data_path=$DATA_PATH --device_target="GPU" --ckpt_path=$CKPT_PATH > log.txt 2>&1 &

Loading…
Cancel
Save