Ask HN: What is the best way to run a scientific experiment on a cloud platform? My current project is to try and classify proteins by one of their properties and I'm currently exploring which ML algorithm has the best accuracy on the dataset. I'm trying out 4-5 classifiers from python's sklearn library and I want to run them in parallel on a cloud platform. The reason for running them in the cloud is that they take 6GB of memory each so I don't want to run them on my computer. My current solution is the following script: http://pastebin.com/6X6JsXzH but I'm wondering if there's a better/easier way to do this. |