2021年11月3日
摘要: def linear2(): """ 梯度下降的优化方法对波士顿房价进行预测 :return: """ # 1)获取数据 boston = load_boston() print("特征数量:\n", boston.data.shape) # 2)划分数据集 x_train, x_test, y_t 阅读全文
posted @ 2021-11-03 10:14 季昂 阅读(177) 评论(0) 推荐(0) 编辑