File size: 657 Bytes
b77cb84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import os
from huggingface_hub import HfApi
ENDPOINTS = ["LogD",
"KSol",
"MLM CLint",
"HLM CLint",
"Caco-2 Permeability Efflux",
"Caco-2 Permeability Papp A>B",
"MPPB",
"MBPB",
"RLM CLint",
"MGMB"]
TOKEN = os.environ.get("HF_TOKEN")
CACHE_PATH=os.getenv("HF_HOME", ".")
API = HfApi(token=TOKEN)
organization="OpenADMET"
submissions_repo = f'{organization}/openadmet-challenge-submissions' # private
results_repo = f'{organization}/openadmet-challenge-results' # public
test_repo = f'{organization}/openadmet-challenge-test-data' # private |