-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PiperOrigin-RevId: 292658348 Change-Id: I281f21394a3391f39fb8cf29eb72c5248e769585
- Loading branch information
1 parent
9e260f9
commit 6858ba7
Showing
8 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Colab Notebooks | ||
|
||
Interactive notebooks to demonstrate DDSP. | ||
|
||
* [demos](./demos/): Self-contained demonstrations for training models and showing them in action. | ||
|
||
* [tutorials](./tutorials/): Interactive walkthroughs of the DDSP functions and APIs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Data Preparation | ||
|
||
Scripts and libraries to prepare datasets for training. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Gin Configs: Datasets | ||
|
||
This directory contains gin configs for datasets. Each file contains datasets to use for training, evaluation, and sampling. | ||
Each training run with `ddsp_run.py` must be supplied both a model file and a dataset file, each with the `--gin_file` flag. | ||
Evaluation and sampling jobs only require a dataset file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Gin Configs: Models | ||
|
||
This directory contains gin configs for model architectures (including ddsp modules). | ||
Each training run with `ddsp_run.py` must be supplied both a model file and a dataset file, each with the `--gin_file` flag. | ||
Evaluation and sampling jobs only require a dataset file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Gin Configs: Optimization | ||
|
||
This directory contains gin configs for training hyperparameters such as `batch_size` | ||
and `learning_rate`. Default values are loaded via `ddsp_run.py` and can be replaced with the `--gin_param` flag. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Gin Configs: Papers | ||
|
||
This directory contains gin configs for replicating the experiments in published | ||
papers using ddsp. Each config file specifies both the dataset and the model, | ||
so only a single --gin_file flag is required. | ||
|
||
|
||
## List of papers | ||
|
||
* [iclr2020](./iclr2020/): Experiments from the orginal DDSP ICLR 2020 paper ([paper](https://openreview.net/forum?id=B1x1ma4tDr), [blog](https://magenta.tensorflow.org/ddsp)). | ||
|
||
```latex | ||
@inproceedings{ | ||
engel2020ddsp, | ||
title={DDSP: Differentiable Digital Signal Processing}, | ||
author={Jesse Engel and Lamtharn (Hanoi) Hantrakul and Chenjie Gu and Adam Roberts}, | ||
booktitle={International Conference on Learning Representations}, | ||
year={2020}, | ||
url={https://openreview.net/forum?id=B1x1ma4tDr} | ||
} | ||
``` |