Spaces:
Sleeping
Sleeping
João Pedro
commited on
Commit
·
e6ad839
1
Parent(s):
9652b01
add PROJECT_NAME constant
Browse files- constants.py +2 -0
constants.py
CHANGED
@@ -2,6 +2,8 @@ from pathlib import Path
|
|
2 |
from typing import TypedDict, Union, TypeAlias, Tuple
|
3 |
|
4 |
# Constants
|
|
|
|
|
5 |
DATA_DIR = Path('./data')
|
6 |
RAW_DATA_DIR = DATA_DIR / 'raw'
|
7 |
PROCESSED_DATA_DIR = DATA_DIR / 'processed'
|
|
|
2 |
from typing import TypedDict, Union, TypeAlias, Tuple
|
3 |
|
4 |
# Constants
|
5 |
+
PROJECT_NAME = 'hydra-classifier'
|
6 |
+
|
7 |
DATA_DIR = Path('./data')
|
8 |
RAW_DATA_DIR = DATA_DIR / 'raw'
|
9 |
PROCESSED_DATA_DIR = DATA_DIR / 'processed'
|