top | item 43470868

(no title)

Mernit | 11 months ago

You should look into beam.cloud (I'm the founder, but it's pretty great)

It lets you quickly run long-running jobs on the cloud by adding a simple decorator to your Python code:

  from beam import function

  # Some long training function
  @function(gpu="A100-80")
  def handler():
    return {}

  if __name__ == "__main__":
    # Runs on the cloud
    handler.remote()
Fully open-source also.

discuss

order

No comments yet.