Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ddsp/colab/demos/pitch_detection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@
" os.makedirs(PRETRAINED_DIR, exist_ok=True)\n",
" GCS_CKPT_DIR = 'gs://ddsp-inv/ckpts'\n",
" model_dir_gcs = os.path.join(GCS_CKPT_DIR, '%s_ckpt' % args.model.lower())\n",
" os.system(f'gsutil cp {model_dir_gcs}/* {PRETRAINED_DIR}')\n",
" os.system(f'gcloud storage cp {model_dir_gcs}/* {PRETRAINED_DIR}')\n",
" model_dir = PRETRAINED_DIR\n",
"\n",
" # Find checkpoint\n",
Expand Down
2 changes: 1 addition & 1 deletion ddsp/training/gin/papers/icml2020/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ A pretrained model on 1.2M steps (batch size=64) of synthetic data [is available
or on GCP.

```bash
gsutil cp -r gs://ddsp-inv/ckpts/synthetic_pretrained_ckpt /path/to/synthetic_pretrained_ckpt
gcloud storage cp --recursive gs://ddsp-inv/ckpts/synthetic_pretrained_ckpt /path/to/synthetic_pretrained_ckpt
```

```bash
Expand Down
Loading