TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is the best way to run a scientific experiment on a cloud platform?

1 pointsby georgievalmost 9 years ago
My current project is to try and classify proteins by one of their properties and I&#x27;m currently exploring which ML algorithm has the best accuracy on the dataset. I&#x27;m trying out 4-5 classifiers from python&#x27;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&#x27;t want to run them on my computer.<p>My current solution is the following script: http:&#x2F;&#x2F;pastebin.com&#x2F;6X6JsXzH but I&#x27;m wondering if there&#x27;s a better&#x2F;easier way to do this.

1 comment

im_down_w_otpalmost 9 years ago
Seems like a perfectly good way to solve your problem. If you wanted something that was a little more &quot;conventional&quot; to act as your provisioner and coordinator you could use Ansible for what you&#x27;re doing here.<p>You might find that it gives you a helpful model&#x2F;template for setting up a group of machines, ensuring they&#x27;re configured as you need, that your artifacts get deployed to them consistently, and also that your jobs run as you intended and the results can be collected and pushed someplace.<p>I suggest Ansible, rather than other similar tools, entirely because it&#x27;s so simple in scope of responsibility. It&#x27;s a pretty straight forward DSL for orchestrating servers (just pushing commands to them to execute) that has no additional dependencies besides SSH and Python. Since it seems like that&#x27;s all you really need for this task, there&#x27;s not a lot of reason to use bigger frameworks&#x2F;platforms.<p>Or... just keep using your shell scripts. :-)
评论 #12139634 未加载