Skip to content

Commit

Permalink
Minor fixes to places/plantae preparation script
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnamgyu committed Aug 7, 2022
1 parent 346540a commit c635de2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data_preparation/places.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from tqdm import tqdm

ROOT = os.path.dirname(os.path.abspath(__file__))
SUBSET_PATH = 'places_cdfsl_subset_16_class_1715_sample_seed_0.json'
SUBSET_PATH = os.path.join(ROOT, "places_cdfsl_subset_16_class_1715_sample_seed_0.json")
SOURCE_DIR = os.path.join(ROOT, "input", "places365_standard/train")
TARGET_DIR = os.path.join(ROOT, "output", "places_cdfsl")

Expand Down
2 changes: 1 addition & 1 deletion data_preparation/plantae.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from tqdm import tqdm

ROOT = os.path.dirname(os.path.abspath(__file__))
SUBSET_PATH = 'plantae_cdfsl_subset_69_class.json'
SUBSET_PATH = os.path.join(ROOT, "plantae_cdfsl_subset_69_class.json")
SOURCE_DIR = os.path.join(ROOT, "input", "Plantae")
TARGET_DIR = os.path.join(ROOT, "output", "plantae_cdfsl")

Expand Down

0 comments on commit c635de2

Please sign in to comment.