File size: 606 Bytes
d107fd9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Configuration Constants - ML Settings, Paths, App Metadata, Messages
All configuration and system-level constants
"""

# ========================================
# APPLICATION METADATA
# ========================================

APP_NAME = "SUD-PROMISE Drug Repositioning Assessment Platform"
APP_VERSION = "3.3.0"
INSTITUTION = "University of Alabama at Birmingham"

# ========================================
# FILE PATHS
# ========================================

DATA_DIR = "data1"
MODEL_DIR = "saved_models"

DRUGS_FILE = f"{DATA_DIR}/drugsInfo.csv"
DISEASES_FILE = f"{DATA_DIR}/diseasesInfo.csv"