-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #208 from kan-bayashi/minor_update_5
- Loading branch information
Showing
8 changed files
with
105 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from parallel_wavegan.datasets.audio_mel_dataset import * # NOQA | ||
from parallel_wavegan.datasets.scp_dataset import * # NOQA | ||
from .audio_mel_dataset import * # NOQA | ||
from .scp_dataset import * # NOQA |
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,5 +1,5 @@ | ||
from parallel_wavegan.layers.causal_conv import * # NOQA | ||
from parallel_wavegan.layers.pqmf import * # NOQA | ||
from parallel_wavegan.layers.residual_block import * # NOQA | ||
from parallel_wavegan.layers.residual_stack import * # NOQA | ||
from parallel_wavegan.layers.upsample import * # NOQA | ||
from .causal_conv import * # NOQA | ||
from .pqmf import * # NOQA | ||
from .residual_block import * # NOQA | ||
from .residual_stack import * # NOQA | ||
from .upsample import * # NOQA |
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 +1 @@ | ||
from parallel_wavegan.losses.stft_loss import * # NOQA | ||
from .stft_loss import * # NOQA |
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,2 +1,2 @@ | ||
from parallel_wavegan.models.melgan import * # NOQA | ||
from parallel_wavegan.models.parallel_wavegan import * # NOQA | ||
from .melgan import * # NOQA | ||
from .parallel_wavegan import * # NOQA |
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,2 +1,3 @@ | ||
from torch.optim import * # NOQA | ||
from parallel_wavegan.optimizers.radam import * # NOQA | ||
|
||
from .radam import * # NOQA |
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 +1 @@ | ||
from parallel_wavegan.utils.utils import * # NOQA | ||
from .utils import * # NOQA |
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