Skip to content

Commit

Permalink
fix a bug thanks to @eonglints
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Nov 15, 2022
1 parent 5f96496 commit 2725ae8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion audiolm_pytorch/audiolm_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(
chan_out = min(curr_channels * 4, chan_max)

self.conv_layers.append(nn.Sequential(
nn.Conv1d(curr_channels, chan_out, 8, stride = 4, padding = 4),
nn.Conv1d(curr_channels, chan_out, 8, stride = 4, padding = 4, groups = groups),
leaky_relu()
))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'audiolm-pytorch',
packages = find_packages(exclude=[]),
version = '0.0.19',
version = '0.0.20',
license='MIT',
description = 'AudioLM - Language Modeling Approach to Audio Generation from Google Research - Pytorch',
author = 'Phil Wang',
Expand Down

0 comments on commit 2725ae8

Please sign in to comment.