Skip to content

Commit e85fbb7

Browse files
authored
Update network.py
1 parent e73a08a commit e85fbb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

network.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def forward(self, x):
233233
mu = torch.bmm(x, z_) # b * c * k
234234
mu = self._l2norm(mu, dim=1)
235235

236-
# !!! The moving averaging operation is writtern in main.py, which is significant.
236+
# !!! The moving averaging operation is writtern in train.py, which is significant.
237237

238238
z_t = z.permute(0, 2, 1) # b * k * n
239239
x = mu.matmul(z_t) # b * c * n

0 commit comments

Comments
 (0)