Skip to content

Commit ae49958

Browse files
authored
Merge pull request speechbrain#953 from alumae/epaca_classifier_ff_fix
Small bug fix in ECAPA-TDNN classifier
2 parents bb051f7 + 57c7bf8 commit ae49958

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

speechbrain/lobes/models/ECAPA_TDNN.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ def __init__(
523523
for block_index in range(lin_blocks):
524524
self.blocks.extend(
525525
[
526-
_BatchNorm1d(input_size),
526+
_BatchNorm1d(input_size=input_size),
527527
Linear(input_size=input_size, n_neurons=lin_neurons),
528528
]
529529
)

0 commit comments

Comments
 (0)