Pytorch实践—-06.Logistic Regression逻辑斯蒂回归

学习
刘二大人《PyTorch深度学习实践》 B站地址:B站视频 逻辑斯蒂回归虽然叫和回归,但其实是为了解决分类问题
import torch
import torch.nn as nn
import torch.nn.functional as F

x_data = torch.Tensor([[1.0], [2.0], [3.0]])
y_data = torch.Tensor([[0], [0], [1]])

class LogistRegressionModel(nn.Module):
def __init__(self):
super(LogistRegressionModel, self).__init__()
self.linear = nn.Linear(1, 1)

def forward(self, x):
y_pred

Pytorch实践—-06.Logistic Regression逻辑斯蒂回归最先出现在Python成神之路

版权声明:
作者:玉兰
链接:https://www.techfm.club/p/18225.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>