やりたいことは、与えられた文字列の感情(ポジティブ/ネガティブ/ニュートラル)を見つけることだけです。調査中に、スタンフォードNLPに出会いました。しかし、悲しいことにJavaにあります。どのようにPythonで動作させることができますか?
py-corenlp
_ を使用します現時点(2018-10-23)の最新バージョンは3.9.2です。
_wget https://nlp.stanford.edu/software/stanford-corenlp-full-2018-10-05.Zip https://nlp.stanford.edu/software/stanford-english-corenlp-2018-10-05-models.jar
_
_curl https://nlp.stanford.edu/software/stanford-corenlp-full-2018-10-05.Zip -O https://nlp.stanford.edu/software/stanford-english-corenlp-2018-10-05-models.jar -O
_
他のすべてが失敗した場合は、ブラウザを使用してください;-)
_unzip stanford-corenlp-full-2018-10-05.Zip
mv stanford-english-corenlp-2018-10-05-models.jar stanford-corenlp-full-2018-10-05
_
_cd stanford-corenlp-full-2018-10-05
Java -mx5g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -timeout 10000
_
ノート:
timeout
はミリ秒単位で、上記の10秒に設定します。巨大なblobをサーバーに渡す場合は、増やす必要があります。--help
_でリストできます。-mx5g
_は十分な memory を割り当てる必要がありますが、YMMVを使用している場合は、ボックスの能力が不足している場合はオプションを変更する必要があります。_pip install pycorenlp
_
( 公式リスト も参照)。
_from pycorenlp import StanfordCoreNLP
nlp = StanfordCoreNLP('http://localhost:9000')
res = nlp.annotate("I love you. I hate him. You are Nice. He is dumb",
properties={
'annotators': 'sentiment',
'outputFormat': 'json',
'timeout': 1000,
})
for s in res["sentences"]:
print("%d: '%s': %s %s" % (
s["index"],
" ".join([t["Word"] for t in s["tokens"]]),
s["sentimentValue"], s["sentiment"]))
_
そして、あなたは得るでしょう:
_0: 'I love you .': 3 Positive
1: 'I hate him .': 1 Negative
2: 'You are Nice .': 3 Positive
3: 'He is dumb': 1 Negative
_
sentimentValue
を使用して、テキスト全体の感情を推定できます。Neutral
(2)とNegative
(1)の間で、範囲はVeryNegative
(0)からVeryPositive
(4 )非常にまれであるように見えます。kill $(lsof -ti tcp:9000)
を使用して。 _9000
_がデフォルトのポートです。サーバーの起動時に_-port
_オプションを使用して変更できます。timeout
(ミリ秒単位)を増やします。sentiment
は単なるoneアノテーター、 多くの があり、いくつかを要求することができます。コンマ:_'annotators': 'sentiment,lemma'
_。[〜#〜] ps [〜#〜]。 9thの回答を追加したとは信じられませんが、既存の回答はどれも私を助けてくれなかったので(以前の回答は削除され、他の回答はコメントに変換されました)。
最近、スタンフォード大学は新しい Pythonパッケージ をリリースしました。最も重要なNLPタスク用のニューラルネットワーク(NN)ベースのアルゴリズムを実装しています。
Pythonで実装され、NNライブラリとしてPyTorchを使用します。パッケージには 50言語 以上の正確なモデルが含まれています。
インストールするには、PIPを使用できます。
pip install stanfordnlp
基本的なタスクを実行するには、ネイティブPythonインターフェイスと 多くのNLPアルゴリズム :
import stanfordnlp
stanfordnlp.download('en') # This downloads the English models for the neural pipeline
nlp = stanfordnlp.Pipeline() # This sets up a default neural pipeline in English
doc = nlp("Barack Obama was born in Hawaii. He was elected president in 2008.")
doc.sentences[0].print_dependencies()
編集:
これまでのところ、ライブラリはセンチメント分析をサポートしていません質問の。
Textblob
は、Python
で記述された感傷分析に最適なパッケージです。 docs here を使用できます。特定の文のセンチメンタル分析は、単語とそれに対応する感情スコア(センチメント)を調べることで実行されます。で始めることができます
$ pip install -U textblob
$ python -m textblob.download_corpora
最初のpip installコマンドは、-U will upgrade the pip package its latest available version
を渡すため、(virtualenv
)システムにインストールされているtextblobの最新バージョンを提供します。次に、必要なすべてのデータthe corpus
がダウンロードされます。
stanford-corenlpはstanfordcore-nlpをPythonで使用するための優れたラッパーです。
wget http://nlp.stanford.edu/software/stanford-corenlp-full-2018-10-05.Zip
# Simple usage
from stanfordcorenlp import StanfordCoreNLP
nlp = StanfordCoreNLP('/Users/name/stanford-corenlp-full-2018-10-05')
sentence = 'Guangdong University of Foreign Studies is located in Guangzhou.'
print('Tokenize:', nlp.Word_tokenize(sentence))
print('Part of Speech:', nlp.pos_tag(sentence))
print('Named Entities:', nlp.ner(sentence))
print('Constituency Parsing:', nlp.parse(sentence))
print('Dependency Parsing:', nlp.dependency_parse(sentence))
nlp.close() # Do not forget to close! The backend server will consume a lot memory.
TextBlobライブラリを使用することをお勧めします。サンプル実装は次のようになります。
from textblob import TextBlob
def sentiment(message):
# create TextBlob object of passed Tweet text
analysis = TextBlob(message)
# set sentiment
return (analysis.sentiment.polarity)
私は同じ問題に直面しています:@ -roopalgargが指摘したようにPy4j
を使用する stanford_corenlp_py のソリューションかもしれません。
stanford_corenlp_py
このレポジトリは、v。3.5.1の時点でスタンフォードのCoreNLP Pythonパッケージの「センチメント」および「エンティティ」アノテーターを呼び出すためのJavaインターフェースを提供します。 py4jを使用してJVMと対話します。そのため、scripts/runGateway.pyのようなスクリプトを実行するには、最初にJavaクラスをコンパイルして実行し、JVMゲートウェイを作成する必要があります。
この問題には非常に新しい進展があります。
これで、Python内でstanfordnlp
パッケージを使用できます。
>>> import stanfordnlp
>>> stanfordnlp.download('en') # This downloads the English models for the neural pipeline
>>> nlp = stanfordnlp.Pipeline() # This sets up a default neural pipeline in English
>>> doc = nlp("Barack Obama was born in Hawaii. He was elected president in 2008.")
>>> doc.sentences[0].print_dependencies()
私も同様の状況に直面しました。私のプロジェクトのほとんどはPythonであり、感情部分はJavaです。幸いなことに、スタンフォードCoreNLP jarの使用方法は非常に簡単です。
これが私のスクリプトの1つで、jarをダウンロードして実行できます。
import Java.util.List;
import Java.util.Properties;
import edu.stanford.nlp.ling.CoreAnnotations;
import edu.stanford.nlp.neural.rnn.RNNCoreAnnotations;
import edu.stanford.nlp.pipeline.Annotation;
import edu.stanford.nlp.pipeline.StanfordCoreNLP;
import edu.stanford.nlp.sentiment.SentimentCoreAnnotations.SentimentAnnotatedTree;
import edu.stanford.nlp.trees.Tree;
import edu.stanford.nlp.util.ArrayCoreMap;
import edu.stanford.nlp.util.CoreMap;
public class Simple_NLP {
static StanfordCoreNLP pipeline;
public static void init() {
Properties props = new Properties();
props.setProperty("annotators", "tokenize, ssplit, parse, sentiment");
pipeline = new StanfordCoreNLP(props);
}
public static String findSentiment(String Tweet) {
String SentiReturn = "";
String[] SentiClass ={"very negative", "negative", "neutral", "positive", "very positive"};
//Sentiment is an integer, ranging from 0 to 4.
//0 is very negative, 1 negative, 2 neutral, 3 positive and 4 very positive.
int sentiment = 2;
if (Tweet != null && Tweet.length() > 0) {
Annotation annotation = pipeline.process(Tweet);
List<CoreMap> sentences = annotation.get(CoreAnnotations.SentencesAnnotation.class);
if (sentences != null && sentences.size() > 0) {
ArrayCoreMap sentence = (ArrayCoreMap) sentences.get(0);
Tree tree = sentence.get(SentimentAnnotatedTree.class);
sentiment = RNNCoreAnnotations.getPredictedClass(tree);
SentiReturn = SentiClass[sentiment];
}
}
return SentiReturn;
}
}