1103过拟合欠拟合
作者:互联网
点击查看代码
import math
import numpy as np
import torch
from torch import nn
from d2l import torch as d2l
# 生成数据集
max_degree = 20 # 多项式的最大阶数
n_train, n_test = 100, 100 # 训练和测试数据集大小
true_w = np.zeros(max_degree) # 分配大量的空间
true_w[0:4] = np.array([5, 1.2, -3.4, 5.6])
# 特征从 标签:loss,features,labels,poly,train,1103,拟合,test
来源: https://www.cnblogs.com/g932150283/p/16390630.html