master-thesis/settings.py

15 lines
521 B
Python
Raw Permalink Normal View History

2019-05-08 17:39:41 +02:00
#!/usr/bin/env python3
2019-05-14 21:46:16 +02:00
data_root = "./data/"
one_million_recipes_file = data_root + "1M_recipes/layer1.json"
yummly_train = data_root + "Yummly/train.json"
2019-07-13 19:44:04 +02:00
usda_old_csv_folder = data_root + "usda_database_old/csv_exports/"
fooddb_folder = data_root + "foodb_2017_06_29_csv/"
ingredients_file = data_root + "ingredients.py"
actions_file = data_root + "actions.py"
container_file = data_root + "containers.py"
placeholder_file = data_root + "placeholders.py"
gzipped_conllu_data_root = data_root + "1M_recipes_conllu/"