From 68589d36f67ce3e05e0c5cd936b6e7fa72a1101a Mon Sep 17 00:00:00 2001
From: Chang Si <csi@glitech.com>
Date: Sun, 9 Jun 2019 20:10:21 +0800
Subject: [PATCH] fix a typo in GETTING_STARTED.md (#774)

---
 GETTING_STARTED.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md
index 48b0010..14ae774 100644
--- a/GETTING_STARTED.md
+++ b/GETTING_STARTED.md
@@ -68,7 +68,7 @@ config_file = 'configs/faster_rcnn_r50_fpn_1x.py'
 checkpoint_file = 'checkpoints/faster_rcnn_r50_fpn_1x_20181010-3d1b3351.pth'
 
 # build the model from a config file and a checkpoint file
-model = init_detector(config_file, checkpoint_file, device='cuda:0'))
+model = init_detector(config_file, checkpoint_file, device='cuda:0')
 
 # test a single image and show the results
 img = 'test.jpg'  # or img = mmcv.imread(img), which will only load it once
-- 
GitLab