|
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' |
|
results_repo = f'{organization}/openadmet-challenge-results' |
|
test_repo = f'{organization}/openadmet-challenge-test-data' |