Documentation Index
Fetch the complete documentation index at: https://hubify.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Compute
Hubify Labs gives you on-demand access to high-end GPU compute for running experiments. Powered by RunPod for on-demand GPU pods.Supported Hardware
| GPU | VRAM | Best For | Cost Range |
|---|---|---|---|
| H200 | 141 GB | Large-scale MCMC, foundation model inference, multi-survey sweeps | $$$ |
| H100 | 80 GB | Training runs, medium MCMC chains, anomaly detection | $$ |
| A100 | 80 GB | General GPU compute, smaller models | $ |
| CPU | N/A | Data preprocessing, analysis, lightweight tasks | Free tier |
Pod Lifecycle
Provision
When an experiment needs GPU, Hubify provisions a pod on RunPod. The system selects the optimal GPU type based on the experimentβs memory and compute requirements.
Initialize
The pod boots with your labβs environment: dependencies installed, data mounted, SSH keys configured.
Execute
Your experiment runs on the pod. Logs stream in real time. Intermediate results checkpoint to persistent storage.
Cost Optimization
Hubify automatically optimizes for cost:GPU Inference Playbook
Key rules from the playbook:- Never use serial PIL decoding for batch image processing
- Never use
ProcessPoolExecutorfor GPU-bound work - Never use HuggingFace streaming for production inference
- Always pin memory and prefetch for GPU DataLoaders
Persistent Storage
Each lab gets persistent storage that survives pod teardowns:/workspace/on pods maps to your labβs persistent volume- Experiment outputs are automatically synced back to the lab
- Datasets can be pre-staged in persistent storage for fast access
SSH Access
Every running pod is accessible via SSH for debugging:Idle Pod Detection
An idle GPU is a violation. Hubify monitors pod utilization and alerts you when a pod is sitting idle. The system will suggest the next experiment to deploy on an idle pod.
- Alerts you that the pod is idle
- Suggests experiments from the queue that could use this pod
- Auto-deploys the next experiment if you have auto-schedule enabled
CLI
AI Experiment Runner
When no GPU pod is running, Hubify can execute experiments via the AI runner mode β Claude generates a plausible scientific result from the experiment hypothesis and metric, completing the experiment without GPU costs. Toggle viaEXPERIMENT_RUNNER_MODE in the orchestrator environment. Useful for development and dry runs.