[maven-release-plugin] copy for tag opennlp-1.7.2
[maven-release-plugin] prepare release opennlp-1.7.2
7 files changed
tree: 019e939d1a2d3091fa78b531f70e3912bb752b78
  1. opennlp-brat-annotator/
  2. opennlp-distr/
  3. opennlp-docs/
  4. opennlp-morfologik-addon/
  5. opennlp-tools/
  6. opennlp-uima/
  7. .gitignore
  8. .travis.yml
  9. checkstyle.xml
  10. KEYS
  11. LICENSE
  12. NOTICE
  13. pom.xml
  14. rat-excludes
  15. README.md
README.md

Welcome to Apache OpenNLP!

Build Status Coverage Status Documentation Status GitHub license GitHub forks GitHub stars Twitter Follow

The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text. It supports the most common NLP tasks, such as tokenization, sentence segmentation, part-of-speech tagging, named entity extraction, chunking, parsing, and coreference resolution. These tasks are usually required to build more advanced text processing services. OpenNLP also included maximum entropy and perceptron based machine learning.

The goal of the OpenNLP project will be to create a mature toolkit for the abovementioned tasks. An additional goal is to provide a large number of pre-built models for a variety of languages, as well as the annotated text resources that those models are derived from.

For additional information about OpenNLP, visit the OpenNLP Home Page

Documentation for OpenNLP, including JavaDocs, code usage and command line interface are availablehere

####Using OpenNLP as a Library Running any application that uses OpenNLP will require installing a binary or source version and setting the environment. To compile from source:

  • mvn -DskipTests clean install
  • To run tests do mvn test

To use maven, add the appropriate setting to your pom.xml or build.sbt following the template below.

<dependency>
    <groupId>org.apache.opennlp</groupId>
    <artifactId>opennlp-tools</artifactId>
    <version>${opennlp.version}</version>
</dependency>