Skip to content

Commit 537764c

Browse files
feat: fewer channels in convout block
1 parent a87fdd6 commit 537764c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

audio_diffusion_pytorch/modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def __init__(
222222
context_mapping_features: Optional[int] = None,
223223
):
224224
super().__init__()
225-
mid_channels = in_channels * 32
225+
mid_channels = in_channels * 8
226226

227227
self.layers = nn.ModuleList(
228228
ResnetBlock1d(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name="audio-diffusion-pytorch",
55
packages=find_packages(exclude=[]),
6-
version="0.0.37",
6+
version="0.0.38",
77
license="MIT",
88
description="Audio Diffusion - PyTorch",
99
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)