現在感情分析ライブラリであるasariを使ったポジネガ分類をやろうとしています。
(参考URL:https://note.com/natto_nebaneba/n/n48ed3daa1745)
しかし、以下のエラー文が出てできません。
Traceback (most recent call last):
File "posinega_pred_v02.py", line 33, in <module>
print(sonar.ping("さすがディオ!おれたちにできない事を平然とやってのけるッ そこにシビれる! あこがれるゥ!"))
File "/Users/kojimakazuya/anaconda3/lib/python3.7/site-packages/asari/api.py", line 27, in ping
vector = self.preprocessor.transform([text])
File "/Users/kojimakazuya/anaconda3/lib/python3.7/site-packages/sklearn/feature_extraction/text.py", line 1680, in transform
X = super().transform(raw_documents)
File "/Users/kojimakazuya/anaconda3/lib/python3.7/site-packages/sklearn/feature_extraction/text.py", line 1112, in transform
_, X = self._count_vocab(raw_documents, fixed_vocab=True)
File "/Users/kojimakazuya/anaconda3/lib/python3.7/site-packages/sklearn/feature_extraction/text.py", line 970, in _count_vocab
for feature in analyze(doc):
File "/Users/kojimakazuya/anaconda3/lib/python3.7/site-packages/sklearn/feature_extraction/text.py", line 352, in <lambda>
tokenize(preprocess(self.decode(doc))), stop_words)
File "/Users/kojimakazuya/anaconda3/lib/python3.7/site-packages/sklearn/feature_extraction/text.py", line 166, in _word_ngrams
n_original_tokens = len(original_tokens)
TypeError: object of type 'generator' has no len()
調べてみても同様のエラーが出たというケースがないようで詰まっております。。。。
python
1 2import db 3import pandas as pd 4import numpy as np 5import pymysql.cursors 6import asari 7from asari.api import Sonar 8 9def get_positive_power(text): 10 info = sonar.ping(text= text) 11 posi_vector = info["classes"][1]["confidence"] 12 return posi_vector 13sonar = Sonar() 14 15print(get_positive_power("さすがディオ!おれたちにできない事を平然とやってのけるッ そこにシビれる! あこがれるゥ!")) 16
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。