Dataset Viewer
Auto-converted to Parquet Duplicate
sequence_id
stringlengths
12
12
events
listlengths
8
289
20200408_000
[ { "t": 0.08329909683456782, "x": -74.08806178916352, "y": 40.642797978212535 }, { "t": 0.08418647105553834, "x": -74.20998987917295, "y": 40.66404050685574 }, { "t": 0.10327870277557194, "x": -74.21799096398225, "y": 40.7398691846542 }, { "t": 0.1707942880924671, ...
20200408_001
[ { "t": 0.05027929793876429, "x": -74.3953865268952, "y": 40.680037138863455 }, { "t": 0.13976166181974425, "x": -74.11976244777281, "y": 40.67140624104502 }, { "t": 0.1482372568978706, "x": -74.2496421337116, "y": 41.063470516294345 }, { "t": 0.16936172826053764, ...
20200408_002
[ { "t": 0.022987463542325504, "x": -73.93553171894742, "y": 40.38900279793094 }, { "t": 0.08562569605220338, "x": -74.31927273908693, "y": 39.6305780350015 }, { "t": 0.10202833974501435, "x": -74.1556486375713, "y": 40.80103600043605 }, { "t": 0.11750838006745123, ...
20200408_003
[ { "t": 0.004400857703609873, "x": -74.60508586067229, "y": 40.975711785691004 }, { "t": 0.09710397957027916, "x": -74.44131722778647, "y": 41.09194022265717 }, { "t": 0.1011283420118011, "x": -74.57981725688518, "y": 39.80582524662258 }, { "t": 0.11327460099317521...
20200408_004
[ { "t": 0.00487873652134263, "x": -74.61233703150322, "y": 40.49802555909509 }, { "t": 0.07061670214278237, "x": -74.14209168414355, "y": 41.0674156796031 }, { "t": 0.0887166367004455, "x": -74.3971664676767, "y": 40.67486202528368 }, { "t": 0.11114426314243009, ...
20200408_005
[ { "t": 0.024235766824824756, "x": -75.13007437459694, "y": 39.33954877023294 }, { "t": 0.052480771829931494, "x": -74.30020624439203, "y": 40.84617551107609 }, { "t": 0.058508215286751875, "x": -74.29268737008478, "y": 40.824259298026135 }, { "t": 0.11259994927325...
20200408_006
[ { "t": 0.02415453999222561, "x": -74.08872670938673, "y": 40.6501867740723 }, { "t": 0.07332668042920443, "x": -74.03590540101803, "y": 40.98610353577155 }, { "t": 0.1359113462749545, "x": -74.12194554050708, "y": 40.200772575840226 }, { "t": 0.1615247869238181, ...
20200408_007
[ { "t": 0.02322964498581026, "x": -74.2364002698639, "y": 41.00918796645294 }, { "t": 0.04900773219245114, "x": -74.13030578287419, "y": 40.71589385419389 }, { "t": 0.06002048055557929, "x": -74.160313721224, "y": 40.96421206174084 }, { "t": 0.07884215254218174, ...
20200408_008
[ { "t": 0.045908409408153106, "x": -74.11998089927923, "y": 40.68741354993725 }, { "t": 0.11253763907321535, "x": -74.06702858860993, "y": 40.66903493110978 }, { "t": 0.14202717187289493, "x": -74.20911530986236, "y": 40.70897386125381 }, { "t": 0.18004526511469054...
20200408_009
[ { "t": 0.03282976168393348, "x": -74.60648227022655, "y": 40.8118303386439 }, { "t": 0.03823783568501149, "x": -74.8128752465728, "y": 39.74264647513696 }, { "t": 0.04677164019000246, "x": -74.2838618165505, "y": 41.05881935036199 }, { "t": 0.04858025908144481, ...
20200408_010
[ { "t": 0.03371222883334679, "x": -74.65683792538569, "y": 40.56176825686256 }, { "t": 0.06042530956092329, "x": -74.05281652142091, "y": 40.67937864486768 }, { "t": 0.09037018541766562, "x": -74.34413948653606, "y": 41.12694299575893 }, { "t": 0.11791903571957207,...
End of preview. Expand in Data Studio

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

COVID-19 NJ STPP Benchmark Dataset

A benchmark-ready Spatio-Temporal Point Process (STPP) dataset derived from COVID-19 case data for New Jersey, following the official split semantics of the Neural STPP paper.


Dataset Description

Each record represents a sequence of COVID-19 case-report events for a specific reporting unit on a specific date in 2020 (March–July). Events capture the time and location of reported cases.


Source Format

Raw data was stored in a NumPy .npz archive (covid_nj_cases.npz).
Each key is a string of the form YYYYMMDD_XXX, where:

  • YYYYMMDD is the date (e.g. 20200315)
  • XXX is a zero-padded county/region index (e.g. 000049)

Each key maps to a (N, 3) float64 array with columns [t, x, y].


Sequence Unit

One .npz key = one sequence.
No new windowing or segmentation was applied.


Event Schema

Field Type Description
t float Time of event — fractional hours within the day
x float Longitude of reported case location (NJ range ≈ −74.80 to −73.84)
y float Latitude of reported case location (NJ range ≈ 40.34 to 41.09)

Values are exported as-is — no normalization applied.


File Structure

covid-stpp/
├── train.jsonl        # 1450 sequences
├── val.jsonl          # 100 sequences
├── test.jsonl         # 100 sequences
├── splits.json        # {"train": [...], "val": [...], "test": [...]}
├── dataset_meta.json  # Task/schema metadata
└── README.md

JSONL Row Schema

{
  "sequence_id": "20200315_000",
  "events": [
    {"t": 3.42, "x": -74.23, "y": 40.71},
    ...
  ]
}

Example (Python)

import json

with open("train.jsonl") as f:
    for line in f:
        seq = json.loads(line)
        sid    = seq["sequence_id"]
        events = seq["events"]
        t = [e["t"] for e in events]
        x = [e["x"] for e in events]
        y = [e["y"] for e in events]

Source & License

Downloads last month
56