Spaces:
Runtime error
Runtime error
File size: 285 Bytes
92b63f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from pathlib import Path
BASE_DIR = Path(__file__).resolve().parent.parent
REPORTS_DIR = BASE_DIR / "reports"
ARTIFACTS_DIR = BASE_DIR / "artifacts"
DATA_DIR = BASE_DIR / "test_data"
REPORTS_DIR.mkdir(parents=True, exist_ok=True)
ARTIFACTS_DIR.mkdir(parents=True, exist_ok=True)
|