transfer-learning-resnet / path_utils.py
Ashutosh
Upload folder using huggingface_hub
e980ac5 verified
Raw
History Blame Contribute Delete
371 Bytes
from pathlib import Path
ROOT = Path(__file__).resolve().parent
DATA_RAW = ROOT / "data" / "raw"
DATA_PROCESSED = ROOT / "data" / "processed"
DATA_ARTIFACTS = ROOT / "data" / "artifacts"
MODELS = ROOT / "models"
CHARTS = ROOT / "charts"
# Folders should be pre-created in the Docker image to avoid runtime PermissionErrors
# No runtime mkdir here for production safety