0

我正在尝试将 Python 2.7 和 CatBoostRegressor 与 Pandas 一起使用,但我得到了

UnicodeEncodeError:“ ascii”编解码器无法对位置 0-4 中的字符进行编码:序数不在范围内 (128)

我使用 unicode 三明治并将 csv 读取为: df = pd.read_csv ('out.csv', index_col = 0, encoding = 'utf8'). 读取数据后,我执行检查:

print df.apply(lambda x: pd.lib.infer_dtype(x.values))

node        integer
name        unicode
region      unicode
price      floating
hour        integer
year        integer
month       integer
day         integer
dtype: object

显然,Catboost 尝试进行编码,但没有成功。如何避免这种情况?

简化代码:

import pandas as pd
from catboost import CatBoostRegressor


lst2 = [100001,100002,100003,100004,100005]
lst3 = [u'Хлеб',u'Молоко',u'Чай',u'Кофеёк',u'Пончики']
lst4 = [100.0,200.1,100.0,3.5,200.0]
lst5 = [876.0,185.1023,101.12698,301.5023,200.0]
lst6 = [1,1,1,1,1]

df = pd.DataFrame({u'node' : lst2, u'name':lst3, u'vol':lst4, u'price':lst5, u'hour':lst6},
                  columns=[u'node', u'name', u'vol', u'price', u'hour'])

train_data = df.iloc[:-2, :]
train_labels = train_data[u'price'].values
train_data = train_data.drop([u'price'], axis = 1)


cat_features = [1]
clf = CatBoostRegressor(iterations=100, learning_rate=0.1, depth=4)
clf.fit(train_data, train_labels, cat_features)
4

1 回答 1

0

这看起来像是 cython 的问题。对您的情况有帮助的是替换unicodebytes,如下所示: lst3 = [b'Хлеб',...

于 2018-09-29T16:22:18.653 回答