Download cleartk-opennlp-tools-2.0.0.jar file

Introduction

You can download cleartk-opennlp-tools-2.0.0.jar in this page.

License

The BSD 3-Clause License

Type List

cleartk-opennlp-tools-2.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.cleartk/cleartk-opennlp-tools/pom.properties
META-INF/maven/org.cleartk/cleartk-opennlp-tools/pom.xml
models/en-parser-chunking.bin
models/en-pos-maxent.bin
models/en-sent.bin
models/en-token.bin
org.cleartk.opennlp.tools.ParserAnnotator.class
org.cleartk.opennlp.tools.PosTagger.class
org.cleartk.opennlp.tools.PosTaggerAnnotator.class
org.cleartk.opennlp.tools.SentenceAnnotator.class
org.cleartk.opennlp.tools.Tokenizer.class
org.cleartk.opennlp.tools.parser.CasPosTagger.class
org.cleartk.opennlp.tools.parser.DefaultInputTypesHelper.class
org.cleartk.opennlp.tools.parser.DefaultOutputTypesHelper.class
org.cleartk.opennlp.tools.parser.InputTypesHelper.class
org.cleartk.opennlp.tools.parser.OutputTypesHelper.class
org.cleartk.opennlp.tools.parser.Parser.class
org.cleartk.opennlp.tools.parser.ParserWrapper_ImplBase.class

Pom

cleartk-opennlp-tools-2.0.0.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<artifactId>cleartk-opennlp-tools</artifactId>
	<packaging>jar</packaging>
	<name>ClearTK OpenNLP Tools</name>
	<description>ClearTK wrapper for OpenNLP tools</description>
	<url>http://cleartk.googlecode.com/</url>
	<licenses>
		<license>
			<name>The BSD 3-Clause License</name>
			<url>http://cleartk.googlecode.com/git/cleartk-opennlp-tools/LICENSE</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<developers>
		<developer>
			<id>steven.bethard</id>
			<email>steven.bethard@gmail.com</email>
			<name>Steven Bethard</name>
		</developer>
		<developer>
			<id>philip.ogren</id>
			<email>philip@ogren.info</email>
			<name>Philip Ogren</name>
		</developer>
		<developer>
			<id>lee.becker</id>
			<email>lee.becker@gmail.com</email>
			<name>Lee Becker</name>
		</developer>
	</developers>
	<scm>
        <connection>scm:git:https://code.google.com/p/cleartk/</connection>
        <developerConnection>scm:git:https://code.google.com/p/cleartk/</developerConnection>
        <url>https://code.google.com/p/cleartk/</url>
	  <tag>cleartk-2.0.0</tag>
  </scm>
	<parent>
		<artifactId>cleartk</artifactId>
		<groupId>org.cleartk</groupId>
		<version>2.0.0</version>
		<relativePath>..</relativePath>
	</parent>
	<dependencies>
		<dependency>
			<groupId>org.apache.opennlp</groupId>
			<artifactId>opennlp-maxent</artifactId>
			<version>3.0.3</version>
		</dependency>
		<dependency>
			<groupId>org.apache.opennlp</groupId>
			<artifactId>opennlp-tools</artifactId>
			<version>1.5.3</version>
			<exclusions>
			<!-- only needed for coreference, which we don't wrap yet -->
				<exclusion>
					<groupId>jwnl</groupId>
					<artifactId>jwnl</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.opennlp</groupId>
			<artifactId>opennlp-uima</artifactId>
			<version>1.5.3</version>
		</dependency>
		<dependency>
			<groupId>org.cleartk</groupId>
			<artifactId>cleartk-util</artifactId>
		</dependency>
		<dependency>
			<groupId>org.cleartk</groupId>
			<artifactId>cleartk-type-system</artifactId>
		</dependency>
		<!-- test only -->
		<dependency>
			<groupId>org.cleartk</groupId>
			<artifactId>cleartk-test-util</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<!-- increase max memory for tests since model must be loaded -->
			<plugin>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<argLine>-Xmx512m</argLine>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.cleartk</groupId>
   <artifactId>cleartk-opennlp-tools</artifactId>
   <version>2.0.0</version>
</dependency>

Download

If you think the following cleartk-opennlp-tools-2.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download cleartk-opennlp-tools-2.0.0.jar file




PreviousNext

Related