I have a machine learning algorithm currently implemented in R, wrapped in python (rpy2). I would like to deploy this inside a web application and I am looking for the right platform to do this, ideally:
- no admin
- free at first, until there is significant traffic
- easy python setup
- able to scale: my application is using large datasets, and it's going to grow
I initially thought that Google App Engine was the place to go, but support for R (renjin) seems complicated (renjin), and I doubt that R calls from python will be easily done.
Another option is to switch to Octave but Octave support seems even more limited among these kind of platforms. Last option is to switch everything to python...
Thanks for the advices.