English
OneScience
protein structure generation
File size: 182 Bytes
8e04e6f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import sys
from pathlib import Path

DIR = Path(__file__).resolve().parent.parent
sys.path.insert(0, str(DIR))

from models.train import main


if __name__ == "__main__":
    main()