Spaces:
Runtime error
Runtime error
File size: 261 Bytes
0241217 |
1 2 3 4 5 6 7 8 9 10 11 |
"""Path helpers for the relfm project."""
from os.path import join, abspath, dirname
REPO_PATH = dirname(dirname(dirname(abspath(__file__))))
DATA_ROOT = join(REPO_PATH, "data")
DATASET_ROOTS = {
"PNG": join(DATA_ROOT, "panoptic_narrative_grounding"),
}
|