Experimental Tensorflow bindings for Elixir
Disclaimer: This is pre-alpha software and many parts are not functional. It's highly recommended you do not use this in a production environment.
Steps:
- Set LIBTENSORFLOW_PATH to the location containing libtensorflow.so version 0.12.1. Building tensorflow is not covered here:
$ export LIBTENSORFLOW_PATH=/usr/lib
- Add
tensortastic
to your list of dependencies inmix.exs
:
def deps do
[{:tensortastic, "~> 0.0.3"}]
end
- Run
mix deps.get
- Ensure
tensortastic
is started before your application:
def application do
[applications: [:tensortastic]]
end