From 435dfb2ebc347654ebe902f9502f38e0e9d5477a Mon Sep 17 00:00:00 2001 From: FlyingQianMM <245467267@qq.com> Date: Tue, 16 Jun 2020 20:54:28 +0800 Subject: [PATCH] fix fast_rcnn tutorial comments --- new_tutorials/train/segmentation/fast_scnn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new_tutorials/train/segmentation/fast_scnn.py b/new_tutorials/train/segmentation/fast_scnn.py index 53f1a52..9c48d31 100644 --- a/new_tutorials/train/segmentation/fast_scnn.py +++ b/new_tutorials/train/segmentation/fast_scnn.py @@ -35,7 +35,7 @@ eval_dataset = pdx.datasets.SegDataset( # 浏览器打开 https://0.0.0.0:8001即可 # 其中0.0.0.0为本机访问,如为远程服务, 改成相应机器IP -# https://paddlex.readthedocs.io/zh_CN/latest/apis/models/semantic_segmentation.html#hrnet +# https://paddlex.readthedocs.io/zh_CN/latest/apis/models/semantic_segmentation.html#fastscnn num_classes = len(train_dataset.labels) model = pdx.seg.FastSCNN(num_classes=num_classes) model.train( -- GitLab