InstruSumEval / src /envs.py
henryL7's picture
update repo name
bb5ef59
raw
history blame contribute delete
375 Bytes
import os
from huggingface_hub import HfApi
# Info to change for your repository
# ----------------------------------
TOKEN = os.environ.get("TOKEN") # A read/write token for your org
# ----------------------------------
REPO_ID = f"yale-nlp/InstruSumEval"
# If you setup a cache later, just change HF_HOME
CACHE_PATH=os.getenv("HF_HOME", ".")
API = HfApi(token=TOKEN)