Caravan

Introduction

Caravan is an Airbnb for GPUs that allows you to:

  • Run any torch code remotely.
  • Rent your idle GPUs in the background for passive income.

Getting Started

To run your torch code, just run:

sh
pip install caravancloud

And add the following lines to the top of your existing torch Python script.

main.py
from caravan import Caravan

caravan_request = Caravan()
caravan_request.gpu_count(1).build()

# the rest of your beautiful torch code!
# ...

On this page