Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hvy/nlp-evaluator
https://github.com/hvy/nlp-evaluator
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hvy/nlp-evaluator
- Owner: hvy
- Created: 2016-01-25T17:47:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-26T04:46:17.000Z (almost 9 years ago)
- Last Synced: 2024-10-30T06:59:14.392Z (about 2 months ago)
- Language: Java
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stanford CoreNLP POS Tagging Evaluation
## About
This is a small program that evaluates the [Stanford CoreNLP](http://stanfordnlp.github.io/CoreNLP/index.html) POS tagging models. The accuracy and the running time is measured.## Installation
### Prerequisites
* [Java SE 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
* [Apache Maven](https://maven.apache.org) *Tested with Maven 3.3.9*You need to download the POS tagger models to evaluate and prepare the Penn Tree annotated test data to run the evaluator. Please refer to the README files in the resource subdirectories.
### Installation
Run the following commands to clone the repository and install the evaluator in the current working directory.```
git clone https://github.com/hvy/nlp-evaluator.git
cd nlp-evaluator
mvn install
```### Run
Assuming that the installation was successful, run the following commands to start the evaluation.```
mvn exec:java -Dexec.mainClass="Main"
```