lambda-labs-gpu-cloud

Provision and manage Lambda Labs GPU cloud instances for ML training and inference.

Updated Apr 18, 2026
One-click install
npx skills add https://github.com/azaanaliraza/operarius --skill lambda-labs-gpu-cloud-azaanaliraza
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: lambda-labs-gpu-cloud
Source: https://github.com/azaanaliraza/operarius/tree/main/src-tauri/bin/hermes/optional-skills/mlops/lambda-labs
Command: npx skills add https://github.com/azaanaliraza/operarius --skill lambda-labs-gpu-cloud-azaanaliraza

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lambda-cloud-client, and includes references (resource) components.

What problem does it solve? Running large-scale ML training or inference requires dedicated GPU hardware that most teams don't own, and provisioning cloud GPUs with the right drivers, CUDA stack, and storage is error-prone and time-consuming. ## Core Features & Use Cases - GPU Instance Provisioning: Launch on-demand instances (B200, H100, A100, A10, V100) via console, Python API, or curl with SSH access and pre-installed Lambda Stack (PyTorch, CUDA, NCCL). - Persistent Storage & Clusters: Attach persistent filesystems for checkpoints and datasets, and deploy 1-Click Slurm clusters with 16-512 GPUs over InfiniBand for distributed training. - Use Case: Fine-tune a 70B LLM by launching an 8x H100 instance, storing checkpoints on a persistent filesystem, running torchrun across 8 GPUs, and terminating the instance when training completes to control costs. ## Quick Start Launch a single H100 GPU instance on Lambda Labs in the us-west-1 region with my SSH key and show me how to connect to it.

Frequently Asked Questions about lambda-labs-gpu-cloud

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I launch a GPU instance on Lambda Labs?▼

Launch a Lambda Labs GPU instance via the cloud console, the lambda-cloud-client Python API, or curl against the REST API. You must add an SSH key before launching, select a GPU type and region, and wait 3-15 minutes for the instance to become active.

Which Lambda Labs GPU should I choose for LLM fine-tuning?▼

For fine-tuning a 7B model, a single A100 40GB at $1.29/hr is sufficient. For 70B models, use an 8x H100 SXM instance. A10 or A6000 GPUs work well for inference and development workloads.

Lambda Labs vs RunPod vs Vast.ai for GPU cloud?▼

Lambda Labs provides dedicated instances with pre-installed Lambda Stack, persistent filesystems, and 1-Click Slurm clusters. RunPod offers cheaper spot instances and serverless endpoints, while Vast.ai is a marketplace with the lowest prices but less managed infrastructure.

Does Lambda Labs support multi-node distributed training?▼

Yes, Lambda Labs supports multi-node training via torchrun with NCCL across instances in the same region, or through 1-Click Clusters providing 16-512 H100 or B200 GPUs with Slurm and 400 Gb/s InfiniBand interconnect.

Why is my Lambda Labs SSH connection refused?▼

SSH connection refused usually means the instance is still initializing, which takes 3-5 minutes for single-GPU and 10-15 minutes for multi-GPU instances. Verify the instance status is active and that your SSH key was added before launch.

What happens to my data when a Lambda Labs instance is terminated?▼

The root volume is ephemeral, so all data in /home/ubuntu is lost on termination. Attach a persistent filesystem at launch time and store datasets, checkpoints, and outputs under /lambda/nfs/<filesystem_name> to preserve them.