Pytorch 4.3 多层感知机的框架实现
摘要:
多层感知机的框架实现(同Softmax框架实现一毛一样,只是添加一个仿射函数变换(隐藏层)而已) ####step1.引入框架 import torch from torch import nn from d2l import torch as d2l ####step2.设计模型和初始化参数 # 阅读全文
posted @ 2022-01-02 21:00 YangShusen' 阅读(170) 评论(0) 推荐(0) 编辑