Skip to content

Commit

Permalink
Update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
mcamac committed Apr 14, 2023
1 parent 76966a8 commit 7debb56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bark/generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def autocast():
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")),
Expand Down
2 changes: 1 addition & 1 deletion bark/notebooks/fake_classifier.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
Expand Down

0 comments on commit 7debb56

Please sign in to comment.