!23315 fix spelling issue of some model zoo network guide
Merge pull request !23315 from iambowen1984/master
This commit is contained in:
commit
4388b3f9cd
|
@ -93,8 +93,8 @@ MobileNetV3总体网络架构如下:
|
||||||
```bash
|
```bash
|
||||||
# 训练示例
|
# 训练示例
|
||||||
python:
|
python:
|
||||||
GPU: python train.py --dataset_path ~/imagenet/train/ --device_targe GPU
|
GPU: python train.py --dataset_path ~/imagenet/train/ --device_target GPU
|
||||||
CPU: python train.py --dataset_path ~/cifar10/train/ --device_targe CPU
|
CPU: python train.py --dataset_path ~/cifar10/train/ --device_target CPU
|
||||||
shell:
|
shell:
|
||||||
GPU: bash run_train.sh GPU 8 0,1,2,3,4,5,6,7 ~/imagenet/train/
|
GPU: bash run_train.sh GPU 8 0,1,2,3,4,5,6,7 ~/imagenet/train/
|
||||||
CPU: bash run_train.sh CPU ~/cifar10/train/
|
CPU: bash run_train.sh CPU ~/cifar10/train/
|
||||||
|
|
|
@ -89,8 +89,8 @@ You can start training using python or shell scripts. The usage of shell scripts
|
||||||
```shell
|
```shell
|
||||||
# training example
|
# training example
|
||||||
python:
|
python:
|
||||||
GPU: python train.py --dataset_path ~/imagenet/train/ --device_targe GPU
|
GPU: python train.py --dataset_path ~/imagenet/train/ --device_target GPU
|
||||||
CPU: python train.py --dataset_path ~/cifar10/train/ --device_targe CPU
|
CPU: python train.py --dataset_path ~/cifar10/train/ --device_target CPU
|
||||||
shell:
|
shell:
|
||||||
GPU: bash run_train.sh GPU 8 0,1,2,3,4,5,6,7 ~/imagenet/train/
|
GPU: bash run_train.sh GPU 8 0,1,2,3,4,5,6,7 ~/imagenet/train/
|
||||||
CPU: bash run_train.sh CPU ~/cifar10/train/
|
CPU: bash run_train.sh CPU ~/cifar10/train/
|
||||||
|
@ -121,8 +121,8 @@ You can start training using python or shell scripts. The usage of shell scripts
|
||||||
```shell
|
```shell
|
||||||
# infer example
|
# infer example
|
||||||
python:
|
python:
|
||||||
GPU: python eval.py --dataset_path ~/imagenet/val/ --checkpoint_path mobilenet_199.ckpt --device_targe GPU
|
GPU: python eval.py --dataset_path ~/imagenet/val/ --checkpoint_path mobilenet_199.ckpt --device_target GPU
|
||||||
CPU: python eval.py --dataset_path ~/cifar10/val/ --checkpoint_path mobilenet_199.ckpt --device_targe CPU
|
CPU: python eval.py --dataset_path ~/cifar10/val/ --checkpoint_path mobilenet_199.ckpt --device_target CPU
|
||||||
|
|
||||||
shell:
|
shell:
|
||||||
GPU: bash run_infer.sh GPU ~/imagenet/val/ ~/train/mobilenet-200_625.ckpt
|
GPU: bash run_infer.sh GPU ~/imagenet/val/ ~/train/mobilenet-200_625.ckpt
|
||||||
|
|
Loading…
Reference in New Issue