You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pulled out the module and it looks like:
BatchNorm1d(80, eps=2583, momentum=0.05, affine=True, track_running_stats=True)
when I set batchnorm = [True, True, True] and layernorm = [False, False, False] in config.
From the SincNet class.
Aren't the first two arguments supposed to be in a list?
The text was updated successfully, but these errors were encountered:
self.bn.append(nn.BatchNorm1d(N_filt,int((current_input-self.cnn_len_filt[i]+1)/self.cnn_max_pool_len[i]),momentum=0.05))
I pulled out the module and it looks like:
BatchNorm1d(80, eps=2583, momentum=0.05, affine=True, track_running_stats=True)
when I set batchnorm = [True, True, True] and layernorm = [False, False, False] in config.
From the SincNet class.
Aren't the first two arguments supposed to be in a list?
The text was updated successfully, but these errors were encountered: