摘要: AlexNet包含5个卷积层和3个全连接层 (从下往上看 ,5个卷积层后全连接层) import torch.nn as nn class AlexNet(nn.Module): def __init__(self, num_classes=1000): super(AlexNet, self)._ 阅读全文
posted @ 2022-03-11 18:08 Tomorrow1126 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 一、lstm 这个链接讲lstm,非常详细!https://towardsdatascience.com/illustrated-guide-to-lstms-and-gru-s-a-step-by-step-explanation-44e9eb85bf21 Sigmoid 层输出 0 到 1 之间 阅读全文
posted @ 2022-03-11 15:24 Tomorrow1126 阅读(64) 评论(0) 推荐(0) 编辑