gpt4 book ai didi

Python sklearn kaggle/titanic 教程在最后一个特征尺度上失败

转载 作者:行者123 更新时间:2023-11-30 09:53:03 25 4
gpt4 key购买 nike

我正在学习本教程:http://ahmedbesbes.com/how-to-score-08134-in-titanic-kaggle-challenge.html

一切顺利,直到我到达中间部分的最后一部分:

正如您所看到的,特征以不同的间隔排列。让我们在单位间隔内对它们进行归一化。除了我们提交时需要的 PassengerId 之外的所有内容

In [48]:
>>> def scale_all_features():

>>> global combined

>>> features = list(combined.columns)
>>> features.remove('PassengerId')
>>> combined[features] = combined[features].apply(lambda x: x/x.max(), axis=0)

>>> print 'Features scaled successfully !'

In [49]:
>>> scale_all_features()

功能扩展成功!

尽管在我的 python 脚本中逐字输入:

#Cell 48
GreatDivide.split()
def scale_all_features():

global combined

features = list(combined.columns)
features.remove('PassengerId')
combined[features] = combined[features].apply(lambda x: x/x.max(), axis=0)

print 'Features scaled successfully !'

#Cell 49
GreatDivide.split()
scale_all_features()

它一直给我一个错误:

--------------------------------------------------48--------------------------------------------------
--------------------------------------------------49--------------------------------------------------
Traceback (most recent call last):
File "KaggleTitanic[2-FE]--[01].py", line 350, in <module>
scale_all_features()
File "KaggleTitanic[2-FE]--[01].py", line 332, in scale_all_features
combined[features] = combined[features].apply(lambda x: x/x.max(), axis=0)
File "/usr/local/lib/python2.7/dist-packages/pandas/core/frame.py", line 4061, in apply
return self._apply_standard(f, axis, reduce=reduce)
File "/usr/local/lib/python2.7/dist-packages/pandas/core/frame.py", line 4157, in _apply_standard
results[i] = func(v)
File "KaggleTitanic[2-FE]--[01].py", line 332, in <lambda>
combined[features] = combined[features].apply(lambda x: x/x.max(), axis=0)
File "/usr/local/lib/python2.7/dist-packages/pandas/core/ops.py", line 651, in wrapper
return left._constructor(wrap_results(na_op(lvalues, rvalues)),
File "/usr/local/lib/python2.7/dist-packages/pandas/core/ops.py", line 592, in na_op
result[mask] = op(x[mask], y)
TypeError: ("unsupported operand type(s) for /: 'str' and 'str'", u'occurred at index Ticket')

这里有什么问题吗?前面的 49 个部分都运行没有问题,所以如果我收到错误,它现在就会显示出来,对吗?

最佳答案

您可以通过以下方式帮助确保数学转换仅发生在数字列上。

numeric_cols = combined.columns[combined.dtypes != 'object']
combined.loc[:, numeric_cols] = combined[numeric_cols] / combined[numeric_cols].max()

不需要该 apply 函数。

关于Python sklearn kaggle/titanic 教程在最后一个特征尺度上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41171613/

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