Tensorflex: Tensorflow bindings for Elixir

Hello all,

I have been working on my proposed project called Tensorflex as part of Google Summer of Code 2018.. Tensorflex can be used for making predictions from input data on pre-trained Tensorflow models. Training as of now is only supported in the Python API (also C++ at a low-level) but Tensorflex fully supports Inference and can be used for making predictions. Moreover, Tensorflex is being worked on and improved everyday so if there are any particular features anyone has in mind, please feel free to get in touch with me!

As an introduction to using Tensorflex for making predictions from saved models, I have written a blog post: http://www.anshumanc.ml/gsoc/2018/06/14/gsoc/

To follow development, make sure to watch the Github repository here: https://github.com/anshuman23/tensorflex

Cheers!

34 Likes

Great! I was really excited to see this on the Google Summer of Code list of projects, glad to see it come to fruition :slight_smile: You mentioned that training via Tensorflex is not supported yet. Do you have any timeline in mind for this feature to land?

1 Like

Hello Juha! Thanks for the vote of confidence :smile:

So any bindings for Tensorflow can only be written around the C API, which is publicly exposed by Google. Unfortunately, they have not added Training functionality to the C API yet. So we will have to wait and see when they do that and then we can support it in Tensorflex too. Also, most other Tensorflow bindings, such as the ones officially written for Golang, only support Inference.

4 Likes

Iā€™m interested in this project. But Iā€™d be very interested in this as a case study of crafting Elixir bindings to C/C++ things. Thereā€™s plenty of FUD around NIFs and native binding in Erlang/Elixir. Yet this type of thing is ubiquitous in other languages.

Would love to know:

  • How you got started
  • What resources you used
  • Pitfalls
  • Performance
  • Why not wrap all the things?
3 Likes

Hello Jim! I completely agree and Iā€™d love to help out.

To do justice to your question, I will post a detailed answer as a subsequent blog post soon and share the link here.

Cheers!

3 Likes

With respect to C/C++ and NIFs I wonder if this would be a great project to also use Rust. There is the Rustler project that would be a good place to start. The FUD of NIFs is that they potentially blowup the ERTS, and hence fault tolerance.

Rust is able to handle runtime exceptions in a way that can handle such exceptions and provide safety, such that the Rust NIF does not take down the Beam.

2 Likes

But most every library weā€™d be wrapping is C/C++. Hereā€™s where the FUD kicks in. Rust is a new and another thing Iā€™d have to learn. Also, from my limited knowledge of Rust, that while you can call C/C++ you give up safety by doing so.

So while you could write your own Rust lib for the fast parts and use Rustler to help with Elixir bindings, Iā€™m not sure Rust helps in this case.

But I hear about Rust so it would be nice for someone to set the record straight.

3 Likes

Thatā€™s about right, Rust gives safety within rust, so it could make the interface safer, but it wonā€™t do anything for the code running in another language, and if it is a simple wrapping anyway, not much point in using Rust then.

Alternatively you could implement the binding as a C-Node.
There is a package called Nodex.

From Erlangā€™s point of view, the C node is treated like a normal Erlang node.

This way you still have fault tolerance.

You create a useful product, thank you! I recently found a similar project, itā€™s called extensor. Maybe you should join forces.

1 Like

I am really looking forward to this, thanks @anshuman23 for taking this on board.

It would be perfect if one were able to hand off data to an Elixir process -> Tensor flow / flex ML pipeline and then use that trained data. I am particularly interested in the text classification / LSTM / Inference areas of ML for bots. It sounds like this is exactly what you are working on?

Hi @mat_garland_1! Yes Tensorflex supports Inference for any graph created with Tensorflow. Since you mentioned LSTMs, Iā€™m actually working on an example at the moment which will cover RNNs and LSTMs with Tensorflex. It should be up on the Github repository in a day or so. Will also try and write a blog post if it helps :slight_smile:

3 Likes

http://erlang.org/doc/man/slave.html

You could also start a slave node. Execute your NIFs within the slave. With slaves you can also achieve fault tolerance. Youā€™d also avoid the need for C code scaffolding. Assuming you got the NIF from a 3rd party you could avoid maintaining non-elixir code within your codebase.

1 Like

Thank you so much @anshuman23, Iā€™ll certainly check it out! Great work!

Hello!
@mat_garland_1 and others who might be interested, here is the link for the PR which showcases how to use an RNN-LSTM model for sentiment analysis in Tensorflex. I am going to be working on documentation and a blog post for this as well as the Inception model over the next week, but the description for this PR is sufficiently detailed to get a general idea in the meanwhile:

4 Likes

Thank you for creating this library, @anshuman23.

I recently changed my position at work from business developer to data scientist and Iā€™m in the process of digging into a bunch of tools for data wrangling and machine learning.

Python is one of the most common programming languages for data science, due to extensive and robust libraries, such as pandas, NumPy, scikit-learn, TensorFlow, Keras and TensorForce. Those are the primary tools that we use at my workplace at the moment.

Iā€™ll be looking into using Tensorflex as an alternative for deploying machine learning models.

One thing Iā€™m curious about: When you created Tensorflex, did you envision for it to become to Elixir sort of what Keras is to Python? That is, not just for model-serving, but also for training artificial neural networks, etc.ā€”A more generic abstraction layer on top of TensorFlow, CNTK and Theano.

Elixir with itā€™s highly concurrent capabilities, focus on data transformation (e.g. data pipelines) and strong support for meta-programming, lends itself very well to data science and machine learning. It makes me very excited to see that other people have similar thoughts.

There is an incredible amount of potential for Elixir within data science and machine learning.

4 Likes