s

stanford-corenlp

Stanford CoreNLP provides a set of natural language analysis tools which can take raw English language text input and give the base forms of words, their parts of speech, whether they are names of companies, people, etc., normalize dates, times, and numeric quantities, mark up the structure of sentences in terms of phrases and word dependencies, and indicate which noun phrases refer to the same entities. It provides the foundational building blocks for higher level text understanding applications.
https://nlp.stanford.edu/software/corenlp.html
GNU General Public License Version 3
Christopher Manning Jason Bolton
Files download
File Operation
stanford-corenlp-3.9.1.jar download
stanford-corenlp-3.9.1.pom download
stanford-corenlp-3.9.1-sources.jar download
Apache Maven
<dependency>
  <groupId>edu.stanford.nlp</groupId>
  <artifactId>stanford-corenlp</artifactId>
  <version>3.9.1</version>
</dependency>
Gradle Groovy
implementation 'edu.stanford.nlp:stanford-corenlp:3.9.1'
Gradle Kotlin
implementation("edu.stanford.nlp:stanford-corenlp:3.9.1")
Scala SBT
libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % "3.9.1"
Groovy Grape
@Grapes(
  @Grab(group='edu.stanford.nlp', module='stanford-corenlp', version='3.9.1')
)
Apache Ivy
<dependency org="edu.stanford.nlp" name="stanford-corenlp" rev="3.9.1" />
Leiningen
[edu.stanford.nlp/stanford-corenlp "3.9.1"]
Apache Buildr
'edu.stanford.nlp:stanford-corenlp:jar:3.9.1'