We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a382a commit 5b27aa1Copy full SHA for 5b27aa1
1 file changed
README.md
@@ -214,7 +214,7 @@ error = (x_hat - x).abs().sum()
214
print(error)
215
```
216
217
-### Mel-spectrogram analysis and synthesis
+### Mel spectrogram analysis and synthesis
218
219
```python
220
import diffsptk
@@ -231,7 +231,7 @@ x, sr = diffsptk.read("assets/data.wav")
231
stft = diffsptk.STFT(frame_length=fl, frame_period=fp, fft_length=n_fft)
232
X = stft(x)
233
234
-# Extract log mel-spectrogram.
+# Extract log-mel spectrogram.
235
fbank = diffsptk.FBANK(
236
fft_length=n_fft,
237
n_channel=n_channel,
0 commit comments