From 8cbd3fc69f377598f39b0c223ac648fd66d82f8a Mon Sep 17 00:00:00 2001 From: LielinJiang Date: Wed, 12 Feb 2020 14:31:10 +0800 Subject: [PATCH] update readme, remove some dead link --- docs/multiple_gpus_train_and_mixed_precision_train.md | 2 +- slim/distillation/README.md | 4 ++-- slim/nas/README.md | 2 +- slim/prune/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/multiple_gpus_train_and_mixed_precision_train.md b/docs/multiple_gpus_train_and_mixed_precision_train.md index 7826d881..206a9409 100644 --- a/docs/multiple_gpus_train_and_mixed_precision_train.md +++ b/docs/multiple_gpus_train_and_mixed_precision_train.md @@ -4,7 +4,7 @@ * PaddlePaddle >= 1.6.1 * NVIDIA NCCL >= 2.4.7 -环境配置,数据,预训练模型准备等工作请参考[安装说明](./installation.md),[PaddleSeg使用说明](./usage.md) +环境配置,数据,预训练模型准备等工作请参考[PaddleSeg使用说明](./usage.md) ### 多进程训练示例 diff --git a/slim/distillation/README.md b/slim/distillation/README.md index 90d1f28c..33897707 100644 --- a/slim/distillation/README.md +++ b/slim/distillation/README.md @@ -2,7 +2,7 @@ # PaddleSeg蒸馏教程 -在阅读本教程前,请确保您已经了解过PaddleSeg的[快速入门](../README.md#快速入门)和[基础功能](../README.md#基础功能)等章节,以便对PaddleSeg有一定的了解 +在阅读本教程前,请确保您已经了解过[PaddleSeg使用说明](../../docs/usage.md)等章节,以便对PaddleSeg有一定的了解 该文档介绍如何使用[PaddleSlim](https://paddlepaddle.github.io/PaddleSlim)对分割库中的模型进行蒸馏。 @@ -70,7 +70,7 @@ distill_loss = l2_loss('teacher_bilinear_interp_2.tmp_0', 'bilinear_interp_0.tmp ### 执行示例 -下载teacher的预训练模型和student的预训练模型, 替换如下命令中的```your_tearcher_pretrained_model_path```和```your_student_pretrained_model``` +下载teacher的预训练模型([deeplabv3p_xception65_bn_cityscapes.tgz](https://paddleseg.bj.bcebos.com/models/xception65_bn_cityscapes.tgz))和student的预训练模型([mobilenet_cityscapes.tgz](https://paddleseg.bj.bcebos.com/models/mobilenet_cityscapes.tgz)), 替换如下命令中的```your_tearcher_pretrained_model_path```和```your_student_pretrained_model``` 执行如下命令启动训练,每间隔```cfg.TRAIN.SNAPSHOT_EPOCH```会进行一次评估。 ```shell diff --git a/slim/nas/README.md b/slim/nas/README.md index 200ba80a..cda5e3b7 100644 --- a/slim/nas/README.md +++ b/slim/nas/README.md @@ -2,7 +2,7 @@ # PaddleSeg神经网络搜索(NAS)示例 -在阅读本教程前,请确保您已经了解过PaddleSeg的[快速入门](../README.md#快速入门)和[基础功能](../README.md#基础功能)等章节,以便对PaddleSeg有一定的了解 +在阅读本教程前,请确保您已经了解过[PaddleSeg使用说明](../../docs/usage.md)等章节,以便对PaddleSeg有一定的了解 该文档介绍如何使用[PaddleSlim](https://paddlepaddle.github.io/PaddleSlim)对分割库中的模型进行搜索。 diff --git a/slim/prune/README.md b/slim/prune/README.md index 79e2e5d8..b6a45238 100644 --- a/slim/prune/README.md +++ b/slim/prune/README.md @@ -1,6 +1,6 @@ # PaddleSeg剪裁教程 -在阅读本教程前,请确保您已经了解过PaddleSeg的[快速入门](../README.md#快速入门)和[基础功能](../README.md#基础功能)等章节,以便对PaddleSeg有一定的了解 +在阅读本教程前,请确保您已经了解过[PaddleSeg使用说明](../../docs/usage.md)等章节,以便对PaddleSeg有一定的了解 该文档介绍如何使用[PaddleSlim](https://paddlepaddle.github.io/PaddleSlim)的卷积通道剪裁接口对检测库中的模型的卷积层的通道数进行剪裁。 -- GitLab