用python写一段,逻辑回归的代码
时间: 2023-03-13 07:16:37 浏览: 83
好的,以下是一段使用 Python 实现逻辑回归的代码:
```
import numpy as np
from sklearn.datasets import load_breast_cancer
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import train_test_split
# 加载乳腺癌数据集
data = load_breast_cancer()
X = data.data
y = data.target
# 分割数据为训练数据和测试数据
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=0)
# 训练逻辑回归模型
model = LogisticRegression()
model.fit(X_train, y_train)
# 评估模型在测试数据上的性能
accuracy = model.score(X_test, y_test)
print("Accuracy: ", accuracy)
```
这段代码先加载了一个名为 `load_breast_cancer` 的乳腺癌数据集,然后使用 `train_test_split` 函数将数据集分为训练数据和测试数据。接着使用 `LogisticRegression` 函数训练了一个逻辑回归模型,最后评估了该模型在测试数据上的性能。
相关问题
使用python写一段逻辑回归的代码?
import numpy as np
from sklearn import linear_model# 训练数据
x = np.array([[1], [2], [3], [4]])
y = np.array([1, 2, 3, 4])# 创建线性回归模型
model = linear_model.LinearRegression()# 训练模型
model.fit(x, y)# 打印出参数
print('参数:', model.coef_[0])
帮我用python写一段逻辑回归的正则化代码
好的,以下是逻辑回归的正则化代码:
```python
from sklearn.linear_model import LogisticRegression
# 定义逻辑回归模型
lr = LogisticRegression(penalty='l2', C=1.)
# 训练模型
lr.fit(X_train, y_train)
# 预测结果
y_pred = lr.predict(X_test)
```
其中,penalty='l2'表示使用L2正则化,C=1.表示正则化强度为1.。X_train和y_train是训练数据集,X_test是测试数据集。
阅读全文