摘要: import torch class myResNet(torch.nn.Module): def __init__(self, in_channels=3, num_classes=10): super(myResNet, self).__init__() # 第1层 self.conv0_1 = 阅读全文
posted @ 2024-10-14 15:54 ddzhen 阅读(6) 评论(0) 推荐(0) 编辑