(f0, mean, std)
| 78 | |
| 79 | |
| 80 | def normalize_cwt_lf0(f0, mean, std): |
| 81 | uv, cont_lf0_lpf = get_cont_lf0(f0) |
| 82 | cont_lf0_norm = (cont_lf0_lpf - mean) / std |
| 83 | Wavelet_lf0, scales = get_lf0_cwt(cont_lf0_norm) |
| 84 | Wavelet_lf0_norm, _, _ = norm_scale(Wavelet_lf0) |
| 85 | |
| 86 | return Wavelet_lf0_norm |
| 87 | |
| 88 | |
| 89 | def get_lf0_cwt_norm(f0s, mean, std): |
nothing calls this directly
no test coverage detected