master-thesis/settings.py
2019-07-27 15:08:25 +02:00

14 lines
472 B
Python

#!/usr/bin/env python3
data_root = "./data/"
one_million_recipes_file = data_root + "1M_recipes/layer1.json"
yummly_train = data_root + "Yummly/train.json"
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"
gzipped_conllu_data_root = data_root + "1M_recipes_conllu/"