neuralsorcerer commited on
Commit
1e5519d
·
verified ·
1 Parent(s): e714bff

Delete RESEARCH_VALIDATION.md

Browse files
Files changed (1) hide show
  1. RESEARCH_VALIDATION.md +0 -79
RESEARCH_VALIDATION.md DELETED
@@ -1,79 +0,0 @@
1
- # Research validation notes
2
-
3
- This release is a **fully synthetic benchmark**. The validation goal is internal structural, physical and statistical consistency, not proof that the generated distribution is empirically identical to real Kolkata monitoring data.
4
-
5
- ## Why the generator changed
6
-
7
- The earlier 100M draft had two important benchmark weaknesses:
8
-
9
- 1. PM2.5 correlations were almost distance-invariant across synthetic sites, so geographic coordinates did not carry enough predictive structure.
10
- 2. Missingness was all-or-nothing across all variables, unlike monitoring systems where pollutant channels often fail independently.
11
-
12
- The current generator fixes both issues.
13
-
14
- ## Spatial dependence
15
-
16
- The generator uses 24 latent spatial knots with persistent time-varying AR processes. Each site mixes its four nearest knots with Gaussian distance weights. Pollutant families use different latent fields for fine particles, coarse particles, combustion gases and ozone.
17
-
18
- On the final materialized data, a 120-site × 6,000-hour PM2.5 diagnostic gives:
19
-
20
- - distance vs raw pairwise correlation: **r = -0.7125**
21
- - mean raw correlation below 5 km: **0.9546**
22
- - mean raw correlation at 30+ km: **0.9133**
23
- - mean cross-sectionally residualized correlation below 5 km: **0.2610**
24
- - mean residualized correlation at 30+ km: **-0.0570**
25
-
26
- The point is not that these exact coefficients are universal physical truths. The point is that spatial proximity now has measurable statistical meaning rather than being decorative metadata.
27
-
28
- ## Temporal fidelity
29
-
30
- The table is a complete hourly grid, including timestamps at which some channels are unavailable. Final timestamp metrics are:
31
-
32
- - order consistency = 1.0
33
- - timestamp uniqueness = 1.0
34
- - hourly regularity consistency = 1.0
35
- - grid completeness = 1.0
36
-
37
- Station-0 autocorrelations show persistent hourly, diurnal and weekly structure rather than independent row sampling. The validator also records first-difference diagnostics so sudden-step behavior can be inspected directly.
38
-
39
- ## Missingness
40
-
41
- Mean missingness in a 100-site diagnostic, confirmed by the full-table scan, differs by variable. Full-table rates are stored in `validation_report.json`. Typical rates are approximately:
42
-
43
- - temperature: 1.9%
44
- - relative humidity: 2.1%
45
- - wind: 2.4%
46
- - rainfall: 2.5%
47
- - PM2.5: 3.2%
48
- - PM10: 3.8%
49
- - NO2: 5.5%
50
- - CO: 6.5%
51
- - SO2: 7.5%
52
- - O3: 6.0%
53
-
54
- Outages occur in contiguous runs, with a whole-site telemetry component plus variable-specific failures.
55
-
56
- ## Cross-variable logic
57
-
58
- The final station-0 diagnostics include:
59
-
60
- - PM2.5 vs PM10: strong positive correlation, but not identity
61
- - PM2.5 vs wind: negative
62
- - PM2.5 vs rainfall: negative
63
- - NO2 vs O3: negative under the synthetic titration/photochemical mechanism
64
-
65
- PM10 is generated as PM2.5 plus an independently varying coarse component. NO2, CO and SO2 share a combustion-related spatial field but have separate station-level innovations so they are related without being mechanically identical.
66
-
67
- ## Literature alignment
68
-
69
- Three recent research directions directly informed the validation design:
70
-
71
- - **Seq2Synth (arXiv:2607.15606)**: static marginals are insufficient for sequential data; timestamp validity, cross-sectional dynamics, first differences, autocorrelation and trajectory-level structure should be checked directly.
72
- - **DynLMC (arXiv:2604.05064)**: realistic multivariate synthetic data should not rely only on fixed correlations; time-varying and lagged cross-channel dependence matters.
73
- - **AirQualityBench (arXiv:2605.05854)**: air-quality benchmarks benefit from explicit missing-data masks, physical-scale evaluation, graph structure and evidence that spatial dependence decreases with distance.
74
-
75
- The generator incorporates these ideas through dynamic spatial fields, lagged rainfall scavenging, pollutant-specific observation masks, a released k-NN graph and temporal/spatial diagnostics.
76
-
77
- ## Remaining scientific limitation
78
-
79
- No synthetic generator can be declared empirically equivalent to Kolkata observations solely from internal checks. A stronger future validation would compare this benchmark against a clean, legally redistributable real reference set at matched hourly/monthly grain using distributional, spectral, cross-correlation and forecast-transfer metrics. The current release therefore uses the label **literature-informed synthetic benchmark**, not historical reconstruction or digital twin.