Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 712 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 712 Bytes

Tensortastic

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.

Installation

Steps:

  1. Set LIBTENSORFLOW_PATH to the location containing libtensorflow.so version 0.12.1. Building tensorflow is not covered here:
$ export LIBTENSORFLOW_PATH=/usr/lib
  1. Add tensortastic to your list of dependencies in mix.exs:
def deps do
  [{:tensortastic, "~> 0.0.3"}]
end
  1. Run mix deps.get
  2. Ensure tensortastic is started before your application:
def application do
  [applications: [:tensortastic]]
end