From 427c66f10720e323a908c2dc9bceee9f0bb0d959 Mon Sep 17 00:00:00 2001
From: liushuchun <liuscgood@gmail.com>
Date: Thu, 16 May 2019 16:27:26 +0800
Subject: [PATCH] update docs (#653)

'mask' option has been removed & replaced with 'segm'
---
 GETTING_STARTED.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md
index 27edf5a..d965425 100644
--- a/GETTING_STARTED.md
+++ b/GETTING_STARTED.md
@@ -46,7 +46,7 @@ python tools/test.py configs/faster_rcnn_r50_fpn_1x.py \
 ```shell
 python tools/test.py configs/mask_rcnn_r50_fpn_1x.py \
     checkpoints/mask_rcnn_r50_fpn_1x_20181010-069fa190.pth \
-    --out results.pkl --eval bbox mask
+    --out results.pkl --eval bbox segm
 ```
 
 3. Test Mask R-CNN with 8 GPUs, and evaluate the bbox and mask AP.
@@ -54,7 +54,7 @@ python tools/test.py configs/mask_rcnn_r50_fpn_1x.py \
 ```shell
 ./tools/dist_test.sh configs/mask_rcnn_r50_fpn_1x.py \
     checkpoints/mask_rcnn_r50_fpn_1x_20181010-069fa190.pth \
-    8 --out results.pkl --eval bbox mask
+    8 --out results.pkl --eval bbox segm
 ```
 
 ### High-level APIs for testing images.
-- 
GitLab