Spaces:
Sleeping
Sleeping
File size: 513 Bytes
f027c05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
'''
PROJECT CONFIGURATION FILE
This file contains the configuration variables for the project. The variables are used
in the other scripts to define the paths to the data and results directories. The variables
are also used to set the random seed for reproducibility.
'''
# import libraries
import os
from pathlib import Path
# define project configuration variables
PROJECT_DIR = Path(os.getcwd())
DATA_DIR = PROJECT_DIR / 'data'
MODEL_DIR = PROJECT_DIR / 'models'
MEDIA_DIR = PROJECT_DIR / 'media'
SEED = 42 |