【发布时间】:2021-06-25 22:18:57
【问题描述】:
我一直在阅读这篇文章:https://dhruvs.space/posts/understanding-resnets/,以了解 ResNet50 是如何构建的。
我见过有人单独使用 Basic 块来实现 ResNet50。喜欢这里:https://analyticsindiamag.com/hands-on-guide-to-implement-resnet50-in-pytorch-with-tpu/
但是,pytorch 使用 Bottleneck 块实现 ResNet50(与第二个链接不同但与上面的第一个链接相似)https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py 与文章中引用的不同。
你能单独使用 pytorch Basic 块构建 ResNet50 吗?
【问题讨论】:
标签: machine-learning computer-vision pytorch resnet