CoreNLP Server

Overview

英文の構文解析を行うには CoreNLP Server (opens in a new tab)をセットアップする必要があります。

Requirement

Usage (macOS)

CoreNLPをダウンロードし、サーバを起動します。

$ wget https://nlp.stanford.edu/software/stanford-corenlp-4.5.7.zip
$ unzip stanford-corenlp-4.5.7.zip
$ cd stanford-corenlp-4.5.7
 
# Run the server using all jars in the current directory (e.g., the CoreNLP home directory)
$ java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9000 -timeout 15000

サーバのIPアドレスを確認します。

$ ipconfig getifaddr en0
192.168.1.9

アプリの解析設定画面で、CoreNLP Serverの API URL を指定します。サーバのIPアドレスが 192.168.1.9であれば、http://192.168.1.9:9000を指定します。

© 品川アプリ.RSS