File size: 247 Bytes
6f6156d
 
 
 
 
 
 
a628b91
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from pathlib import Path
import sys

REPO_ROOT = Path(__file__).resolve().parents[1]
if str(REPO_ROOT) not in sys.path:
    sys.path.insert(0, str(REPO_ROOT))

from triage_env.scripts.train_task3 import main


if __name__ == "__main__":
    main()