Files
kotlin-fork/samples/tensorflow/README.md
T
Alexander Podkhalyuzin bc941269f0 Fixed samples for the latest changes in Gradle plugin.
- Smaller gradle scripts.
- More structure in sample projects.
- Simplified build/run.
- Added gradle to the rest two samples.
- Almost removed all sh scripts.
- Gradle now works only inside of build directory.
- Fixed READMEs according to the new changes.
2017-06-08 17:21:04 +03:00

1.1 KiB

TensorFlow demo

Small Hello World calculation on the TensorFlow backend, arranging simple operations into a graph and running it on a session. Like other TensorFlow clients (e. g. for Python), this example is built on top of the TensorFlow C API, showing how a TensorFlow client in Kotlin/Native could look like.

Installation

./downloadTensorflow.sh

will install TensorFlow for C into $HOME/.konan/third-party/tensorflow (if not yet done).

To build use ../gradlew build or ./build.sh.

Then run

../gradlew run

Alternatively you can run artifact directly

./build/konan/bin/Tensorflow/Tensorflow.kexe

You may need to specify LD_LIBRARY_PATH or DYLD_LIBRARY_PATH to $HOME/.konan/third-party/tensorflow/lib if the TensorFlow dynamic library cannot be found.