|
|
|
|
|
by Mernit
1037 days ago
|
|
You could easily host your model on https://beam.cloud (I'm a founder). You just add a decorator to your existing Python code: from beam import App, Runtime
app = App(name="gpu-app", runtime=Runtime(gpu="T4"))
@app.rest_api()
def inference():
print("This is running on a GPU")
Then run beam deploy {your-app}.py and boom, it's running on the cloud |
|