gpt4 book ai didi

python - 使用 sklearn 训练不同的回归器

转载 作者:太空宇宙 更新时间:2023-11-04 01:11:18 25 4
gpt4 key购买 nike

我有一个 Xs 的列表及其输出值Ys .使用以下代码,我能够训练以下回归量:

  • 线性回归
  • 等渗回归器
  • 贝叶斯岭回归
  • 梯度提升回归器

代码:

import numpy as np

from sklearn.linear_model import LinearRegression, BayesianRidge
from sklearn.isotonic import IsotonicRegression
from sklearn import ensemble
from sklearn.svm import SVR
from sklearn.gaussian_process import GaussianProcess


import matplotlib.pyplot as plt
from matplotlib.collections import LineCollection


def get_meteor_scores(infile):
with io.open(infile, 'r') as fin:
meteor_scores = [float(i.strip().split()[-1]) for
i in re.findall(r'Segment [0-9].* score\:.*\n',
fin.read())]
return meteor_scores

def get_sts_scores(infile):
with io.open(infile, 'r') as fin:
sts_scores = [float(i) for i in fin]
return sts_scores

Xs = 'meteor.output.train'
Ys = 'score.train'
# Gets scores from https://raw.githubusercontent.com/alvations/USAAR-SemEval-2015/master/task02-USAAR-SHEFFIELD/x.meteor.train
meteor_scores = np.array(get_meteor_scores(Xs))
# Gets scores from https://raw.githubusercontent.com/alvations/USAAR-SemEval-2015/master/task02-USAAR-SHEFFIELD/score.train
sts_scores = np.array(get_sts_scores(Ys))

x = meteor_scores
y = sts_scores
n = len(sts_scores)

# Linear Regression
lr = LinearRegression()
lr.fit(x[:, np.newaxis], y)

# Baysian Ridge Regression
br = BayesianRidge(compute_score=True)
br.fit(x[:, np.newaxis], y)

# Isotonic Regression
ir = IsotonicRegression()
y_ = ir.fit_transform(x, y)

# Gradient Boosting Regression
params = {'n_estimators': 500, 'max_depth': 4, 'min_samples_split': 1,
'learning_rate': 0.01, 'loss': 'ls'}
gbr = ensemble.GradientBoostingRegressor(**params)
gbr.fit(x[:, np.newaxis], y)

但是我如何为支持向量回归高斯过程决策树回归器训练回归器?


当我尝试以下方法训练支持向量回归器时,出现错误:

from sklearn.svm import SVR
# Support Vector Regressions
svr_rbf = SVR(kernel='rbf', C=1e3, gamma=0.1)
svr_lin = SVR(kernel='linear', C=1e3)
svr_poly = SVR(kernel='poly', C=1e3, degree=2)
y_rbf = svr_rbf.fit(x, y)
y_lin = svr_lin.fit(x, y)
y_poly = svr_poly.fit(x, y)

[输出]:

Traceback (most recent call last):
File "/home/alvas/git/USAAR-SemEval-2015/task02-somethingLiddat/carolling.py", line 47, in <module>
y_rbf = svr_rbf.fit(x, y)
File "/home/alvas/.local/lib/python2.7/site-packages/sklearn/svm/base.py", line 149, in fit
(X.shape[0], y.shape[0]))
ValueError: X and y have incompatible shapes.
X has 1 samples, but y has 10597.

当我尝试 Gaussian Process 时,同样的情况发生了:

from sklearn.gaussian_process import GaussianProcess
# Gaussian Process
gp = GaussianProcess(corr='squared_exponential', theta0=1e-1,
thetaL=1e-3, thetaU=1,
random_start=100)
gp.fit(x, y)

[输出]:

Traceback (most recent call last):
File "/home/alvas/git/USAAR-SemEval-2015/task02-somethingLiddat/carolling.py", line 57, in <module>
gp.fit(x, y)
File "/home/alvas/.local/lib/python2.7/site-packages/sklearn/gaussian_process/gaussian_process.py", line 271, in fit
X, y = check_arrays(X, y)
File "/home/alvas/.local/lib/python2.7/site-packages/sklearn/utils/validation.py", line 254, in check_arrays
% (size, n_samples))
ValueError: Found array with dim 10597. Expected 1

运行 gp.fit(x[:,np.newaxis], y) 时出现此错误:

Traceback (most recent call last):
File "/home/alvas/git/USAAR-SemEval-2015/task02-somethingLiddat/carolling.py", line 95, in <module>
gp.fit(x[:,np.newaxis], y)
File "/home/alvas/.local/lib/python2.7/site-packages/sklearn/gaussian_process/gaussian_process.py", line 301, in fit
raise Exception("Multiple input features cannot have the same"
Exception: Multiple input features cannot have the same target value.

当我尝试 Decision Tree Regressor 时:

from sklearn.tree import DecisionTreeRegressor
# Decision Tree Regression
dtr2 = DecisionTreeRegressor(max_depth=2)
dtr5 = DecisionTreeRegressor(max_depth=2)
dtr2.fit(x,y)
dtr5.fit(x,y)

[输出]:

Traceback (most recent call last):
File "/home/alvas/git/USAAR-SemEval-2015/task02-somethingLiddat/carolling.py", line 47, in <module>
dtr2.fit(x,y)
File "/home/alvas/.local/lib/python2.7/site-packages/sklearn/tree/tree.py", line 140, in fit
n_samples, self.n_features_ = X.shape
ValueError: need more than 1 value to unpack

最佳答案

所有这些回归量都需要多维 x 数组,但您的x 数组是一维 数组。因此,唯一的要求是将 x-array 转换为 2D array 以使这些回归器起作用。这可以使用 x[:, np.newaxis]

来实现

演示:

>>> from sklearn.svm import SVR
>>> # Support Vector Regressions
... svr_rbf = SVR(kernel='rbf', C=1e3, gamma=0.1)
>>> svr_lin = SVR(kernel='linear', C=1e3)
>>> svr_poly = SVR(kernel='poly', C=1e3, degree=2)
>>> x=np.arange(10)
>>> y=np.arange(10)
>>> y_rbf = svr_rbf.fit(x[:,np.newaxis], y)
>>> y_lin = svr_lin.fit(x[:,np.newaxis], y)
>>> svr_poly = svr_poly.fit(x[:,np.newaxis], y)
>>> from sklearn.gaussian_process import GaussianProcess
>>> # Gaussian Process
... gp = GaussianProcess(corr='squared_exponential', theta0=1e-1,
... thetaL=1e-3, thetaU=1,
... random_start=100)
>>> gp.fit(x[:, np.newaxis], y)
GaussianProcess(beta0=None,
corr=<function squared_exponential at 0x7f46f3ebcf50>,
normalize=True, nugget=array(2.220446049250313e-15),
optimizer='fmin_cobyla', random_start=100,
random_state=<mtrand.RandomState object at 0x7f4702d97150>,
regr=<function constant at 0x7f46f3ebc8c0>, storage_mode='full',
theta0=array([[ 0.1]]), thetaL=array([[ 0.001]]),
thetaU=array([[1]]), verbose=False)
>>> from sklearn.tree import DecisionTreeRegressor
>>> # Decision Tree Regression
... dtr2 = DecisionTreeRegressor(max_depth=2)
>>> dtr5 = DecisionTreeRegressor(max_depth=2)
>>> dtr2.fit(x[:,np.newaxis],y)
DecisionTreeRegressor(compute_importances=None, criterion='mse', max_depth=2,
max_features=None, min_density=None, min_samples_leaf=1,
min_samples_split=2, random_state=None, splitter='best')
>>> dtr5.fit(x[:,np.newaxis],y)
DecisionTreeRegressor(compute_importances=None, criterion='mse', max_depth=2,
max_features=None, min_density=None, min_samples_leaf=1,
min_samples_split=2, random_state=None, splitter='best')

GaussianProcess 的预处理:

xu = np.unique(x)  # get unique x values
idx = [np.where(x==x1)[0][0] for x1 in xu] # get corresponding indices for unique x values
gp.fit(xu[:,np.newaxis], y[idx]) # y[idx] selects y values corresponding to unique x values

关于python - 使用 sklearn 训练不同的回归器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27489365/

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