From f7c4891c400c809ae534401291051acc301c8f09 Mon Sep 17 00:00:00 2001 From: seekingdeep Date: Thu, 21 Jan 2021 23:18:14 +0300 Subject: [PATCH] Update ctw1500_detection.py --- demo/ctw1500_detection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/ctw1500_detection.py b/demo/ctw1500_detection.py index 17ca993..4a8c737 100644 --- a/demo/ctw1500_detection.py +++ b/demo/ctw1500_detection.py @@ -37,14 +37,14 @@ def get_parser(): parser = argparse.ArgumentParser(description="Detectron2 Demo") parser.add_argument( "--config-file", - default="../configs/ocr/ctw1500_101_FPN.yaml", + default="./configs/ocr/ctw1500_101_FPN.yaml", metavar="FILE", help="path to config file", ) parser.add_argument( "--weights", - default="../out_dir_r101/ctw1500_model/model_ctw_r101.pth", + default="./out_dir_r101/ctw1500_model/model_ctw_r101.pth", metavar="pth", help="the model used to inference", )