CoreNLP Server
Overview
英文の構文解析を行うには CoreNLP Server (opens in a new tab)をセットアップする必要があります。
Requirement
- CoreNLPはJavaで書かれており、実行するには Java 8+が必要です。
- Linux, macOS, Windowsで動作します。
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
を指定します。