gpt4 book ai didi

python-3.x - ValueError : bad input shape (37533, 3) fit() 方法中的梯度 boost 错误

转载 作者:行者123 更新时间:2023-11-30 08:37:14 26 4
gpt4 key购买 nike

我正在使用机器学习分类技术随机森林和梯度 boost :

下面是随机森林的代码,运行良好:

from sklearn.ensemble import RandomForestClassifier
model = RandomForestClassifier(n_estimators=100, min_samples_leaf=10,
random_state=1)
model.fit(x_train, y_train)
print(model.score)
#Accuracy of prediction
y_pred = model.predict(x_test)
#Mean Standard Error
mean_squared_error(y_pred, y_test)
model.score(x_test, y_test)
Out[423]: 0.80038542832276516

现在第二个分类器 Gradient Boosting 给出了一个错误:

from sklearn.ensemble import GradientBoostingClassifier #For Classification
clf = GradientBoostingClassifier(n_estimators=100, learning_rate=1.0,
max_depth=1)
clf.fit(x_train, y_train)

这是给出以下错误的地方:

clf.fit(x_train, y_train)
Traceback (most recent call last):

File "<ipython-input-425-9249b506d83f>", line 1, in <module>
clf.fit(x_train, y_train)

File "C:\Anaconda3\lib\site-packages\sklearn\ensemble\gradient_boosting.py",
line 973, in fit
X, y = check_X_y(X, y, accept_sparse=['csr', 'csc', 'coo'], dtype=DTYPE)

File "C:\Anaconda3\lib\site-packages\sklearn\utils\validation.py", line 526,
in check_X_y
y = column_or_1d(y, warn=True)

File "C:\Anaconda3\lib\site-packages\sklearn\utils\validation.py", line 562,
in column_or_1d
raise ValueError("bad input shape {0}".format(shape))

ValueError: bad input shape (37533, 3)

数据如下:

print(x_train)
No Yes
32912 1.0 0.0
35665 1.0 0.0
32436 1.0 0.0
25885 1.0 0.0
24896 1.0 0.0
51734 1.0 0.0
4235 1.0 0.0
51171 1.0 0.0
33221 0.0 1.0

print(y_train)
Fatal Incident Non-Fatal
32912 0.0 0.0 1.0
35665 0.0 0.0 1.0
32436 0.0 0.0 1.0

你能告诉我 Gradient Boosting fit() 函数有什么问题吗?它给出了错误:ValueError:错误的输入形状(37533, 3)

最佳答案

尝试不对标签进行二值化...

关于python-3.x - ValueError : bad input shape (37533, 3) fit() 方法中的梯度 boost 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41747490/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com