Re: Error running ML Code on Django

2017-06-22 Thread A.S. Khangura
On Thu, Jun 22, 2017 at 12:27 PM, A.S. Khangura <arsh...@gmail.com> wrote: > Here is traceback: http://dpaste.com/1FPN16G Although I found that one is not able to load any data on runtime using pickle or joblib in Django. Is there any way to load pickle and joblib in Django? -

Error running ML Code on Django

2017-06-22 Thread A.S. Khangura
I am trying to run a function from views.py which carries some Machine-Learning code. While I am loading ML model using Joblib from sklearn It throws error related to tfidf. Here is traceback: http://dpaste.com/1FPN16G -- Thanks Arshpreet Singh Python Developer Web Development/Data

Re: DSasS(Data Science as Service)

2017-06-17 Thread A.S. Khangura
On Sat, Jun 17, 2017 at 1:43 PM, Melvyn Sopacua wrote: > The documentation. The tutorial takes you through all the steps I mentioned > and in addition introduces the admin, forms (connecting user input with > models, views and templates) and unit tests. Yes Went through

Re: DSasS(Data Science as Service)

2017-06-17 Thread A.S. Khangura
On Fri, Jun 16, 2017 at 8:39 PM, Melvyn Sopacua wrote: > You do things in models. So that means all my ML models would be Django-Models? > You gather things in views. I will pass data and get results from functions to show on web-pages. > You render things in

Re: DSasS(Data Science as Service)

2017-06-17 Thread A.S. Khangura
On Fri, Jun 16, 2017 at 8:39 PM, Melvyn Sopacua wrote: > Pretty much. Yes that Explains almost everything we need to know for now. :) Any way you could make me go through Architecture Design of system. Or any kind of open-Source project where I would be able to study