eaplatanios / tensorflow_scala

TensorFlow API for the Scala Programming Language
http://platanios.org/tensorflow_scala/
Apache License 2.0
936 stars 95 forks source link

Can't import org.platanios.tensorflow.data._ #166

Closed MiyazawaKohei closed 5 years ago

MiyazawaKohei commented 5 years ago

I tried the MNIST test of README.md on sbt console, and got failed with the error of the title.

I wrote the build.sbt file such like below, but doesn't it enough? build.sbt: scalaVersion := "2.12.7" libraryDependencies += "org.platanios" %% "tensorflow" % "0.4.0"

DirkToewe commented 5 years ago

@MiyazawaKohei I believe, You are going to have to depend on tensorflow-data separately:

libraryDependencies += "org.platanios" %% "tensorflow-data" % "0.4.0"
MiyazawaKohei commented 5 years ago

Dear Dirk. The problem was settled by your solution. Thank you!