--- license: cc-by-4.0 task_categories: - tabular-regression language: - en tags: - gpu - cloud-computing - pricing - market-microstructure - h100 - a100 pretty_name: GPU Price Tracker size_categories: - 1M 0 GROUP BY gpu_type ORDER BY avg_price_per_gpu_hour LIMIT 10 """).show() ``` ## Schema | Column | Type | Description | | --- | --- | --- | | `timestamp` | timestamp (UTC) | When the snapshot was taken | | `provider` | string | Cloud provider id | | `instance_type` | string | Provider SKU | | `gpu_type` | string | Normalized accelerator family (`H100`, `A100`, …) | | `gpu_count` | int32 | GPUs per SKU | | `gpu_memory_gb` | int32 (nullable) | VRAM per GPU | | `vcpus` | int32 | Host vCPUs | | `ram_gb` | float32 | Host RAM in GB | | `region` | string | Provider's raw region (not canonicalized) | | `price_per_hour` | float32 | USD/hr for the full SKU | | `is_spot` | bool | Spot/preemptible flag (semantics vary; see methodology) | | `available` | bool (nullable) | Listed and offerable at scrape time | | `availability_zone` | string (nullable) | Zone within the region, where applicable | Compute `price_per_gpu_hour = price_per_hour / gpu_count` for fair cross-SKU comparison. ## Collection cadence Twice daily (~09:00 and 21:00 UTC) via a GitHub Actions cron. Files are append-only — each run produces a new immutable Parquet file under `prices/dt=/`. ## Limitations (read before modeling) - **Region strings are raw** — not canonicalized across providers. Use a separate lookup if doing cross-cloud regional comparisons. - **Spot semantics differ** by provider (AWS auction vs. Vast.ai P2P, etc.). See the methodology document. - **No customer telemetry** — the data is supply/listing prices only. - **CPU/Unknown rows** — a non-trivial fraction of upstream rows have `gpu_count = 0` or `gpu_type = 'Unknown'`. Filter these out for most analyses. - **12-hour cadence** — too coarse for intraday auction analyses. Full methodology, provider-by-provider notes, and a list of analytical questions the data does and does not support: [methodology.md](https://github.com/alex-hubbard/gpu_price_tracker/blob/main/methodology.md) and [MODELING_GPU_USAGE_TRENDS.md](https://github.com/alex-hubbard/gpu_price_tracker/blob/main/MODELING_GPU_USAGE_TRENDS.md). ## License CC BY 4.0. Suggested citation: ```bibtex @misc{hubbard2026gpuprices, author = {Alex Hubbard}, title = {GPU Price Tracker}, year = {2026}, howpublished = {\url{https://github.com/alex-hubbard/gpu_price_tracker}}, note = {Dataset and software, MIT (code) / CC BY 4.0 (data)} } ``` ## Source code Collection pipeline, dashboard, and migration scripts live at .