【问题标题】:Combining bag of words and other features in one model using sklearn and pandas使用 sklearn 和 pandas 在一个模型中结合词袋和其他特征
【发布时间】:2015-08-19 15:26:22
【问题描述】:

我正在尝试根据帖子的文本和其他特征(一天中的时间、帖子的长度等)对帖子的得分进行建模

我想知道如何将这些不同类型的功能最好地组合到一个模型中。现在,我有类似以下的内容(从herehere 窃取)。

import pandas as pd
...

def features(p):
    terms = vectorizer(p[0])
    d = {'feature_1': p[1], 'feature_2': p[2]}
    for t in terms:
        d[t] = d.get(t, 0) + 1
    return d

posts = pd.read_csv('path/to/csv')

# Create vectorizer for function to use
vectorizer = CountVectorizer(binary=True, ngram_range=(1, 2)).build_tokenizer()
y = posts["score"].values.astype(np.float32) 
vect = DictVectorizer()

# This is the part I want to fix
temp = zip(list(posts.message), list(posts.feature_1), list(posts.feature_2))
tokenized = map(lambda x: features(x), temp)
X = vect.fit_transform(tokenized)

从 pandas 数据框中提取我想要的所有特征,只是将它们全部压缩在一起,这似乎很愚蠢。有没有更好的方法来完成这一步?

CSV 如下所示:

ID,message,feature_1,feature_2
1,'This is the text',4,7
2,'This is more text',3,2
...

【问题讨论】:

  • 你能展示你的 csv 样本吗?
  • @elyase,我刚刚添加了它的玩具版本。

标签: python pandas machine-learning nlp scikit-learn


【解决方案1】:

你可以用你的地图和 lambda 做任何事情:

tokenized=map(lambda msg, ft1, ft2: features([msg,ft1,ft2]), posts.message,posts.feature_1, posts.feature_2)

这节省了执行临时临时步骤并遍历 3 列。

另一种解决方案是将消息转换为它们的 CountVectorizer 稀疏矩阵,并将该矩阵与来自帖子数据帧的特征值连接起来(这将跳过必须构造一个 dict 并生成一个类似于使用 DictVectorizer 得到的稀疏矩阵):

import scipy as sp
posts = pd.read_csv('post.csv')

# Create vectorizer for function to use
vectorizer = CountVectorizer(binary=True, ngram_range=(1, 2))
y = posts["score"].values.astype(np.float32) 

X = sp.sparse.hstack((vectorizer.fit_transform(posts.message),posts[['feature_1','feature_2']].values),format='csr')
X_columns=vectorizer.get_feature_names()+posts[['feature_1','feature_2']].columns.tolist()


posts
Out[38]: 
   ID              message  feature_1  feature_2  score
0   1   'This is the text'          4          7     10
1   2  'This is more text'          3          2      9
2   3   'More random text'          3          2      9

X_columns
Out[39]: 
[u'is',
 u'is more',
 u'is the',
 u'more',
 u'more random',
 u'more text',
 u'random',
 u'random text',
 u'text',
 u'the',
 u'the text',
 u'this',
 u'this is',
 'feature_1',
 'feature_2']

X.toarray()
Out[40]: 
array([[1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 4, 7],
       [1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 3, 2],
       [0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 3, 2]])

此外,sklearn-pandas 还具有 DataFrameMapper,它也可以满足您的需求:

from sklearn_pandas import DataFrameMapper
mapper = DataFrameMapper([
    (['feature_1', 'feature_2'], None),
    ('message',CountVectorizer(binary=True, ngram_range=(1, 2)))
])
X=mapper.fit_transform(posts)

X
Out[71]: 
array([[4, 7, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1],
       [3, 2, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1],
       [3, 2, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0]])

注意:使用最后一种方法时,X 不是稀疏的。

X_columns=mapper.features[0][0]+mapper.features[1][1].get_feature_names()

X_columns
Out[76]: 
['feature_1',
 'feature_2',
 u'is',
 u'is more',
 u'is the',
 u'more',
 u'more random',
 u'more text',
 u'random',
 u'random text',
 u'text',
 u'the',
 u'the text',
 u'this',
 u'this is']

【讨论】:

  • 感谢@khammel,我把它写成了一个要点gist.github.com/danemacaulay/c8e3194b63570de1cf88f431ade32107
  • 非常感谢。如果我早点看到这一点,我可以避免浪费 4 个小时尝试将 tf-idf 特征的密集矩阵与从 csv 读取的现有特征合并(反复出现 MemoryError)。
  • @khammel 我是否也需要将此功能应用于测试集?还是只通过 X_test 来预测函数?
猜你喜欢
  • 2017-06-17
  • 2015-07-21
  • 2015-12-27
  • 2016-05-17
  • 2016-09-27
  • 2018-05-10
  • 1970-01-01
  • 2013-08-14
  • 1970-01-01
相关资源
最近更新 更多