ChrisHarig commited on
Commit
b2b56ff
·
verified ·
1 Parent(s): d4ed3ab

Initialize predictions companion for flusight-forecast-hub

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