Packages

A simple and fast library for running Tensorflow graph models in Elixir. Tensorflex is written around the Tensorflow C API, and allows Elixir developers to leverage Machine Learning and Deep Learning solutions in their projects.

Current section

Files

Jump to
tensorflex lib matrix.ex
Raw

lib/matrix.ex

defmodule Tensorflex.Matrix do
@moduledoc false
defstruct [:nrows, :ncols, :data]
end