摘要: pytorch实现单维度线性回归 代码 import torch x_data=torch.Tensor([[1.0],[2.0],[3.0]]) y_data=torch.Tensor([[2.0],[4.0],[6.0]]) class LinearModel(torch.nn.Module): 阅读全文
posted @ 2021-11-05 22:45 清风紫雪 阅读(75) 评论(0) 推荐(0) 编辑