ChrisHarig commited on
Commit
fbf9a44
·
verified ·
1 Parent(s): 6ec9bec

Initialize predictions companion for global-mobility

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Predictions \u2014 Google Community Mobility Reports \u2014 global daily"
3
+ license: other
4
+ tags:
5
+ - epi-eval
6
+ - predictions
7
+ - forecast-evaluation
8
+ - companion-of-global-mobility
9
+ configs:
10
+ - config_name: default
11
+ data_files:
12
+ - split: train
13
+ path: data/*.parquet
14
+ ---
15
+
16
+ # Predictions for Google Community Mobility Reports — global daily
17
+
18
+ Community-submitted forecasts targeting [`EPI-Eval/global-mobility`](https://huggingface.co/datasets/EPI-Eval/global-mobility).
19
+ Each row is one quantile (or point) forecast for one target date — see the
20
+ schema below.
21
+
22
+ This repo accumulates accepted submissions from many forecasters. New
23
+ predictions arrive as community pull requests opened from the [EPI-Eval
24
+ dashboard](https://github.com/ChrisHarig/apart-forecasting-tool); a
25
+ maintainer reviews each PR before merging.
26
+
27
+ ## Schema (v1)
28
+
29
+ | column | type | notes |
30
+ | --- | --- | --- |
31
+ | `target_date` | string (`YYYY-MM-DD`) | The date being forecast |
32
+ | `target_dataset` | string | Always `global-mobility` |
33
+ | `target_column` | string | Truth column being forecast (see below) |
34
+ | `submitter` | string | Forecaster name or HF username |
35
+ | `model_name` | string | Identifier for the model run |
36
+ | `description` | string | Free-form notes on the model |
37
+ | `quantile` | float (nullable) | In `[0, 1]`. `null` = point estimate |
38
+ | `value` | float | Forecast value (in the truth column's units) |
39
+ | `submitted_at` | string (ISO 8601) | UTC submission timestamp |
40
+ | _(pass-through dims)_ | string | Categorical dims from the source CSV |
41
+
42
+ Long format: one row per `(target_date, [dim values…], quantile)`. A
43
+ forecaster providing the median plus 50%/80%/95% intervals emits 7 rows per
44
+ date (one point + 6 quantiles). Multiple submissions from the same forecaster
45
+ land as separate parquet files under `data/`.
46
+
47
+ ## Forecast targets
48
+
49
+ Truth columns from `EPI-Eval/global-mobility` you can forecast:
50
+
51
+ - `retail_and_recreation` (percent change vs. baseline)
52
+ - `grocery_and_pharmacy` (percent change vs. baseline)
53
+ - `parks` (percent change vs. baseline)
54
+ - `transit_stations` (percent change vs. baseline)
55
+ - `workplaces` (percent change vs. baseline)
56
+ - `residential` (percent change vs. baseline)
57
+
58
+ ## Submitting
59
+
60
+ The dashboard at [apart-forecasting-tool](https://github.com/ChrisHarig/apart-forecasting-tool)
61
+ handles the full submission flow: drag-drop a CSV, pick this dataset as the
62
+ "Compare to" target, review your scores against the truth, and click "Submit
63
+ to HuggingFace." The dashboard serializes your CSV into the schema above and
64
+ opens a community PR here.
65
+
66
+ ## Notes
67
+
68
+ - Predictions whose `target_date` falls outside the truth dataset's coverage
69
+ (forecast horizon) are still accepted. Comparison metrics on the dashboard
70
+ compute only on the dates where truth is available.
71
+ - A submission's `submitter` value is its only identity claim — there's no
72
+ signed authentication. Reviewers should sanity-check unfamiliar submitters.
73
+
74
+ _Initialized by `upload_pipeline.core.bootstrap_predictions_repos`._