├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── c_src ├── Tensorflex.c └── c_api.h ├── config └── config.exs ├── examples ├── iris-example │ ├── data │ │ ├── README.md │ │ ├── checkpoint │ │ ├── graph.data-00000-of-00001 │ │ ├── graph.index │ │ ├── graph.meta │ │ ├── graph.pbtxt │ │ └── graphdef.pb │ ├── dataset.csv │ └── train_model.py ├── keras-example │ ├── mnist_keras.py │ └── mnist_mlp.pb ├── rnn-lstm-example │ ├── create_input_data.py │ ├── freeze.py │ ├── model │ │ └── README.md │ └── other_data │ │ └── README.md └── toy-example │ └── graphdef_create.py ├── lib ├── graph.ex ├── matrix.ex ├── nifs.ex ├── tensor.ex └── tensorflex.ex ├── mix.exs └── test ├── cropped_panda.jpg ├── graphdef_iris.pb ├── graphdef_toy.pb ├── sample1.csv ├── sample2.csv ├── tensorflex_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | priv/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/README.md -------------------------------------------------------------------------------- /c_src/Tensorflex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/c_src/Tensorflex.c -------------------------------------------------------------------------------- /c_src/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/c_src/c_api.h -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/config/config.exs -------------------------------------------------------------------------------- /examples/iris-example/data/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/iris-example/data/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/data/checkpoint -------------------------------------------------------------------------------- /examples/iris-example/data/graph.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/data/graph.data-00000-of-00001 -------------------------------------------------------------------------------- /examples/iris-example/data/graph.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/data/graph.index -------------------------------------------------------------------------------- /examples/iris-example/data/graph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/data/graph.meta -------------------------------------------------------------------------------- /examples/iris-example/data/graph.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/data/graph.pbtxt -------------------------------------------------------------------------------- /examples/iris-example/data/graphdef.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/data/graphdef.pb -------------------------------------------------------------------------------- /examples/iris-example/dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/dataset.csv -------------------------------------------------------------------------------- /examples/iris-example/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/iris-example/train_model.py -------------------------------------------------------------------------------- /examples/keras-example/mnist_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/keras-example/mnist_keras.py -------------------------------------------------------------------------------- /examples/keras-example/mnist_mlp.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/keras-example/mnist_mlp.pb -------------------------------------------------------------------------------- /examples/rnn-lstm-example/create_input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/rnn-lstm-example/create_input_data.py -------------------------------------------------------------------------------- /examples/rnn-lstm-example/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/rnn-lstm-example/freeze.py -------------------------------------------------------------------------------- /examples/rnn-lstm-example/model/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rnn-lstm-example/other_data/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/toy-example/graphdef_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/examples/toy-example/graphdef_create.py -------------------------------------------------------------------------------- /lib/graph.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/lib/graph.ex -------------------------------------------------------------------------------- /lib/matrix.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/lib/matrix.ex -------------------------------------------------------------------------------- /lib/nifs.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/lib/nifs.ex -------------------------------------------------------------------------------- /lib/tensor.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/lib/tensor.ex -------------------------------------------------------------------------------- /lib/tensorflex.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/lib/tensorflex.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/mix.exs -------------------------------------------------------------------------------- /test/cropped_panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/test/cropped_panda.jpg -------------------------------------------------------------------------------- /test/graphdef_iris.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/test/graphdef_iris.pb -------------------------------------------------------------------------------- /test/graphdef_toy.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/test/graphdef_toy.pb -------------------------------------------------------------------------------- /test/sample1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/test/sample1.csv -------------------------------------------------------------------------------- /test/sample2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/test/sample2.csv -------------------------------------------------------------------------------- /test/tensorflex_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuman23/tensorflex/HEAD/test/tensorflex_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------