GenScore / scripts /train_genscore.py
anzhi2710gmailcom's picture
Upload folder using huggingface_hub
9d6a2a3 verified
Raw
History Blame Contribute Delete
200 Bytes
import sys
from pathlib import Path
GENSCORE_DIR = Path(__file__).resolve().parent.parent
sys.path.insert(0, str(GENSCORE_DIR))
from models.train import main
if __name__ == "__main__":
main()