Skip to content

Commit 9804aef

Browse files
committed
🔧 Fix bugs 🐛 (#148, #178)
1 parent 58be10b commit 9804aef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow_tts/models/melgan.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,8 @@ def __init__(
376376
discriminator += [
377377
GroupConv1D(
378378
filters=out_chs,
379-
kernel_size=downsample_scale,
380-
strides=downsample_scale * 10 + 1,
379+
kernel_size=downsample_scale * 10 + 1,
380+
strides=downsample_scale,
381381
padding="same",
382382
use_bias=use_bias,
383383
groups=in_chs // 4,

0 commit comments

Comments
 (0)