Skip to content

Commit

Permalink
Correcting upload_coco2017.py
Browse files Browse the repository at this point in the history
Example contains default folder path to ```cifar10``` dataset. Correcting it to ```COCOdataset2017```
  • Loading branch information
kzuri authored Oct 25, 2020
1 parent 9c050c8 commit 94efaab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/coco/upload_coco2017.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ def main():
"dataset_path",
metavar="P",
type=str,
help="Path to cifar dataset",
default="./data/cifar10",
help="Path to coco2017 dataset",
default="./data/COCOdataset2017",
)
parser.add_argument(
"output_path",
metavar="N",
type=str,
help="Dataset output path",
default="cifar10",
default="COCOdataset2017",
)
parser.add_argument("year", metavar="Y", type=str, default="2017")
args = parser.parse_args()
Expand Down

0 comments on commit 94efaab

Please sign in to comment.