We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab731b4 commit a37a2adCopy full SHA for a37a2ad
conformer/conformer.py
@@ -225,6 +225,7 @@ def __init__(
225
conv_dropout = 0.
226
):
227
super().__init__()
228
+ self.dim = dim
229
self.layers = nn.ModuleList([])
230
231
for _ in range(depth):
setup.py
@@ -3,7 +3,7 @@
3
setup(
4
name = 'conformer',
5
packages = find_packages(),
6
- version = '0.3.0',
+ version = '0.3.1',
7
license='MIT',
8
description = 'The convolutional module from the Conformer paper',
9
author = 'Phil Wang',
0 commit comments