We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73a08a commit e85fbb7Copy full SHA for e85fbb7
network.py
@@ -233,7 +233,7 @@ def forward(self, x):
233
mu = torch.bmm(x, z_) # b * c * k
234
mu = self._l2norm(mu, dim=1)
235
236
- # !!! The moving averaging operation is writtern in main.py, which is significant.
+ # !!! The moving averaging operation is writtern in train.py, which is significant.
237
238
z_t = z.permute(0, 2, 1) # b * k * n
239
x = mu.matmul(z_t) # b * c * n
0 commit comments