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
SE模块可以用Conv2d或者Linear两种方式实现,前者可以少一些view操作。mobilenetv3采用的是Linear,ghostnet使用的是Conv2d,view操作的开销应该不大,但是这两种实现在延时上是有差别的。建议对比这两种模型可以保持相同的实现方式测试延时,避免混入对比变量。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SE模块可以用Conv2d或者Linear两种方式实现,前者可以少一些view操作。mobilenetv3采用的是Linear,ghostnet使用的是Conv2d,view操作的开销应该不大,但是这两种实现在延时上是有差别的。建议对比这两种模型可以保持相同的实现方式测试延时,避免混入对比变量。
The text was updated successfully, but these errors were encountered: