Update urls

This commit is contained in:
Martin Camacho
2023-04-14 10:36:45 -07:00
parent 76966a8b1f
commit 7debb5690a
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ default_cache_dir = os.path.join(os.path.expanduser("~"), ".cache")
CACHE_DIR = os.path.join(os.getenv("XDG_CACHE_HOME", default_cache_dir), "suno", "bark_v0")
REMOTE_BASE_URL = "http://s3.amazonaws.com/suno-public/bark/models/v0/"
REMOTE_BASE_URL = "https://dl.suno-models.io/bark/models/v0/"
REMOTE_MODEL_PATHS = {
"text": {
"path": os.environ.get("SUNO_TEXT_MODEL_PATH", os.path.join(REMOTE_BASE_URL, "text_2.pt")),

View File

@@ -37,7 +37,7 @@
"metadata": {},
"outputs": [],
"source": [
"# load sk-learn classifier from here: http://s3.amazonaws.com/suno-public/bark/models/v0/classifier.pkl\n",
"# load sk-learn classifier from here: https://dl.suno-models.io/bark/models/v0/classifier.pkl\n",
"with open(\"classifier.pkl\", \"rb\") as f:\n",
" clf = pickle.load(f)"
]