MVN

edu.nyu : jet

Maven & Gradle

Jun 22, 2016
8 stars

JET: Java Extractiop Toolkit · Information extraction is the process of identifying specified classes of entities, relations, and events in natural language text – creating structured data from unstructured input. JET, the Java Extraction Toolkit, developed at New York University over the past fifteen years, provides a rich set of tools for research and education in information extraction from English text. These include standard language processing tools such as a tokenizer, sentence segmenter, part-of-speech tagger, name tagger, regular-expression pattern matcher, and dependency parser. Also provided are relation and event extractors based on the specifications of the U.S. Government's ACE [Automatic Content Extraction] program. The program is provided under an Apache 2.0 license.

<dependency>
    <groupId>edu.nyu</groupId>
    <artifactId>jet</artifactId>
    <version>1.9.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of edu.nyu : jet to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.9.0

All Versions

Choose a version of edu.nyu : jet to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.9.x
jet-1.9.0

How to add a dependency to Maven

Add the following edu.nyu : jet maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>edu.nyu</groupId>
    <artifactId>jet</artifactId>
    <version>1.9.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following edu.nyu : jet gradle dependency to your build.gradle file:

implementation 'edu.nyu:jet:1.9.0'

Gradle Kotlin DSL: Add the following edu.nyu : jet gradle kotlin dependency to your build.gradle.kts file:

implementation("edu.nyu:jet:1.9.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following edu.nyu : jet sbt scala dependency to your build.sbt file:

libraryDependencies += "edu.nyu" % "jet" % "1.9.0"

Advertisement