11 2024 档案
摘要:数据库权限参考: https://blog.csdn.net/zgscwxd/article/details/131586286
阅读全文
摘要:方式一:手动实现 """ drop out随机丢弃神经元 """ import torch from torch import nn from d2l import torch as d2l import torch import torchvision from torch.utils impor
阅读全文
摘要:""" 模型选择,欠拟合、过拟合 """ import math import numpy as np import torch from d2l import torch as d2l from IPython import display import matplotlib.pyplot as
阅读全文
摘要:方法一: """ 多层感知机简单实现Fashion-MNIST分类,从零开始实现 """ import torch import torchvision from torch.utils import data from torchvision import transforms from d2l
阅读全文