Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Machine Learning (tensorflow / sklearn) in Django?

I have a django form, which is collecting user response. I also have a tensorflow sentences classification model. What is the best/standard way to put these two together. Details:

  1. tensorflow model was trained on the Movie Review data from Rotten Tomatoes.
  2. Everytime a new row is made in my response model , i want the tensorflow code to classify it( + or - ).
  3. Basically I have a django project directory and two .py files for classification. Before going ahead myself , i wanted to know what is the standard way to implement machine learning algorithms to a web app.

It'd be awesome if you could suggest a tutorial or a repo. Thank you !

like image 670
Subrat Avatar asked May 22 '16 12:05

Subrat


People also ask

Can I use TensorFlow in Django?

If you are using tensorflow or theano, you are able to save the model you have built. So first, train the model with your training dataset, then save the model using the library you have chosen. You need to deploy into your django web application only the part of your code that handles the prediction.

Can we use Sklearn in TensorFlow?

Scikit Learn is a new easy-to-use interface for TensorFlow from Google based on the Scikit-learn fit/predict model.

Can I use machine learning in Django?

Django REST Framework is a powerful and flexible toolkit for building Web APIs which can be used to Machine Learning model deployment. With the help of Django REST framework, complex machine learning models can be easily used just by calling an API endpoint.


Video Answer


1 Answers

Asynchronous processing

If you don't need the classification result from the ML code to pass immediately to the user (e.g. as a response to the same POST request that submtted), then you can always queue the classification job to be ran in the background or even a different server with more CPU/memory resources (e.g. with django-background-tasks or Celery)

A queued task would be for example to populate the field UserResponse.class_name (positive, negative) on the database rows that have that field blank (not yet classified)

Real time notification

If the ML code is slow and want to return that result to the user as soon as it is available, you can use the asynchronous approach described above, and pair with the real time notification (e.g. socket.io to the browser (this can be triggered from the queued task)

This becomes necessary if ML execution time is so long that it might time-out the HTTP request in the synchronous approach described below.

Synchronous processing, if ML code is not CPU intensive (fast enough)

If you need that classification result returned immediately, and the ML classification is fast enough *, you can do so within the HTTP request-response cycle (the POST request returns after the ML code is done, synchronously)

*Fast enough here means it wouldn't time-out the HTTP request/response, and the user wouldn't lose patience.

like image 175
bakkal Avatar answered Oct 05 '22 15:10

bakkal