forked from bitrockteam/spark-deep-learning
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (17 loc) · 835 Bytes
/
build.sbt
File metadata and controls
28 lines (17 loc) · 835 Bytes
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
27
28
name := "spark-deep-learning"
version := "1.0"
scalaVersion := "2.10.4"
// Scala dependencies
libraryDependencies += "org.scala-lang" % "scala-library" % "2.10.4"
libraryDependencies += "org.scala-lang" % "scala-reflect" % "2.10.4"
// Spark dependencies
libraryDependencies += "org.apache.spark" % "spark-mllib_2.10" % "1.3.1"
libraryDependencies += "org.apache.spark" % "spark-core_2.10" % "1.3.1"
// N-Dimensional Arrays for Java dependencies
libraryDependencies += "org.nd4j" % "nd4j-x86" % "0.4-rc3.8"
libraryDependencies += "org.nd4j" % "nd4j-jcublas-7.0" % "0.4-rc3.8"
libraryDependencies += "org.nd4j" % "nd4j-api" % "0.4-rc3.8"
// Deeplearning4j dependencies
libraryDependencies += "org.deeplearning4j" % "dl4j-spark" % "0.4-rc3.8"
// Typesafe dependencies
libraryDependencies += "com.typesafe" % "config" % "1.3.0"