You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 fileimporttorchargs=torch.load("old_model.conf")
args.use_upsampling_layer=Trueargs.feature_type="world"torch.save(args, "new_model.conf")
The text was updated successfully, but these errors were encountered:
kan-bayashi
changed the title
Changes related to update to Pytorch v0.4
Update information
May 7, 2018
2018/05/01
Due to above update, some parts are changed (see below)
Note that old model file
checkpoint-*.pkl
can be used, but it is necessary to modifymodel.conf
file as follows.The text was updated successfully, but these errors were encountered: