Spaces:
Running
Running
File size: 274 Bytes
4d4dd90 |
1 2 3 4 5 6 7 |
from pathlib import Path
root = Path(__file__).parent.parent # top-level directory
DATA_PATH = root / "data/" # datasets and pretrained weights
TRAINING_PATH = root / "outputs/training/" # training checkpoints
EVAL_PATH = root / "outputs/results/" # evaluation results
|