Skip to content

Commit

Permalink
fix the error doc in the data init helper function
Browse files Browse the repository at this point in the history
  • Loading branch information
leVirve committed Jun 19, 2018
1 parent 6d9e173 commit 06d4d43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from data.base_dataset import BaseDataset

def find_dataset_using_name(dataset_name):
# Given the option --dataset [datasetname],
# the file "datasets/datasetname_dataset.py"
# will be imported.
# Given the option --dataset_mode [datasetname],
# the file "data/datasetname_dataset.py"
# will be imported.
dataset_filename = "data." + dataset_name + "_dataset"
datasetlib = importlib.import_module(dataset_filename)

Expand Down

0 comments on commit 06d4d43

Please sign in to comment.