gpt4 book ai didi

python - 合并数字和文本特征以进行类别分类

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

我正在尝试对产品项目进行分类,以便根据产品名称和基本价格预测它们的类别。

示例(产品名称、价格、类别):

['notebook sony vaio vgn-z770td dockstation', 3000.0, u'MLA54559']

以前我只使用产品标题进行预测任务,但我想包括价格以查看准确性是否有所提高。

我的代码的问题是我无法合并文本/数字功能,我一直在阅读 SO 中的一些问题,这是我的代码摘录:

#extracting features from text
count_vect = CountVectorizer()
X_train_counts = count_vect.fit_transform([e[0] for e in training_set])
tfidf_transformer = TfidfTransformer()
X_train_tfidf = tfidf_transformer.fit_transform(X_train_counts)

#extracting numerical features
X_train_price = np.array([e[1] for e in training_set])

X = sparse.hstack([X_train_tfidf, X_train_price]) #this is where the problem begins

clf = svm.LinearSVC().fit(X, [e[2] for e in training_set])

我尝试将数据类型与 sparse.hstack 合并,但出现以下错误:

ValueError: blocks[0,:] has incompatible row dimensions

我想问题出在 X_train_price(价格列表)上,但我不知道如何格式化它以使稀疏函数成功运行。

这些是两个数组的形状:

>>> X_train_tfidf.shape
(65845, 23136)
>>>X_train_price.shape
(65845,)

最佳答案

在我看来这应该和堆叠数组一样简单。如果scikit-learn遵循我熟悉的约定,那么X_train_tfidf中的每一行都是一个训练数据点,总共有65845个点。所以你只需要做一个 hstack - 正如你所说的那样。

但是,您需要确保尺寸兼容!在 Vanilla numpy 否则你会得到这个错误:

>>> a = numpy.arange(15).reshape(5, 3)
>>> b = numpy.arange(15, 20)
>>> numpy.hstack((a, b))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/System/Library/Frameworks/Python.framework/Versions/2.7/
Extras/lib/python/numpy/core/shape_base.py", line 270, in hstack
return _nx.concatenate(map(atleast_1d,tup),1)
ValueError: arrays must have same number of dimensions

reshape b 使其具有正确的尺寸——注意形状为 (5,) 的一维数组完全不同形状为 (5, 1) 的二维数组。

>>> b
array([15, 16, 17, 18, 19])
>>> b.reshape(5, 1)
array([[15],
[16],
[17],
[18],
[19]])
>>> numpy.hstack((a, b.reshape(5, 1)))
array([[ 0, 1, 2, 15],
[ 3, 4, 5, 16],
[ 6, 7, 8, 17],
[ 9, 10, 11, 18],
[12, 13, 14, 19]])

因此,在您的情况下,您需要形状为 (65845, 1) 的数组,而不是 (65845,)。我可能会遗漏一些东西,因为您使用的是 sparse 数组。尽管如此,原理应该是一样的。根据上面的代码,我不知道你使用的是什么稀疏格式,所以我只选择了一个来测试:

>>> a = scipy.sparse.lil_matrix(numpy.arange(15).reshape(5, 3))
>>> scipy.sparse.hstack((a, b.reshape(5, 1))).toarray()
array([[ 0, 1, 2, 15],
[ 3, 4, 5, 16],
[ 6, 7, 8, 17],
[ 9, 10, 11, 18],
[12, 13, 14, 19]])

关于python - 合并数字和文本特征以进行类别分类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26856095/

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