Skip to content

Commit 9227460

Browse files
committed
fix: test input path error
1 parent ed17dcb commit 9227460

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/export.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,14 @@ def args_parser():
5656
parser.add_argument(
5757
'--dataset',
5858
type=str,
59+
required=True,
5960
help='Path to the dataset.'
6061
)
6162

6263
parser.add_argument(
6364
'--test_input',
6465
type=str,
65-
default=os.path.dirname(os.path.realpath(__file__)) + '/../image/bus.jpg',
66+
default=os.path.dirname(os.path.realpath(__file__)) + '/../images/bus.jpg',
6667
help='Path to the test image.'
6768
)
6869

0 commit comments

Comments
 (0)