Skip to content

Commit 0d14a4c

Browse files
authored
Update README.md
1 parent c882179 commit 0d14a4c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The method is described in the article [Dilated Convolution with Learnable Spaci
2727
## What's new
2828

2929
**Oct 19, 2023**:
30-
- A new family of DCLS methods is implemented: Dcls**N**_**M**d (**N** for the convolution dimension and **M** for the number of N learnable position dimensions). We'll start by implementing the Dcls3_1d method. Currently, only the Dcls3_1d method is available. Please see the [Usage](#usage) section for a use case.
30+
- A new family of DCLS methods is implemented: Dcls**N**_**M**d (**N** for the convolution dimension and **M** for the number of N learnable position dimensions). Currently, only the Dcls3_1d method is available. Please see the [Usage](#usage) section for a use case.
3131

3232
**Sep 28, 2023**:
3333
- 🚀 🚀 A new repository for audio classification on AudioSet using DCLS and with state-of-the-art vision models adapted to audio spectrograms. Please checkout the git repo
@@ -195,7 +195,7 @@ m = Dcls3_1d(
195195
padding=(1, 1, 11 // 2),
196196
)
197197
# The last dimension of the input is always where positions are learned
198-
input = input = torch.randn(8, 32, 11, 11, 31)
198+
input = torch.randn(8, 32, 11, 11, 31)
199199
output = m(input)
200200
loss = output.sum()
201201
loss.backward()

0 commit comments

Comments
 (0)