pytorch深度学习(6):逻辑斯蒂回归(Logistic Regression)处理分类问题

数据 x_data = [[1.0], [2.0], [3.0]],分类:y_data = [[0], [0], [1]]
代码如下:

import torch

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

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

    def forward(self, x):
        y_pred = torch.sigmoid(self.linear(x))
        return y_pred
model = LogisticRegressionModel()

criterion = torch.nn.BCELoss(reduction='sum')
optimizer = torch.optim.SGD(model.parameters(), lr=0.01)

for epoch in range(1000):
    y_pred = model(x_data)
    loss = criterion(y_pred, y_data)
    print(epoch, loss.item())

    optimizer.zero_grad()
    loss.backward()
    optimizer.step()

打印结果示例如下:
在这里插入图片描述
可以做以下测试:(每周学习时间,(0,10)小时,采集200个点,封装为200行1列的矩阵)

import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 10, 200)
x_t = torch.Tensor(x).view((200, 1))
y_t = model(x_t)
y = y_t.data.numpy()
plt.plot(x, y)
plt.plot([0, 10], [0.5, 0.5], c='r')
plt.xlabel('Hours')
plt.ylabel('Probability of Pass')
plt.grid()
plt.show()

打印出曲线如下:
在这里插入图片描述
可以看出3小时以上为合格

猜你喜欢

转载自blog.csdn.net/shoppingend/article/details/121628082