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