(no title)
Mernit | 11 months ago
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.
No comments yet.