forked from kogecoo/dl4j-examples-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (18 loc) · 901 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name := "deeplearning4j-examples-scala"
version := "1.0"
scalaVersion := "2.10.4"
lazy val root = project.in(file("."))
libraryDependencies ++= Seq(
"commons-io" % "commons-io" % "2.4",
"com.google.guava" % "guava" % "19.0",
"org.deeplearning4j" % "deeplearning4j-core" % "0.4-rc3.8",
"org.deeplearning4j" % "deeplearning4j-nlp" % "0.4-rc3.8",
"org.deeplearning4j" % "deeplearning4j-ui" % "0.4-rc3.8",
"org.jblas" % "jblas" % "1.2.4",
"org.nd4j" % "canova-nd4j-codec" % "0.0.0.14",
"org.nd4j" % "canova-nd4j-image" % "0.0.0.14",
"org.nd4j" % "nd4j-x86" % "0.4-rc3.8"
)
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
resolvers += "Sonatype release Repository" at "http://oss.sonatype.org/service/local/staging/deploy/maven2/"
resolvers += "Local Maven Repository" at "file:///"+Path.userHome.absolutePath+"/.m2/repository/"