ftshijt's picture
Update src/envs.py
f6888c7 verified
import os
from huggingface_hub import HfApi
# clone / pull the lmeh eval data
TOKEN = os.environ.get("TOKEN", None)
OWNER = "discrete-speech"
REPO_ID = f"{OWNER}/interspeech2024_discrete_speech_tts_vocoder_highSR"
QUEUE_REPO = f"{OWNER}/interspeech2024_discrete_speech_tts_requests"
RESULTS_REPO = f"{OWNER}/interspeech2024_discrete_speech_vocoder_results"
CACHE_PATH=os.getenv("HF_HOME", ".")
# Local caches
EVAL_REQUESTS_PATH = os.path.join(CACHE_PATH, "eval-queue")
EVAL_RESULTS_PATH = os.path.join(CACHE_PATH, "eval-results")
API = HfApi(token=TOKEN)