Aditya Rachman Putra

This note is about what I learnt from FB Bandung DevC Meetup last Wednesday (2020-01-22), to be specific it is about Amajid Sinar Guntara - Jedi’s talk on using Pytorch from research to deployment. His original slide can be found on Bandung DevC Facebook Group. AS this note is about what I learnt, I may not cover all of his talk and will focus more on what interests me and also serve as my cue on what I want to learn next.

For a bit of background, Jedi is an AI Engineer at Nodeflux which uses Pytorch for Industrial application (as opposed to research usage) where the constraint that he faced is not only about the accuracy and speed of inference, but also about the hardware limitation. As in some cases he needed to implement the model in edge devices. So in the implementation he has the incentive to be able to optimize the model to also cater to the Hardware limitation.

With that in mind, let’s get into what I learnt during and after the talks. Disclaimer : the following may differ greatly on what was actually in the talk, as I have already mix and blend the information with what I know and what I found online.

1. So there is this thing called Static and Dynamic Graph

In Deep learning / Maachine Learning Frameworks or Libraries there are different ways the libraries/ frameworks handle your model in terms of how they define and run your model. For rough comparison we can refer to the following table:

PropertyStaticDynamic
Execution ModeNon-EagerEager
Debug-ablityHardEasy
SpeedFastSlow
ExampleTensorflowPytorch

In environment where rapid changes and experiments are needed, dynamic graph wins over static graph especially on the ease of debugging and its capability of eager execution (define-by-run) which makes libraries with dynamic graph feels more natural.

After searching around a bit, I came upon this article about the state of ML frameworks in 2019 that mentioned the popularity of Pytorch in research, and one of its reason is for the ease of debugging Pytorch Models. Another interesting point that may worth to be explored is that while dynamic graph is said too be slow, the article mention of anecdotal reports about Pytorch performance being as fast (if not better than) Tensorflow (with static graph)

Another thing that surprised me was the realisation that He used Pytorch in production (I should have realised from the title of the talk, but yeah I just realised it). Because all this time I was under the assumption that when deploying the model in production companies used Tensorflow.

Things to explore : Other companies that use Pytorch in production and how they do them?, are there anyway to translate pytorch model into Tensorflow for deployment?, What makes static graph harder to debug and how worthy is the difficulty?

2. It is not that Easy to Implement Pytorch in Production

In my mind, to deploy pytorch model I could just export the model and put it into cloud server with pytorch installed and run it from there when someone hits certain endpoint as mentioned in one of pytorch tutorial on deployment. It turns out that it is more complicated than I thought. Especially if there are hardware limitation and the overhead introduced by running python on the server (I want to fact check this later). Luckily there are several solution for this problem, they are:

Torch JIT

Basically Torch JIT “compiles” pytorch functions into an Intermediate Representation called TorchScript that can be run in high performance environment such as C++ without Python dependencies, and possibly optimizes it. In implementation there are two ways of doing it, by Tracing and Scripting.

With Tracing we trace how an input go through all the operation performed on all the tensors. As this is ideal on code that only operates on Tensors, list, dictionaries, and tuples of Tensors. Because of the tracing nature, it is not suitable for model with flow control operation with possibly dynamic length (like RNN). For those kind of model it is recommended to use scripting

As for Scripting it can be as simple as adding decorators to a function or using method in Torch JIT to compile a module into its TorchScript version. But because TorchScript itself is only a subset of Python Language, it is a good idea to refer to the documentation to get a better view on the capabilies.

ONNX

In the talk Jedi didn’t delve deep into ONNX (as currently he didn’t actively using it), and basically explains that ONNX may be an important tools to learn (or at least know) for people aspiring to work as data scientist. As this tool (as it name suggests) will help in implementing model from a library onto a wide arrange of devices and applications. (Need Reference)

Things to explore : Limitation of ONNX and current state of using Pytorch with it, what can`t be done using Torch JIT Scripting?, is the overhead of python really that significant ?

3. Some Companies that Need Realtime Application Used Pytorch

Knowing that several companies use Pytorch in production was already a surprise for me, but knowing that even it is used for realtime application added another layer of surprise for me. Jedi mentioned that in Nodeflux several applications required the system to generates inference in realtime, he didn’t specifically mentioned what jobs is inferred, but I got the impression of it as a job that more or less analyzing from a video and locating if there are certain object inside it, wheteher human or car, etc.

And later he mentioned that Tesla also uses Pytorch for their stack and for a second I thought that they also use Pytorch for the inference part (the one that needed real time processing). But as it turns out, in the video You can see that he only mentioned using Pytorch for training and didn’t say anything about using it in inference. Well it’s just my assumption getting ahead of myself.

Things to explore : What Tesla uses for their real time inference?, Any other company that uses Pytorch for real time applications?

Additional Thought

Those are three things that I learned from the last DevC Meetup, but there are several things that I didn’t know how to put into the above three things. Thus I will dump it in the notes bellow:

Aaand, that`s a wrap. If You spot any mistakes or wrong information in my notes please let me know, and if You want to discuss anything with me hit me up at Twitter @BanditelolRP. Thanks for reading.