先导包,pip install torchsummary
然后

from torchsummary import summary
model = FPN()
y = summary(model, (3, 224, 224), device="cpu")
print(y)

torchsummary使用

相关文章:

  • 2021-08-29
  • 2022-01-26
  • 2022-12-23
  • 2021-05-27
  • 2021-04-06
  • 2021-07-06
  • 2021-07-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
  • 2021-07-03
  • 2021-08-23
相关资源
相似解决方案