We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在代码中有这样一部分 x = x.permute(0, 3, 1, 2).contiguous() x = self.base(x)
outputs = []
for conv in self.convs: x = conv(x) x = F.gelu(x) outputs.append(x) 这里的x在三次卷积中迭代使用了,与论文中有些不符,是不是应该在循环中改变一下命名
The text was updated successfully, but these errors were encountered:
@Yu-Chunmiao 我也觉得有问题, 论文中x是被并行卷积操作后cat在一起, 而这里代码是串行操作
Sorry, something went wrong.
No branches or pull requests
在代码中有这样一部分
x = x.permute(0, 3, 1, 2).contiguous()
x = self.base(x)
for conv in self.convs:
x = conv(x)
x = F.gelu(x)
outputs.append(x)
这里的x在三次卷积中迭代使用了,与论文中有些不符,是不是应该在循环中改变一下命名
The text was updated successfully, but these errors were encountered: