Django vs Tensorflow Serving

I have a Tensorflow model that I would like to deploy as a RESTful API. I'm thinking of deploying it either using Django or Tensorflow Serving. I'm very familiar with Django since I've been working with it for a few years but I heard that Tensorflow Serving is also a good choice for deploying Tensorflow models. Which option should I go for? Should I use Django or Tensorflow Serving to deploy my model?

P/S: I'm leaning more towards Django because it has more flexibilities (i.e. I can deploy a Pytorch model on the same server as well) but I would really like to get more opinions on this. Thanks in advance! :)

Back to Top