Blog

Sign up the for the Coiled Newsletter for monthly updates on Dask + Coiled.

../_images/etl-diagram.png
Production ETL

April 8th, 2024

Run large Python jobs on a schedule on the cloud.

$ coiled run \
   --vm-type p4d.24xlarge \
   --region us-west-2 \
   --container huggingface/transformers-pytorch-gpu \
   python fine_tune.py
ML + GPUs

May 1, 2024

Easy access to GPUs.

../_images/coiled-conceptual-diagram.png
Why Coiled?

January 10, 2024

Coiled makes working with TB-scale cloud data really easy.

@coiled.function(
    region="us-east-1",  # Same region as data
    memory="512 GiB",    # Enough memory for your data
)
def process(filename):
    # Everything inside the function stays the same
    ...
Parallel Serverless Functions

September 7, 2023

Easily adapt your Python code to run in parallel on the cloud.

All posts