afhubbard commited on
Commit
75e51f9
·
verified ·
1 Parent(s): f405181

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +30 -13
README.md CHANGED
@@ -24,12 +24,13 @@ configs:
24
  # GPU Price Tracker
25
 
26
  A continuously-updated dataset of **cross-cloud GPU rental pricing**
27
- covering 12+ public cloud providers (AWS, GCP, Azure, Lambda Labs,
28
  RunPod, Vast.ai, DataCrunch, Cudo Compute, TensorDock, Vultr, Oracle,
29
- Nebius, CloudRift). Snapshots are collected twice daily by scraping
30
- provider pricing surfaces via the
31
- [`gpuhunt`](https://github.com/dstackai/gpuhunt) library and published
32
- as Hive-partitioned Parquet files (`prices/dt=YYYY-MM-DD/*.parquet`).
 
33
 
34
  The dataset is intended for:
35
 
@@ -38,8 +39,8 @@ The dataset is intended for:
38
  - **Practitioners** comparing GPU rental costs across providers for
39
  capacity planning, procurement, and ML-training cost estimation.
40
 
41
- A full dashboard view is at [the hosted Streamlit app](https://github.com/alex-hubbard/gpu_price_tracker)
42
- (see the GitHub README for the deploy URL).
43
 
44
  ## Quick start
45
 
@@ -52,7 +53,10 @@ print(ds[0])
52
  # 'instance_type': 'p4d.24xlarge', 'gpu_type': 'A100', 'gpu_count': 8,
53
  # 'gpu_memory_gb': 40, 'vcpus': 96, 'ram_gb': 1152.0,
54
  # 'region': 'us-east-1', 'price_per_hour': 32.7726, 'is_spot': False,
55
- # 'available': True, 'availability_zone': None}
 
 
 
56
  ```
57
 
58
  Or with DuckDB directly (no `datasets` install required):
@@ -70,7 +74,7 @@ FROM read_parquet('hf://datasets/afhubbard/gpu-prices/prices/**/*.parquet',
70
  WHERE timestamp = (SELECT MAX(timestamp) FROM read_parquet(
71
  'hf://datasets/afhubbard/gpu-prices/prices/**/*.parquet',
72
  hive_partitioning = true))
73
- AND gpu_count > 0
74
  GROUP BY gpu_type
75
  ORDER BY avg_price_per_gpu_hour
76
  LIMIT 10
@@ -94,10 +98,21 @@ LIMIT 10
94
  | `is_spot` | bool | Spot/preemptible flag (semantics vary; see methodology) |
95
  | `available` | bool (nullable) | Listed and offerable at scrape time |
96
  | `availability_zone` | string (nullable) | Zone within the region, where applicable |
 
 
 
 
 
97
 
98
  Compute `price_per_gpu_hour = price_per_hour / gpu_count` for fair
99
  cross-SKU comparison.
100
 
 
 
 
 
 
 
101
  ## Collection cadence
102
 
103
  Twice daily (~09:00 and 21:00 UTC) via a GitHub Actions cron. Files
@@ -106,13 +121,15 @@ are append-only — each run produces a new immutable Parquet file under
106
 
107
  ## Limitations (read before modeling)
108
 
109
- - **Region strings are raw** — not canonicalized across providers.
110
- Use a separate lookup if doing cross-cloud regional comparisons.
 
 
111
  - **Spot semantics differ** by provider (AWS auction vs. Vast.ai P2P,
112
  etc.). See the methodology document.
113
  - **No customer telemetry** — the data is supply/listing prices only.
114
- - **CPU/Unknown rows** a non-trivial fraction of upstream rows have
115
- `gpu_count = 0` or `gpu_type = 'Unknown'`. Filter these out for
116
  most analyses.
117
  - **12-hour cadence** — too coarse for intraday auction analyses.
118
 
 
24
  # GPU Price Tracker
25
 
26
  A continuously-updated dataset of **cross-cloud GPU rental pricing**
27
+ covering 13 public cloud providers (AWS, GCP, Azure, Lambda Labs,
28
  RunPod, Vast.ai, DataCrunch, Cudo Compute, TensorDock, Vultr, Oracle,
29
+ Nebius, CloudRift): 3M+ listing observations, 70+ GPU types, collected
30
+ twice daily since January 2026 by scraping provider pricing surfaces via
31
+ the [`gpuhunt`](https://github.com/dstackai/gpuhunt) library and
32
+ published as Hive-partitioned Parquet files
33
+ (`prices/dt=YYYY-MM-DD/*.parquet`).
34
 
35
  The dataset is intended for:
36
 
 
39
  - **Practitioners** comparing GPU rental costs across providers for
40
  capacity planning, procurement, and ML-training cost estimation.
41
 
42
+ Explore it interactively at the hosted dashboard:
43
+ **<https://gpu-price-trends.streamlit.app/>**.
44
 
45
  ## Quick start
46
 
 
53
  # 'instance_type': 'p4d.24xlarge', 'gpu_type': 'A100', 'gpu_count': 8,
54
  # 'gpu_memory_gb': 40, 'vcpus': 96, 'ram_gb': 1152.0,
55
  # 'region': 'us-east-1', 'price_per_hour': 32.7726, 'is_spot': False,
56
+ # 'available': True, 'availability_zone': None, 'quality': 'ok',
57
+ # 'region_canonical': 'us-east-virginia', 'country': 'US',
58
+ # 'region_lat': 38.13, 'region_lon': -78.45,
59
+ # 'region_group': 'North America East'}
60
  ```
61
 
62
  Or with DuckDB directly (no `datasets` install required):
 
74
  WHERE timestamp = (SELECT MAX(timestamp) FROM read_parquet(
75
  'hf://datasets/afhubbard/gpu-prices/prices/**/*.parquet',
76
  hive_partitioning = true))
77
+ AND quality = 'ok'
78
  GROUP BY gpu_type
79
  ORDER BY avg_price_per_gpu_hour
80
  LIMIT 10
 
98
  | `is_spot` | bool | Spot/preemptible flag (semantics vary; see methodology) |
99
  | `available` | bool (nullable) | Listed and offerable at scrape time |
100
  | `availability_zone` | string (nullable) | Zone within the region, where applicable |
101
+ | `quality` | string | `ok`, `cpu_only`, `unknown_gpu`, or `missing_memory` — filter to `'ok'` for most analyses |
102
+ | `region_canonical` | string (nullable) | Canonicalized region name (cross-cloud comparable) |
103
+ | `country` | string (nullable) | ISO country code of the region |
104
+ | `region_lat`, `region_lon` | double (nullable) | Approximate region coordinates |
105
+ | `region_group` | string (nullable) | Coarse geographic bucket (e.g. `North America East`) |
106
 
107
  Compute `price_per_gpu_hour = price_per_hour / gpu_count` for fair
108
  cross-SKU comparison.
109
 
110
+ The `quality` and region columns were added in schema v1.1 (July 2026);
111
+ all earlier snapshot files were upgraded in place, so every file in the
112
+ tree has the same schema. Each Parquet file also embeds provenance
113
+ metadata (`schema_version`, `row_count`, `quality_summary`, and
114
+ `backfilled = true` on upgraded files).
115
+
116
  ## Collection cadence
117
 
118
  Twice daily (~09:00 and 21:00 UTC) via a GitHub Actions cron. Files
 
121
 
122
  ## Limitations (read before modeling)
123
 
124
+ - **Region canonicalization is best-effort** — `region_canonical` and
125
+ friends come from a hand-maintained lookup and are NULL for raw
126
+ regions not yet mapped; fall back with
127
+ `COALESCE(region_canonical, region)`.
128
  - **Spot semantics differ** by provider (AWS auction vs. Vast.ai P2P,
129
  etc.). See the methodology document.
130
  - **No customer telemetry** — the data is supply/listing prices only.
131
+ - **Noisy rows are tagged, not dropped** historical snapshots contain
132
+ `cpu_only` and `unknown_gpu` rows. Filter to `quality = 'ok'` for
133
  most analyses.
134
  - **12-hour cadence** — too coarse for intraday auction analyses.
135