管道拟合仅接受2个参数 [英] pipeline fit takes in 2 parameters only

查看:85
本文介绍了管道拟合仅接受2个参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码.

import pandas as pd 
import numpy as np
import json
import seaborn as sb 
from sklearn.metrics import log_loss
from sklearn import linear_model 
from sklearn.model_selection import StratifiedKFold
from sklearn.svm import SVC
from scipy.stats import zscore
from Transformers import TextTransformer
from sklearn.metrics import confusion_matrix, accuracy_score
from sklearn.model_selection import GridSearchCV
%matplotlib inline
df = pd.read_json('data/train.json', encoding = 'utf-8', dtype = {'description': str})
from sklearn.pipeline import Pipeline, FeatureUnion
a = TextTransformer('description', max_features=50)
b = TextTransformer('features', max_features=10)
pipeline = Pipeline([
    ('feats', FeatureUnion([
        ('description',a ), # can pass in either a pipeline
        ('features',b ) # or a transformer
    ])),
    ('clf', SVC())  # classifier
])
pipeline.fit(df)

我很好奇的是,我试图对目标变量df ['interest_level']进行预测.但是,pipeline.fit只接受2个参数,其中一个是自变量.那我该如何传递目标变量呢?

What i am curious is that i am trying to predict on a target variable df['interest_level']. However, pipeline.fit only takes in 2 parameters which of one would be self. How do i pass in the target variable then?

要注意的另一点是,我尝试了pipeline.fit(df,y = df ['interest_level']),它也引发了相同的异常.我正在使用最新版本的pandas/numpy/sklearn.

Another point to note is that i tried pipeline.fit(df, y=df['interest_level']) and it also throws the same exception. I am using the latest version of pandas / numpy / sklearn.

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-17-0a34f1c24eca> in <module>()
      7     ('clf', SVC())  # classifier
      8 ])
----> 9 pipeline.fit(df,df['interest_level'])
     10 # pg = {'clf__C': [0.1,1]}
     11 # grid = GridSearchCV(pipeline, param_grid= pg ,cv = 2)

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/sklearn/pipeline.pyc in fit(self, X, y, **fit_params)
    266             This estimator
    267         """
--> 268         Xt, fit_params = self._fit(X, y, **fit_params)
    269         if self._final_estimator is not None:
    270             self._final_estimator.fit(Xt, y, **fit_params)

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/sklearn/pipeline.pyc in _fit(self, X, y, **fit_params)
    232                 pass
    233             elif hasattr(transform, "fit_transform"):
--> 234                 Xt = transform.fit_transform(Xt, y, **fit_params_steps[name])
    235             else:
    236                 Xt = transform.fit(Xt, y, **fit_params_steps[name]) \

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/sklearn/base.pyc in fit_transform(self, X, y, **fit_params)
    495         else:
    496             # fit method of arity 2 (supervised transformation)
--> 497             return self.fit(X, y, **fit_params).transform(X)
    498 
    499 

TypeError: fit() takes exactly 2 arguments (3 given)

推荐答案

根据文档,您是对的:

管道:fit()

您还可以查看以下示例:

you can also check out this example:

管道/featureunion示例

您究竟要得到什么错误?我将运行以下内容:

What is the error you're getting exactly? I would run something like the following:

pipeline.fit(df[:, -1], df[:, len(df.columns)]-1)

这篇关于管道拟合仅接受2个参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆