I have locally trained a sklearn classifier and I have to create a simple web application that demonstrate its use. I'm a complete noob on web app development and I don't want to waste hours on creating a web app using a framework that doesn't support the modules I'm using.
- What do you suggest would be a good approach for this task?
- What web app development framework should I use (if any)?
- Do I have to dive into things like
Heroku,djangoetc. or is there more simple and quicker solutions for a simple scientific demo?
My thought was to take the classifier I trained, pickle it and un-pickle it on the server, then to run classify from the server, but I'm not sure where to begin.