|
import os |
|
|
|
from huggingface_hub import HfApi |
|
|
|
|
|
TOKEN = os.environ.get("TOKEN", None) |
|
|
|
OWNER = "discrete-speech" |
|
REPO_ID = f"{OWNER}/interspeech2024_discrete_speech_tts_vocoder_lowSR" |
|
QUEUE_REPO = f"{OWNER}/interspeech2024_discrete_speech_tts_requests" |
|
RESULTS_REPO = f"{OWNER}/interspeech2024_discrete_speech_vocoder_results" |
|
|
|
CACHE_PATH=os.getenv("HF_HOME", ".") |
|
|
|
|
|
EVAL_REQUESTS_PATH = os.path.join(CACHE_PATH, "eval-queue") |
|
EVAL_RESULTS_PATH = os.path.join(CACHE_PATH, "eval-results") |
|
|
|
API = HfApi(token=TOKEN) |
|
|