From 3b19dc9c961307e4705e80c282226ac13a9853e3 Mon Sep 17 00:00:00 2001 From: cuicheng01 Date: Thu, 26 Aug 2021 03:37:20 +0000 Subject: [PATCH] fix invalid link in getting_started --- docs/en/tutorials/getting_started_en.md | 2 +- docs/zh_CN/tutorials/getting_started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/tutorials/getting_started_en.md b/docs/en/tutorials/getting_started_en.md index 19142b01..1903a04e 100644 --- a/docs/en/tutorials/getting_started_en.md +++ b/docs/en/tutorials/getting_started_en.md @@ -23,7 +23,7 @@ Among them, `-c` is used to specify the path of the configuration file, `-o` is `-o use_gpu=True` means to use GPU for training. If you want to use the CPU for training, you need to set `use_gpu` to `False`. -Of course, you can also directly modify the configuration file to update the configuration. For specific configuration parameters, please refer to [Configuration Document](config_en.md). +Of course, you can also directly modify the configuration file to update the configuration. For specific configuration parameters, please refer to [Configuration Document](config_description_en.md). * The output log examples are as follows: * If mixup or cutmix is used in training, top-1 and top-k (default by 5) will not be printed in the log: diff --git a/docs/zh_CN/tutorials/getting_started.md b/docs/zh_CN/tutorials/getting_started.md index 7135b793..3708d3e8 100644 --- a/docs/zh_CN/tutorials/getting_started.md +++ b/docs/zh_CN/tutorials/getting_started.md @@ -30,7 +30,7 @@ python3 tools/train.py \ 其中,`-c`用于指定配置文件的路径,`-o`用于指定需要修改或者添加的参数,其中`-o Arch.pretrained=False`表示不使用预训练模型,`-o Global.device=gpu`表示使用GPU进行训练。如果希望使用CPU进行训练,则需要将`Global.device`设置为`cpu`。 -更详细的训练配置,也可以直接修改模型对应的配置文件。具体配置参数参考[配置文档](config.md)。 +更详细的训练配置,也可以直接修改模型对应的配置文件。具体配置参数参考[配置文档](config_description.md)。 运行上述命令,可以看到输出日志,示例如下: -- GitLab