Skip to content

Instantly share code, notes, and snippets.

@tmsimont
Created May 9, 2016 19:53
Show Gist options
  • Save tmsimont/12c34e5fbeff2db040d9bdc5182d6f0f to your computer and use it in GitHub Desktop.
Save tmsimont/12c34e5fbeff2db040d9bdc5182d6f0f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>CS5800</groupId>
<artifactId>Word2Vec</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<nd4j.version>0.4-rc3.8</nd4j.version>
<dl4j.version>0.4-rc3.8</dl4j.version>
</properties>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-ui</artifactId>
<version>${dl4j.version}</version>
</dependency>
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-nlp</artifactId>
<version>${dl4j.version}</version>
</dependency>
<dependency>
<groupId>org.nd4j</groupId>
<artifactId>nd4j-x86</artifactId>
<version>${nd4j.version}</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment