nnmnkwii_gallery icon indicating copy to clipboard operation
nnmnkwii_gallery copied to clipboard

BUG: need to fix log-f0 visualization for all notebook

Open r9y9 opened this issue 4 years ago • 0 comments

https://r9y9.github.io/nnmnkwii/latest/nnmnkwii_gallery/notebooks/tts/01-DNN-based%20statistical%20speech%20synthesis%20(en).html

    subplot(4,1,3)
    lf0 = y[:,mgc_start_idx]
    vuv = y[:,vuv_start_idx]
    plot(lf0, linewidth=2, label="Continuous log-f0")
    plot(vuv, linewidth=2, label="Voiced/unvoiced flag")
    legend(prop={"size": 14}, loc="upper right")
    lf0 = y[:,mgc_start_idx]

should be

    lf0 = y[:,lf0_start_idx]

r9y9 avatar Apr 07 '20 14:04 r9y9