fastText4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mayabot</groupId>
<artifactId>fastText4j</artifactId>
<version>1.2.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mayabot</groupId>
<artifactId>fastText4j</artifactId>
<version>1.2.3</version>
<name>fastText4j</name>
<description>Java(kotlin) implementation of the Fasebook 's FastText</description>
<url>https://github.com/mayabot/fastText4j</url>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>https://github.com/facebookresearch/fastText/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>jimichan</id>
<name>Jimi chan</name>
<email>jimichan@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:mayabot/fastText4j.git</connection>
<developerConnection>scm:git:git@github.com:mayabot/fastText4j.git</developerConnection>
<url>git@github.com:mayabot/fastText4j.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.2.70</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>hppc</artifactId>
<version>0.7.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.mayabot</groupId>
<artifactId>maya-simple-blas</artifactId>
<version>1.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>