摘要:
AlexNet 本节主要讲了AlexNet的网络结构, 相比于LeNet,它的网络要相对复杂一些,由原来的平均值池化改为了最大值池化,效果提升比较明显 import torch from torch import nn from d2l import torch as d2l # AlexNet的网 阅读全文
摘要:
神经网络 本节主要简单介绍了神经网络的相关知识,并且讲解了如何通过代码进行查看神经网络中的参数。 import torch from torch import nn from torch.nn import functional as F net = nn.Sequential(nn.Linear( 阅读全文