@@ -24,7 +24,7 @@ crossScalaVersions in ThisBuild := Seq("2.11.11", "2.12.6")
2424
2525organization in ThisBuild := " org.platanios"
2626
27- val tensorFlowVersion = " 1.8.0 "
27+ val tensorFlowVersion = " 1.9.0-rc0 "
2828val circeVersion = " 0.9.1" // Use for working with JSON.
2929
3030autoCompilerPlugins in ThisBuild := true
@@ -160,7 +160,7 @@ lazy val jni = (project in file("./jni"))
160160 target in nativeCompile := target.value / " native" / nativePlatform.value,
161161 target in JniCross := target.value / " native" ,
162162 nativePlatforms in JniCross := Set (LINUX_x86_64 , LINUX_GPU_x86_64 , DARWIN_x86_64 ),
163- tfBinaryVersion in JniCross := " nightly " , // tensorFlowVersion
163+ tfBinaryVersion in JniCross := tensorFlowVersion,
164164 tfLibCompile in JniCross := false ,
165165 tfLibRepository in JniCross := " https://github.com/tensorflow/tensorflow.git" ,
166166 tfLibRepositoryBranch in JniCross := " master" ,
@@ -170,7 +170,7 @@ lazy val jni = (project in file("./jni"))
170170lazy val api = (project in file(" ./api" ))
171171 .dependsOn(jni)
172172 .enablePlugins(ProtobufPlugin )
173- .settings(moduleName := " tensorflow-api" , name := " TensorFlow Scala" )
173+ .settings(moduleName := " tensorflow-api" , name := " TensorFlow Scala - API " )
174174 .settings(commonSettings)
175175 .settings(testSettings)
176176 .settings(publishSettings)
0 commit comments