Skip to content

Commit

Permalink
new paths
Browse files Browse the repository at this point in the history
  • Loading branch information
EliasVansteenkiste committed Apr 7, 2017
1 parent 593d3c9 commit 1fd9771
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pathfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@
raise ValueError('no sample submission file')

VALIDATION_SPLIT_PATH = paths["VALIDATION_SPLIT_PATH"]
# if not os.path.isfile(VALIDATION_SPLIT_PATH):
# raise ValueError('no validation file')
if not os.path.isfile(VALIDATION_SPLIT_PATH):
raise ValueError('no VALIDATION_SPLIT_PATH file')

FINAL_SPLIT_PATH = paths["FINAL_SPLIT_PATH"]
if not os.path.isfile(FINAL_SPLIT_PATH):
raise ValueError('no FINAL_SPLIT_PATH file')

# luna data
LUNA_DATA_PATH = paths["LUNA_DATA_PATH"]
Expand Down

0 comments on commit 1fd9771

Please sign in to comment.