Skip to content
Snippets Groups Projects
Commit 3d1d9b03 authored by in3omnia's avatar in3omnia Committed by Sanghyun Son
Browse files

wrong args parse (#146)

in src/option.py line 151:
args.data_test = args.data_test.split('+')

so it should be
if args.data_test == ['video']:
parent 54d5faa3
Branches
No related tags found
1 merge request!1Jan 09, 2018 updates
......@@ -12,7 +12,7 @@ checkpoint = utility.checkpoint(args)
def main():
global model
if args.data_test == 'video':
if args.data_test == ['video']:
from videotester import VideoTester
model = model.Model(args, checkpoint)
t = VideoTester(args, model, checkpoint)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment