我目前正在学习使用分类turicreate
,并对word count vector
.
使用我在这里找到的示例
#build a word count vector
products['word_count'] = turicreate.text_analytics.count_words(products['review'])
#determine positive or negative review
products['sentiment'] = products['rating'] >= 4
#train the sentiment classifier
sentiment_model = turicreate.logistic_classifier.create(train_data,
target='sentiment',
features=['word_count'],
validation_set=test_data)
我试图了解以下内容:
如果分类是基于'sentiment'(1或0),为什么我们需要'word_count'?
训练情感分类器时“word_count”的作用是什么?
我试图阅读文档,turicreate.text_analytics.count_words
但我认为我不明白。