Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update information #34

Open
kan-bayashi opened this issue May 2, 2018 · 3 comments
Open

Update information #34

kan-bayashi opened this issue May 2, 2018 · 3 comments

Comments

@kan-bayashi
Copy link
Owner

kan-bayashi commented May 2, 2018

2018/05/01

  • Updated to be compatible with pytorch v0.4
  • Updated to be able to use melspectrogram as auxiliary feature

Due to above update, some parts are changed (see below)

# -------------------- #
# feature path in hdf5 #
# -------------------- #
old -> new
/feat_org -> /world or /melspc
/feat -> no more saving extended featrue (it is replicated when loading)

# ----------------------- #
# statistics path in hdf5 #
# ----------------------- #
old -> new
/mean -> /world/mean or /melspc/mean
/scale -> /world/scale or /melspc/scale

# ----------------------- #
# new options in training #
# ----------------------- #
--feature_type: Auxiliary feature type (world or melspc)
--use_upsampling_layer: Flag to decide whether to use upsampling layer in WaveNet
--upsampling_factor: Changed to be alway needed because feature extension is performed in loading

Note that old model file checkpoint-*.pkl can be used, but it is necessary to modify model.conf file as follows.

# how-to-convert to new config file
import torch
args = torch.load("old_model.conf")
args.use_upsampling_layer = True
args.feature_type = "world"
torch.save(args, "new_model.conf")
@kan-bayashi kan-bayashi changed the title Changes related to update to Pytorch v0.4 Update information May 7, 2018
@kan-bayashi
Copy link
Owner Author

2018/05/07

  • Added samples using mel-spectrogram

@kan-bayashi
Copy link
Owner Author

2018/05/11

  • Implemented noise-shaping stft-based mel-cepstrum
  • All of the recipes can use noise shaping technique
  • Added sample of mel-spectrogram with noise shaping

@kan-bayashi
Copy link
Owner Author

kan-bayashi commented Jun 21, 2018

2018/06/21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant