Skip to content

Instantly share code, notes, and snippets.

@ASRagab
Last active August 9, 2016 05:58
Show Gist options
  • Save ASRagab/8739d163236c9ce7c7be30182b3eea3e to your computer and use it in GitHub Desktop.
Save ASRagab/8739d163236c9ce7c7be30182b3eea3e to your computer and use it in GitHub Desktop.
DeepLearning4J
lazy val nd4jVersion = SettingKey[String]("nd4jVersion")
lazy val root = (project in file(".")).settings(
scalaVersion := "2.11.8",
name := "nd4sTest",
version := "0.5.0",
organization := "org.nd4j",
resolvers += "Local Maven Repository" at "file:///" + Path.userHome.absolutePath + "/.m2/repository",
nd4jVersion := "0.5.0",
libraryDependencies ++= Seq(
"com.nativelibs4java" %% "scalaxy-loops" % "0.3.4",
"org.nd4j" %% "nd4s" % nd4jVersion.value,
"org.nd4j" % "nd4j-cuda-7.5" % nd4jVersion.value classifier "" classifier "macosx-x86_64",
"org.deeplearning4j" % "deeplearning4j-core" % "0.5.0",
"org.scalatest" %% "scalatest" % "3.0.0" % Test
),
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-language:implicitConversions", "-language:higherKinds", "-language:postfixOps"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment