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 John Bauer
文件下载
文件名 操作
stanford-corenlp-4.2.1.jar 下载
stanford-corenlp-4.2.1.pom 下载
stanford-corenlp-4.2.1-sources.jar 下载
Apache Maven
<dependency>
  <groupId>edu.stanford.nlp</groupId>
  <artifactId>stanford-corenlp</artifactId>
  <version>4.2.1</version>
</dependency>
Gradle Groovy
implementation 'edu.stanford.nlp:stanford-corenlp:4.2.1'
Gradle Kotlin
implementation("edu.stanford.nlp:stanford-corenlp:4.2.1")
Scala SBT
libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % "4.2.1"
Groovy Grape
@Grapes(
  @Grab(group='edu.stanford.nlp', module='stanford-corenlp', version='4.2.1')
)
Apache Ivy
<dependency org="edu.stanford.nlp" name="stanford-corenlp" rev="4.2.1" />
Leiningen
[edu.stanford.nlp/stanford-corenlp "4.2.1"]
Apache Buildr
'edu.stanford.nlp:stanford-corenlp:jar:4.2.1'