-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
6 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 |
---|---|---|
@@ -1,8 +1,17 @@ | ||
# Autoregressive Pretrained Models | ||
|
||
The following pre-trained models are provided (R=receptive field, Q=number of quantization channels): | ||
- `mnist_q2`: WaveNet trained on MNIST with R=699, Q=2 | ||
- `mnist_q256`: WaveNet trained on MNIST with R=699, Q=256 | ||
- `fourier`: WaveNet trained on random Fourier dataset. | ||
Autoregressive library comes with a set of pre-trained models. Neither of models was carefully tuned. In the following | ||
- `R` refers to the models' receptive field, | ||
- `Q` to the number of input/output quantization channels. | ||
|
||
### Model `mnist_q256` | ||
WaveNet trained on MNIST. R=699, Q=256, conditioned on the digit class. | ||
|
||
### Model `mnist_q2` | ||
WaveNet trained on binarized MNIST. R=699, Q=2, conditioned on the digit class. | ||
|
||
### Model `fseries_q127` | ||
WaveNet trained on random Fourier series dataset. R=699, Q=127, conditioned on the periodicity of the signal. Training parameters allow periods (integer) between 5-10secs which maps to conditions [0..4]. | ||
|
||
For usage see [main](../) Readme. | ||
|
||
Each model has roughly 4M parameters. Please note that the models have not been tuned with few parameters in mind. |