Skip to content

Commit

Permalink
Tiny fix: fix preprocess_vimeo90k_dataset.py args name (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnjiang authored Apr 28, 2021
1 parent a3f4cd3 commit 29d6487
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ def parse_args():
description='Preprocess Vimeo90K datasets',
epilog='You can download the Vimeo90K dataset '
'from:http://toflow.csail.mit.edu/')
parser.add_argument('gt-path', help='GT path for Vimeo90K')
parser.add_argument('lq-path', help='LQ path for Vimeo90K')
parser.add_argument('gt_path', help='GT path for Vimeo90K')
parser.add_argument('lq_path', help='LQ path for Vimeo90K')
parser.add_argument(
'train-list', help='official training list path for Vimeo90K')
'train_list', help='official training list path for Vimeo90K')
parser.add_argument(
'--make-lmdb', action='store_true', help='create lmdb files')

Expand Down

0 comments on commit 29d6487

Please sign in to comment.