eaplatanios / tensorflow_scala

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

Cross-build for Scala 2.11? #12

Closed MLnick closed 7 years ago

MLnick commented 7 years ago

Would there be interest to allow cross-building for Scala 2.11?

The only issues I had to fix to get it to compile for Scala 2.11 were here and here, where I had to change the form to new VariableGetter() { ... } and implement an override apply method.

MLnick commented 7 years ago

Also the main tensorflow JAR build needs to be adjusted - it always gets packaged as tensorflow rather than with the Scala version suffix.

eaplatanios commented 7 years ago

Thanks a lot for pointing that out! It's now been fixed. :)

MLnick commented 7 years ago

Thanks!