blob: b5a868dc8dcf179dbb7f7143e85083b9a2aa6f2e (
plain)
1
2
3
4
5
6
|
"""Training paths."""
from pathlib import Path
TRAINING_DIR = Path(__file__).parents[0].resolve()
ARTIFACTS_DIR = TRAINING_DIR.parent / "text_recognizer" / "artifacts"
RUNS_DIR = TRAINING_DIR / "logs" / "runs"
|