Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a project where I train a text classifier and I need to create a web app to let the user enter text for classification. Currently all the code is written in Python and I'm using scikit-learn library. I've encountered a problem installing the scikit-learn on heroku, in order for my Python code to run on the server. I don't mind changing everything (Python language, Flask web framework, scikit learning library, heroku web-app hosting services), I just need to get this thing to work :)

Do any one of you in CV community had any experience in making a web-app that uses a learning library online? The web app hosting should be a free one though, as this project is not commercial, and also it would be very nice to have Python behind the scenes.

N.B. The classifiers that should be supported by the library are multiclass svm and naive bayes.

share|improve this question

migrated from stats.stackexchange.com Aug 14 '12 at 20:32

1 Answer

How about trying google app engine? It has python (2.5 and 2.7) and can be free.

share|improve this answer
Can you recommend a machine learning library that will work on Google app engine? – zenpoy Aug 5 '12 at 14:05
Had a little look: google app engine doesn't support egg modules, but does seem to support the use of jars. So go that would mean possibly going for java, in which case, for an ML library you could use weka. Or you could price out a python host. – user728785 Aug 5 '12 at 21:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.