Add public infrastructure layer and dropdown contrast fix
Browse filesUpdates the Nuclear UAP Evidence Surface with the 2026-04-30 release-candidate correlation run, including official NTAD military installations, public NNSA/nuclear-security-enterprise anchors, compressed infrastructure proximity exports, and dropdown/listbox contrast hardening.
- README.md +6 -1
- __pycache__/app.cpython-311.pyc +0 -0
- app.py +128 -0
- data/artifact_manifest.json +180 -54
- data/correlation_artifact_integrity_report.json +58 -40
- data/correlation_dataset_schema.json +78 -3
- data/correlation_source_gaps.csv +1 -1
- data/event_explanatory_features.csv.gz +1 -1
- data/event_public_infrastructure_proximity.csv.gz +3 -0
- data/matched_controls.csv +1 -1
- data/nuclear_sites.csv +1 -1
- data/public_infrastructure_site_summary.csv +3 -0
- data/public_infrastructure_sites.csv +3 -0
- data/site_proximity_summary.csv +1 -1
- data/source_receipts_combined.csv +2 -2
- data/statistical_tests.json +59 -5
- data/summary_metrics.json +115 -7
- run_manifest.json +183 -57
- space_release_manifest.json +183 -57
README.md
CHANGED
|
@@ -26,13 +26,14 @@ The current evidence surface does **not** support a nuclear-specific proximity s
|
|
| 26 |
- Nuclear sites: `57`
|
| 27 |
- Matched non-nuclear controls: `285`
|
| 28 |
- 50-mile nuclear/control mean ratio: `0.851823`
|
| 29 |
-
- One-sided p-value for nuclear greater than controls: `0.
|
| 30 |
|
| 31 |
## What This Is
|
| 32 |
|
| 33 |
- A public-source, reproducible evidence surface.
|
| 34 |
- A reduced export with date/place/shape/geocode/proximity features, hashes, and receipts.
|
| 35 |
- A way to inspect population, airport, and nuclear-site proximity factors without relying on anecdote.
|
|
|
|
| 36 |
|
| 37 |
## What This Is Not
|
| 38 |
|
|
@@ -41,6 +42,7 @@ The current evidence surface does **not** support a nuclear-specific proximity s
|
|
| 41 |
- Not a claim that aircraft explain every report.
|
| 42 |
- Not a claim about classified military or weapons-site activity.
|
| 43 |
- Not exact sighting GPS; report rows are geocoded to public Census place centroids.
|
|
|
|
| 44 |
|
| 45 |
## Additional Findings
|
| 46 |
|
|
@@ -75,6 +77,9 @@ These choices follow public data-visualization guidance from the Office for Nati
|
|
| 75 |
- WRI Global Power Plant Database: https://github.com/wri/global-power-plant-database
|
| 76 |
- NRC public reactor/event datasets: https://www.nrc.gov/
|
| 77 |
- OurAirports public airport CSV: https://ourairports.com/data/
|
|
|
|
|
|
|
|
|
|
| 78 |
|
| 79 |
## Repo
|
| 80 |
|
|
|
|
| 26 |
- Nuclear sites: `57`
|
| 27 |
- Matched non-nuclear controls: `285`
|
| 28 |
- 50-mile nuclear/control mean ratio: `0.851823`
|
| 29 |
+
- One-sided p-value for nuclear greater than controls: `0.85015`
|
| 30 |
|
| 31 |
## What This Is
|
| 32 |
|
| 33 |
- A public-source, reproducible evidence surface.
|
| 34 |
- A reduced export with date/place/shape/geocode/proximity features, hashes, and receipts.
|
| 35 |
- A way to inspect population, airport, and nuclear-site proximity factors without relying on anecdote.
|
| 36 |
+
- A descriptive public-infrastructure layer for official NTAD military installations and public NNSA/nuclear-security-enterprise anchors.
|
| 37 |
|
| 38 |
## What This Is Not
|
| 39 |
|
|
|
|
| 42 |
- Not a claim that aircraft explain every report.
|
| 43 |
- Not a claim about classified military or weapons-site activity.
|
| 44 |
- Not exact sighting GPS; report rows are geocoded to public Census place centroids.
|
| 45 |
+
- Not exact facility-boundary, weapons-storage, operational-status, or causation evidence.
|
| 46 |
|
| 47 |
## Additional Findings
|
| 48 |
|
|
|
|
| 77 |
- WRI Global Power Plant Database: https://github.com/wri/global-power-plant-database
|
| 78 |
- NRC public reactor/event datasets: https://www.nrc.gov/
|
| 79 |
- OurAirports public airport CSV: https://ourairports.com/data/
|
| 80 |
+
- NTAD public military bases layer: https://hub.arcgis.com/datasets/usdot::military-bases/about
|
| 81 |
+
- DOE/NNSA public locations: https://www.energy.gov/nnsa/locations
|
| 82 |
+
- EPA TRI Explorer public facility profile for NNSS coordinate anchor: https://enviro.epa.gov/triexplorer/
|
| 83 |
|
| 84 |
## Repo
|
| 85 |
|
__pycache__/app.cpython-311.pyc
ADDED
|
Binary file (39.7 kB). View file
|
|
|
app.py
CHANGED
|
@@ -30,6 +30,14 @@ def missing_geocodes():
|
|
| 30 |
return pd.read_csv(DATA / "missing_geocode_examples.csv")
|
| 31 |
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
@lru_cache(maxsize=1)
|
| 34 |
def events():
|
| 35 |
return pd.read_csv(DATA / "event_explanatory_features.csv.gz")
|
|
@@ -278,6 +286,52 @@ Primary 50-mile test:
|
|
| 278 |
"""
|
| 279 |
|
| 280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
def filter_places(state, min_events, sort_by):
|
| 282 |
df = places().copy()
|
| 283 |
if state and state != "All":
|
|
@@ -330,6 +384,25 @@ def filter_missing(bucket):
|
|
| 330 |
return df.head(200)
|
| 331 |
|
| 332 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 333 |
def download_files():
|
| 334 |
files = [
|
| 335 |
DATA / "event_explanatory_features.csv.gz",
|
|
@@ -338,6 +411,9 @@ def download_files():
|
|
| 338 |
DATA / "nuclear_sites.csv",
|
| 339 |
DATA / "matched_controls.csv",
|
| 340 |
DATA / "site_proximity_summary.csv",
|
|
|
|
|
|
|
|
|
|
| 341 |
DATA / "statistical_tests.json",
|
| 342 |
DATA / "summary_metrics.json",
|
| 343 |
DATA / "source_receipts_combined.csv",
|
|
@@ -392,6 +468,34 @@ html body [role="link"] {
|
|
| 392 |
.gradio-container select {
|
| 393 |
color: #18232f !important;
|
| 394 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 395 |
.gradio-container .prose,
|
| 396 |
.gradio-container .markdown,
|
| 397 |
.gradio-container [data-testid="markdown"],
|
|
@@ -465,6 +569,17 @@ html body [role="link"] {
|
|
| 465 |
.claim-grid div { background: white; border: 1px solid #d7dde8; border-radius: 6px; padding: 12px; }
|
| 466 |
.claim-grid strong { display: block; color: #18232f; margin-bottom: 5px; }
|
| 467 |
.claim-grid span { color: #40515f; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 468 |
@media (prefers-color-scheme: dark) {
|
| 469 |
.gradio-container {
|
| 470 |
background: #f3f6fa !important;
|
|
@@ -481,6 +596,7 @@ html body [role="link"] {
|
|
| 481 |
|
| 482 |
with gr.Blocks(css=css, title="Nuclear UAP Evidence Surface", theme=gr.themes.Soft()) as demo:
|
| 483 |
gr.HTML(visual_story_html())
|
|
|
|
| 484 |
gr.HTML(score_cards())
|
| 485 |
with gr.Tabs():
|
| 486 |
with gr.Tab("Claim Boundaries"):
|
|
@@ -506,6 +622,18 @@ with gr.Blocks(css=css, title="Nuclear UAP Evidence Surface", theme=gr.themes.So
|
|
| 506 |
bucket = gr.Dropdown(choices=bucket_choices(), value="All", label="Gap bucket")
|
| 507 |
missing_table = gr.Dataframe(value=filter_missing("All"), interactive=False, wrap=True)
|
| 508 |
bucket.change(filter_missing, bucket, missing_table)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 509 |
with gr.Tab("Downloads & Receipts"):
|
| 510 |
gr.Markdown("Download the reduced analytical tables, source receipts, hashes, and manifest. These exports do not include raw witness summaries.")
|
| 511 |
gr.File(value=download_files(), file_count="multiple", label="Dataset files")
|
|
|
|
| 30 |
return pd.read_csv(DATA / "missing_geocode_examples.csv")
|
| 31 |
|
| 32 |
|
| 33 |
+
@lru_cache(maxsize=1)
|
| 34 |
+
def public_infrastructure_sites():
|
| 35 |
+
path = DATA / "public_infrastructure_sites.csv"
|
| 36 |
+
if not path.exists():
|
| 37 |
+
return pd.DataFrame()
|
| 38 |
+
return pd.read_csv(path)
|
| 39 |
+
|
| 40 |
+
|
| 41 |
@lru_cache(maxsize=1)
|
| 42 |
def events():
|
| 43 |
return pd.read_csv(DATA / "event_explanatory_features.csv.gz")
|
|
|
|
| 286 |
"""
|
| 287 |
|
| 288 |
|
| 289 |
+
def public_infrastructure_html():
|
| 290 |
+
layer_stats = metrics().get("public_infrastructure_layers") or {}
|
| 291 |
+
reports = layer_stats.get("layer_reports") or {}
|
| 292 |
+
if not reports:
|
| 293 |
+
return ""
|
| 294 |
+
cards = []
|
| 295 |
+
labels = {
|
| 296 |
+
"public_military_installation": "Public military installations",
|
| 297 |
+
"public_nuclear_security_enterprise": "Public NNSA / nuclear-security-enterprise sites",
|
| 298 |
+
"public_strategic_delivery_installation": "Public strategic-delivery subset",
|
| 299 |
+
}
|
| 300 |
+
for key in [
|
| 301 |
+
"public_military_installation",
|
| 302 |
+
"public_nuclear_security_enterprise",
|
| 303 |
+
"public_strategic_delivery_installation",
|
| 304 |
+
]:
|
| 305 |
+
report = reports.get(key) or {}
|
| 306 |
+
if not report:
|
| 307 |
+
continue
|
| 308 |
+
near_50 = (report.get("near_any_counts") or {}).get("50", 0)
|
| 309 |
+
share_50 = report.get("event_share_within_50_miles", 0)
|
| 310 |
+
cards.append(
|
| 311 |
+
f"""
|
| 312 |
+
<div class="infra-card">
|
| 313 |
+
<div class="infra-label">{html.escape(labels.get(key, key))}</div>
|
| 314 |
+
<div class="infra-sites">{fmt_int(report.get("site_count", 0))} sites</div>
|
| 315 |
+
<div class="infra-detail">{fmt_int(near_50)} public report rows within 50 miles ({pct(share_50)})</div>
|
| 316 |
+
</div>
|
| 317 |
+
"""
|
| 318 |
+
)
|
| 319 |
+
can_claim = "".join(f"<li>{html.escape(str(item))}</li>" for item in layer_stats.get("what_we_can_claim", []))
|
| 320 |
+
cannot_claim = "".join(f"<li>{html.escape(str(item))}</li>" for item in layer_stats.get("what_we_cannot_claim", []))
|
| 321 |
+
return f"""
|
| 322 |
+
<section class="infra-panel">
|
| 323 |
+
<div class="eyebrow">Added public infrastructure layer</div>
|
| 324 |
+
<h2>Military and nuclear-security infrastructure are descriptive context, not a causation test</h2>
|
| 325 |
+
<p>This layer adds official NTAD military installations and public NNSA/nuclear-security-enterprise anchors, including an NNSS public coordinate receipt. It helps people inspect proximity without implying classified activity, weapons storage, or attraction.</p>
|
| 326 |
+
<div class="infra-grid">{''.join(cards)}</div>
|
| 327 |
+
<div class="infra-claim-grid">
|
| 328 |
+
<div><strong>What this layer can say</strong><ul>{can_claim}</ul></div>
|
| 329 |
+
<div><strong>What this layer cannot say</strong><ul>{cannot_claim}</ul></div>
|
| 330 |
+
</div>
|
| 331 |
+
</section>
|
| 332 |
+
"""
|
| 333 |
+
|
| 334 |
+
|
| 335 |
def filter_places(state, min_events, sort_by):
|
| 336 |
df = places().copy()
|
| 337 |
if state and state != "All":
|
|
|
|
| 384 |
return df.head(200)
|
| 385 |
|
| 386 |
|
| 387 |
+
def filter_public_infrastructure(layer):
|
| 388 |
+
df = public_infrastructure_sites().copy()
|
| 389 |
+
if df.empty:
|
| 390 |
+
return df
|
| 391 |
+
if layer and layer != "All":
|
| 392 |
+
df = df[df["site_layer"] == layer]
|
| 393 |
+
cols = [
|
| 394 |
+
"site_name",
|
| 395 |
+
"site_layer",
|
| 396 |
+
"site_kind",
|
| 397 |
+
"state",
|
| 398 |
+
"coordinate_basis",
|
| 399 |
+
"source_name",
|
| 400 |
+
"source_confidence",
|
| 401 |
+
"public_role",
|
| 402 |
+
]
|
| 403 |
+
return df[[col for col in cols if col in df.columns]].head(300)
|
| 404 |
+
|
| 405 |
+
|
| 406 |
def download_files():
|
| 407 |
files = [
|
| 408 |
DATA / "event_explanatory_features.csv.gz",
|
|
|
|
| 411 |
DATA / "nuclear_sites.csv",
|
| 412 |
DATA / "matched_controls.csv",
|
| 413 |
DATA / "site_proximity_summary.csv",
|
| 414 |
+
DATA / "public_infrastructure_sites.csv",
|
| 415 |
+
DATA / "public_infrastructure_site_summary.csv",
|
| 416 |
+
DATA / "event_public_infrastructure_proximity.csv.gz",
|
| 417 |
DATA / "statistical_tests.json",
|
| 418 |
DATA / "summary_metrics.json",
|
| 419 |
DATA / "source_receipts_combined.csv",
|
|
|
|
| 468 |
.gradio-container select {
|
| 469 |
color: #18232f !important;
|
| 470 |
}
|
| 471 |
+
.gradio-container input,
|
| 472 |
+
.gradio-container textarea,
|
| 473 |
+
.gradio-container select,
|
| 474 |
+
.gradio-container [data-testid="dropdown"],
|
| 475 |
+
.gradio-container [data-testid="dropdown"] *,
|
| 476 |
+
.gradio-container .dropdown,
|
| 477 |
+
.gradio-container .dropdown *,
|
| 478 |
+
.gradio-container .select-wrap,
|
| 479 |
+
.gradio-container .select-wrap *,
|
| 480 |
+
.gradio-container .wrap-inner,
|
| 481 |
+
.gradio-container .wrap-inner *,
|
| 482 |
+
.gradio-container .secondary-wrap,
|
| 483 |
+
.gradio-container .secondary-wrap *,
|
| 484 |
+
.gradio-container [role="listbox"],
|
| 485 |
+
.gradio-container [role="listbox"] *,
|
| 486 |
+
.gradio-container [role="option"],
|
| 487 |
+
.gradio-container [role="option"] {
|
| 488 |
+
color: #18232f !important;
|
| 489 |
+
background-color: #ffffff !important;
|
| 490 |
+
opacity: 1 !important;
|
| 491 |
+
}
|
| 492 |
+
.gradio-container [role="option"]:hover,
|
| 493 |
+
.gradio-container [role="option"][aria-selected="true"],
|
| 494 |
+
.gradio-container .option:hover,
|
| 495 |
+
.gradio-container .item:hover {
|
| 496 |
+
color: #0f2533 !important;
|
| 497 |
+
background-color: #e7f1f7 !important;
|
| 498 |
+
}
|
| 499 |
.gradio-container .prose,
|
| 500 |
.gradio-container .markdown,
|
| 501 |
.gradio-container [data-testid="markdown"],
|
|
|
|
| 569 |
.claim-grid div { background: white; border: 1px solid #d7dde8; border-radius: 6px; padding: 12px; }
|
| 570 |
.claim-grid strong { display: block; color: #18232f; margin-bottom: 5px; }
|
| 571 |
.claim-grid span { color: #40515f; }
|
| 572 |
+
.infra-panel { border: 1px solid #d7dde8; border-radius: 6px; padding: 18px; background: #fff; margin: 16px 0; }
|
| 573 |
+
.infra-panel h2 { font-size: 20px; margin: 6px 0 8px; color: #18232f; }
|
| 574 |
+
.infra-panel p { color: #40515f; margin-top: 0; }
|
| 575 |
+
.infra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; margin: 14px 0; }
|
| 576 |
+
.infra-card { border: 1px solid #d7dde8; border-radius: 6px; padding: 12px; background: #f7fbfd; }
|
| 577 |
+
.infra-label { color: #425466; font-weight: 750; font-size: 13px; }
|
| 578 |
+
.infra-sites { color: #12719e; font-size: 28px; font-weight: 850; margin-top: 4px; }
|
| 579 |
+
.infra-detail { color: #25313c; font-size: 13px; }
|
| 580 |
+
.infra-claim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; }
|
| 581 |
+
.infra-claim-grid div { background: #fbfcff; border: 1px solid #d7dde8; border-radius: 6px; padding: 12px; }
|
| 582 |
+
.infra-claim-grid ul { margin: 8px 0 0; padding-left: 18px; color: #40515f; }
|
| 583 |
@media (prefers-color-scheme: dark) {
|
| 584 |
.gradio-container {
|
| 585 |
background: #f3f6fa !important;
|
|
|
|
| 596 |
|
| 597 |
with gr.Blocks(css=css, title="Nuclear UAP Evidence Surface", theme=gr.themes.Soft()) as demo:
|
| 598 |
gr.HTML(visual_story_html())
|
| 599 |
+
gr.HTML(public_infrastructure_html())
|
| 600 |
gr.HTML(score_cards())
|
| 601 |
with gr.Tabs():
|
| 602 |
with gr.Tab("Claim Boundaries"):
|
|
|
|
| 622 |
bucket = gr.Dropdown(choices=bucket_choices(), value="All", label="Gap bucket")
|
| 623 |
missing_table = gr.Dataframe(value=filter_missing("All"), interactive=False, wrap=True)
|
| 624 |
bucket.change(filter_missing, bucket, missing_table)
|
| 625 |
+
with gr.Tab("Military / NNSA Layer"):
|
| 626 |
+
infra_layer = gr.Dropdown(
|
| 627 |
+
choices=[
|
| 628 |
+
"All",
|
| 629 |
+
"public_military_installation",
|
| 630 |
+
"public_nuclear_security_enterprise",
|
| 631 |
+
],
|
| 632 |
+
value="All",
|
| 633 |
+
label="Public infrastructure layer",
|
| 634 |
+
)
|
| 635 |
+
infra_table = gr.Dataframe(value=filter_public_infrastructure("All"), interactive=False, wrap=True)
|
| 636 |
+
infra_layer.change(filter_public_infrastructure, infra_layer, infra_table)
|
| 637 |
with gr.Tab("Downloads & Receipts"):
|
| 638 |
gr.Markdown("Download the reduced analytical tables, source receipts, hashes, and manifest. These exports do not include raw witness summaries.")
|
| 639 |
gr.File(value=download_files(), file_count="multiple", label="Dataset files")
|
data/artifact_manifest.json
CHANGED
|
@@ -2,154 +2,172 @@
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
-
"generated_utc": "2026-04-
|
| 6 |
-
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
-
"artifact_count":
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": "README.md",
|
| 12 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 13 |
-
"byte_count":
|
| 14 |
-
"content_sha256": "
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 19 |
-
"byte_count":
|
| 20 |
-
"content_sha256": "
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "requirements.txt",
|
| 24 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 25 |
"byte_count": 31,
|
| 26 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": ".gitattributes",
|
| 30 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 31 |
"byte_count": 89,
|
| 32 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 36 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 37 |
-
"byte_count":
|
| 38 |
-
"content_sha256": "
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 42 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 43 |
-
"byte_count":
|
| 44 |
-
"content_sha256": "
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 48 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 49 |
"byte_count": 413,
|
| 50 |
-
"content_sha256": "
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 54 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 55 |
"byte_count": 12282175,
|
| 56 |
-
"content_sha256": "
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 60 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 61 |
"byte_count": 2051319,
|
| 62 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 63 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 66 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 67 |
"byte_count": 4333,
|
| 68 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_assessment.json",
|
| 72 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 73 |
"byte_count": 2294,
|
| 74 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 78 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 79 |
"byte_count": 1672,
|
| 80 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 84 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 85 |
"byte_count": 2249,
|
| 86 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_report.md",
|
| 90 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 91 |
"byte_count": 2353,
|
| 92 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 96 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 97 |
"byte_count": 55,
|
| 98 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/matched_controls.csv",
|
| 102 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 103 |
"byte_count": 134142,
|
| 104 |
-
"content_sha256": "
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 108 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 109 |
"byte_count": 17522,
|
| 110 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/nuclear_sites.csv",
|
| 114 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 115 |
"byte_count": 36391,
|
| 116 |
-
"content_sha256": "
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure.csv",
|
| 120 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 121 |
"byte_count": 6560269,
|
| 122 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/place_exposure_top.csv",
|
| 126 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 127 |
"byte_count": 210112,
|
| 128 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 129 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 130 |
{
|
| 131 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 132 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 133 |
"byte_count": 88157,
|
| 134 |
-
"content_sha256": "
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 138 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 139 |
-
"byte_count":
|
| 140 |
-
"content_sha256": "
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/statistical_tests.json",
|
| 144 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 145 |
-
"byte_count":
|
| 146 |
-
"content_sha256": "
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "data/summary_metrics.json",
|
| 150 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 151 |
-
"byte_count":
|
| 152 |
-
"content_sha256": "
|
| 153 |
}
|
| 154 |
],
|
| 155 |
"public_claim_contract": {
|
|
@@ -161,7 +179,7 @@
|
|
| 161 |
"user_explicit_publish_request": true
|
| 162 |
},
|
| 163 |
"metrics": {
|
| 164 |
-
"generated_utc": "2026-04-
|
| 165 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 166 |
"assessment": {
|
| 167 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -658,8 +676,8 @@
|
|
| 658 |
"nuclear_median_reports_per_site": 446,
|
| 659 |
"control_median_reports_per_site": 452,
|
| 660 |
"observed_mean_difference": -113.066667,
|
| 661 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 662 |
-
"p_value_two_sided": 0.
|
| 663 |
"permutations": 1000,
|
| 664 |
"seed": 1337
|
| 665 |
},
|
|
@@ -673,8 +691,8 @@
|
|
| 673 |
"nuclear_median_reports_per_site": 1593,
|
| 674 |
"control_median_reports_per_site": 1617,
|
| 675 |
"observed_mean_difference": -62.764912,
|
| 676 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 677 |
-
"p_value_two_sided": 0.
|
| 678 |
"permutations": 1000,
|
| 679 |
"seed": 1337
|
| 680 |
}
|
|
@@ -692,14 +710,122 @@
|
|
| 692 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 693 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 694 |
],
|
| 695 |
-
"statistical_tests_hash": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 696 |
},
|
| 697 |
"plain_language": {
|
| 698 |
-
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls.",
|
| 699 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 700 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 701 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 702 |
}
|
| 703 |
},
|
| 704 |
-
"manifest_hash": "
|
| 705 |
}
|
|
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 6 |
+
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
+
"artifact_count": 27,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": "README.md",
|
| 12 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\README.md",
|
| 13 |
+
"byte_count": 4116,
|
| 14 |
+
"content_sha256": "1a514da7809a9620e63828581ef84875d4b6f4330c6df816d3910abee7245eb4"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\app.py",
|
| 19 |
+
"byte_count": 27975,
|
| 20 |
+
"content_sha256": "1b7aca1a4be7d9c7b99debe9ebfd1902b7e9866b9c9797f79cba244a91fefca0"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "requirements.txt",
|
| 24 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\requirements.txt",
|
| 25 |
"byte_count": 31,
|
| 26 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": ".gitattributes",
|
| 30 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\.gitattributes",
|
| 31 |
"byte_count": 89,
|
| 32 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 36 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_artifact_integrity_report.json",
|
| 37 |
+
"byte_count": 6330,
|
| 38 |
+
"content_sha256": "6699f1bc4f415db95b81ed87365e59b33ce9ed8b08ab25efbbc2cf3f8e2fbc81"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 42 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_dataset_schema.json",
|
| 43 |
+
"byte_count": 6670,
|
| 44 |
+
"content_sha256": "b5b6bd920f3756e3a67a134f1cb68383e051f3c7be08cd0708f5b098a18cfeef"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 48 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_source_gaps.csv",
|
| 49 |
"byte_count": 413,
|
| 50 |
+
"content_sha256": "81a0eae872bed6bf10e4e921a02b21df40b6397740c8614673d5df4bccca548f"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 54 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_explanatory_features.csv.gz",
|
| 55 |
"byte_count": 12282175,
|
| 56 |
+
"content_sha256": "1cea0b4572be6cc691b29d99b96e161c5a3a54cb26d2f24b7346df89e79ffcc2"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 60 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_explanatory_sample.csv",
|
| 61 |
"byte_count": 2051319,
|
| 62 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 63 |
},
|
| 64 |
+
{
|
| 65 |
+
"artifact_key": "data/event_public_infrastructure_proximity.csv.gz",
|
| 66 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_public_infrastructure_proximity.csv.gz",
|
| 67 |
+
"byte_count": 12119224,
|
| 68 |
+
"content_sha256": "5d49cb8257a281bfba6e75db2687a04f140aacb36ad24efdb9314e307d7039a2"
|
| 69 |
+
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 72 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_artifact_integrity_report.json",
|
| 73 |
"byte_count": 4333,
|
| 74 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_assessment.json",
|
| 78 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_assessment.json",
|
| 79 |
"byte_count": 2294,
|
| 80 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 84 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_case_cards.md",
|
| 85 |
"byte_count": 1672,
|
| 86 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 90 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_dataset_schema.json",
|
| 91 |
"byte_count": 2249,
|
| 92 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/explanatory_report.md",
|
| 96 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_report.md",
|
| 97 |
"byte_count": 2353,
|
| 98 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 102 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_source_gaps.csv",
|
| 103 |
"byte_count": 55,
|
| 104 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/matched_controls.csv",
|
| 108 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\matched_controls.csv",
|
| 109 |
"byte_count": 134142,
|
| 110 |
+
"content_sha256": "ea138fedfb54bb7604ab20e05887ed8220da4d5f58258bc7df83004c292f4b6b"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 114 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\missing_geocode_examples.csv",
|
| 115 |
"byte_count": 17522,
|
| 116 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/nuclear_sites.csv",
|
| 120 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\nuclear_sites.csv",
|
| 121 |
"byte_count": 36391,
|
| 122 |
+
"content_sha256": "2c8a90dee628fba16c7fc9e30749149c631e87243bfc75b644d44e4e5dd45ab4"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/place_exposure.csv",
|
| 126 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\place_exposure.csv",
|
| 127 |
"byte_count": 6560269,
|
| 128 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/place_exposure_top.csv",
|
| 132 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\place_exposure_top.csv",
|
| 133 |
"byte_count": 210112,
|
| 134 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 135 |
},
|
| 136 |
+
{
|
| 137 |
+
"artifact_key": "data/public_infrastructure_site_summary.csv",
|
| 138 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\public_infrastructure_site_summary.csv",
|
| 139 |
+
"byte_count": 516839,
|
| 140 |
+
"content_sha256": "a5cbad352d48f2f4c7bc065a03206d5bf9db19eed173d326d38814b6dae7e400"
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"artifact_key": "data/public_infrastructure_sites.csv",
|
| 144 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\public_infrastructure_sites.csv",
|
| 145 |
+
"byte_count": 739236,
|
| 146 |
+
"content_sha256": "c7a1ed557f1019fea4840d8cfa4beba18f4551a344ccd5a7b76ab04e196509e7"
|
| 147 |
+
},
|
| 148 |
{
|
| 149 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 150 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\site_proximity_summary.csv",
|
| 151 |
"byte_count": 88157,
|
| 152 |
+
"content_sha256": "03757f57fdfa1c863746d0d6d745d0ce0c769e8f1817da5eeceda57c23bd3baa"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 156 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\source_receipts_combined.csv",
|
| 157 |
+
"byte_count": 6847,
|
| 158 |
+
"content_sha256": "e75edef1d2d403d479a845955be06edef813b45508451778a6e9349db277e222"
|
| 159 |
},
|
| 160 |
{
|
| 161 |
"artifact_key": "data/statistical_tests.json",
|
| 162 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\statistical_tests.json",
|
| 163 |
+
"byte_count": 5442,
|
| 164 |
+
"content_sha256": "0c93475ca711a5fd483bcf241aa4d92b6ada4c9f71c4b2680558b1bee4a7c457"
|
| 165 |
},
|
| 166 |
{
|
| 167 |
"artifact_key": "data/summary_metrics.json",
|
| 168 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\summary_metrics.json",
|
| 169 |
+
"byte_count": 23484,
|
| 170 |
+
"content_sha256": "7345811c4cdaa62f4d05b09869cc93c2cde0da2c51e2df455cafc7f78b4175a5"
|
| 171 |
}
|
| 172 |
],
|
| 173 |
"public_claim_contract": {
|
|
|
|
| 179 |
"user_explicit_publish_request": true
|
| 180 |
},
|
| 181 |
"metrics": {
|
| 182 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 183 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 184 |
"assessment": {
|
| 185 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 676 |
"nuclear_median_reports_per_site": 446,
|
| 677 |
"control_median_reports_per_site": 452,
|
| 678 |
"observed_mean_difference": -113.066667,
|
| 679 |
+
"p_value_one_sided_nuclear_greater": 0.85015,
|
| 680 |
+
"p_value_two_sided": 0.290709,
|
| 681 |
"permutations": 1000,
|
| 682 |
"seed": 1337
|
| 683 |
},
|
|
|
|
| 691 |
"nuclear_median_reports_per_site": 1593,
|
| 692 |
"control_median_reports_per_site": 1617,
|
| 693 |
"observed_mean_difference": -62.764912,
|
| 694 |
+
"p_value_one_sided_nuclear_greater": 0.611389,
|
| 695 |
+
"p_value_two_sided": 0.752248,
|
| 696 |
"permutations": 1000,
|
| 697 |
"seed": 1337
|
| 698 |
}
|
|
|
|
| 710 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 711 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 712 |
],
|
| 713 |
+
"statistical_tests_hash": "4d32a1462acc66128ec60c3a39e3cfafcf02ed2223d29ee83810a460021a55fc",
|
| 714 |
+
"public_infrastructure_layers": {
|
| 715 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 716 |
+
"layer_reports": {
|
| 717 |
+
"public_military_installation": {
|
| 718 |
+
"label": "Public military installations",
|
| 719 |
+
"site_count": 815,
|
| 720 |
+
"event_count": 105250,
|
| 721 |
+
"near_any_counts": {
|
| 722 |
+
"25": 68840,
|
| 723 |
+
"50": 91139,
|
| 724 |
+
"100": 103093
|
| 725 |
+
},
|
| 726 |
+
"event_share_within_50_miles": 0.865929,
|
| 727 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 728 |
+
"interpretation": "descriptive_public_layer_only"
|
| 729 |
+
},
|
| 730 |
+
"public_nuclear_security_enterprise": {
|
| 731 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 732 |
+
"site_count": 8,
|
| 733 |
+
"event_count": 105250,
|
| 734 |
+
"near_any_counts": {
|
| 735 |
+
"25": 2298,
|
| 736 |
+
"50": 4496,
|
| 737 |
+
"100": 9207
|
| 738 |
+
},
|
| 739 |
+
"event_share_within_50_miles": 0.042717,
|
| 740 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 741 |
+
"interpretation": "descriptive_public_layer_only"
|
| 742 |
+
},
|
| 743 |
+
"public_strategic_delivery_installation": {
|
| 744 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 745 |
+
"site_count": 10,
|
| 746 |
+
"event_count": 105250,
|
| 747 |
+
"near_any_counts": {
|
| 748 |
+
"25": 2781,
|
| 749 |
+
"50": 5325,
|
| 750 |
+
"100": 9402
|
| 751 |
+
},
|
| 752 |
+
"event_share_within_50_miles": 0.050594,
|
| 753 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 754 |
+
"interpretation": "descriptive_public_layer_only"
|
| 755 |
+
}
|
| 756 |
+
},
|
| 757 |
+
"what_we_can_claim": [
|
| 758 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 759 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 760 |
+
],
|
| 761 |
+
"what_we_cannot_claim": [
|
| 762 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 763 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 764 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 765 |
+
],
|
| 766 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 767 |
+
}
|
| 768 |
+
},
|
| 769 |
+
"public_infrastructure_layers": {
|
| 770 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 771 |
+
"layer_reports": {
|
| 772 |
+
"public_military_installation": {
|
| 773 |
+
"label": "Public military installations",
|
| 774 |
+
"site_count": 815,
|
| 775 |
+
"event_count": 105250,
|
| 776 |
+
"near_any_counts": {
|
| 777 |
+
"25": 68840,
|
| 778 |
+
"50": 91139,
|
| 779 |
+
"100": 103093
|
| 780 |
+
},
|
| 781 |
+
"event_share_within_50_miles": 0.865929,
|
| 782 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 783 |
+
"interpretation": "descriptive_public_layer_only"
|
| 784 |
+
},
|
| 785 |
+
"public_nuclear_security_enterprise": {
|
| 786 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 787 |
+
"site_count": 8,
|
| 788 |
+
"event_count": 105250,
|
| 789 |
+
"near_any_counts": {
|
| 790 |
+
"25": 2298,
|
| 791 |
+
"50": 4496,
|
| 792 |
+
"100": 9207
|
| 793 |
+
},
|
| 794 |
+
"event_share_within_50_miles": 0.042717,
|
| 795 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 796 |
+
"interpretation": "descriptive_public_layer_only"
|
| 797 |
+
},
|
| 798 |
+
"public_strategic_delivery_installation": {
|
| 799 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 800 |
+
"site_count": 10,
|
| 801 |
+
"event_count": 105250,
|
| 802 |
+
"near_any_counts": {
|
| 803 |
+
"25": 2781,
|
| 804 |
+
"50": 5325,
|
| 805 |
+
"100": 9402
|
| 806 |
+
},
|
| 807 |
+
"event_share_within_50_miles": 0.050594,
|
| 808 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 809 |
+
"interpretation": "descriptive_public_layer_only"
|
| 810 |
+
}
|
| 811 |
+
},
|
| 812 |
+
"what_we_can_claim": [
|
| 813 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 814 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 815 |
+
],
|
| 816 |
+
"what_we_cannot_claim": [
|
| 817 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 818 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 819 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 820 |
+
],
|
| 821 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 822 |
},
|
| 823 |
"plain_language": {
|
| 824 |
+
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls, with descriptive public military/NNSA proximity layers.",
|
| 825 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 826 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 827 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 828 |
}
|
| 829 |
},
|
| 830 |
+
"manifest_hash": "8a0593b8989673db11c6ed4e915c84aaf1b526fea102bdea04e4c5813f480305"
|
| 831 |
}
|
data/correlation_artifact_integrity_report.json
CHANGED
|
@@ -1,98 +1,116 @@
|
|
| 1 |
{
|
| 2 |
"artifact_integrity_version": "nuclear_uap_correlation_index_private_preview_v1:integrity",
|
| 3 |
-
"generated_utc": "2026-04-
|
| 4 |
-
"artifact_count":
|
| 5 |
"artifacts": [
|
| 6 |
{
|
| 7 |
"artifact_key": "uap_geocoded_events",
|
| 8 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 9 |
"byte_count": 64364641,
|
| 10 |
-
"content_sha256": "
|
| 11 |
},
|
| 12 |
{
|
| 13 |
"artifact_key": "uap_geocoded_events_jsonl",
|
| 14 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 15 |
"byte_count": 96359878,
|
| 16 |
-
"content_sha256": "
|
| 17 |
},
|
| 18 |
{
|
| 19 |
"artifact_key": "nuclear_sites",
|
| 20 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 21 |
"byte_count": 36391,
|
| 22 |
-
"content_sha256": "
|
| 23 |
},
|
| 24 |
{
|
| 25 |
"artifact_key": "nuclear_activity_events",
|
| 26 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 27 |
"byte_count": 35611,
|
| 28 |
-
"content_sha256": "
|
| 29 |
},
|
| 30 |
{
|
| 31 |
"artifact_key": "event_site_proximity",
|
| 32 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 33 |
"byte_count": 42918697,
|
| 34 |
-
"content_sha256": "
|
| 35 |
},
|
| 36 |
{
|
| 37 |
"artifact_key": "matched_controls",
|
| 38 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 39 |
"byte_count": 134142,
|
| 40 |
-
"content_sha256": "
|
| 41 |
},
|
| 42 |
{
|
| 43 |
"artifact_key": "site_proximity_summary",
|
| 44 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 45 |
"byte_count": 88157,
|
| 46 |
-
"content_sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
},
|
| 48 |
{
|
| 49 |
"artifact_key": "statistical_tests",
|
| 50 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 51 |
-
"byte_count":
|
| 52 |
-
"content_sha256": "
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"artifact_key": "case_cards",
|
| 56 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 57 |
-
"byte_count":
|
| 58 |
-
"content_sha256": "
|
| 59 |
},
|
| 60 |
{
|
| 61 |
"artifact_key": "assessment_report",
|
| 62 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 63 |
-
"byte_count":
|
| 64 |
-
"content_sha256": "
|
| 65 |
},
|
| 66 |
{
|
| 67 |
"artifact_key": "dataset_schema",
|
| 68 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 69 |
-
"byte_count":
|
| 70 |
-
"content_sha256": "
|
| 71 |
},
|
| 72 |
{
|
| 73 |
"artifact_key": "source_receipts",
|
| 74 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 75 |
-
"byte_count":
|
| 76 |
-
"content_sha256": "
|
| 77 |
},
|
| 78 |
{
|
| 79 |
"artifact_key": "source_gaps",
|
| 80 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 81 |
"byte_count": 413,
|
| 82 |
-
"content_sha256": "
|
| 83 |
},
|
| 84 |
{
|
| 85 |
"artifact_key": "machine_bundle",
|
| 86 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 87 |
-
"byte_count":
|
| 88 |
-
"content_sha256": "
|
| 89 |
},
|
| 90 |
{
|
| 91 |
"artifact_key": "nuclear_uap_view",
|
| 92 |
-
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 93 |
-
"byte_count":
|
| 94 |
-
"content_sha256": "
|
| 95 |
}
|
| 96 |
],
|
| 97 |
-
"artifact_integrity_hash": "
|
| 98 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"artifact_integrity_version": "nuclear_uap_correlation_index_private_preview_v1:integrity",
|
| 3 |
+
"generated_utc": "2026-04-30T11:58:49+00:00",
|
| 4 |
+
"artifact_count": 18,
|
| 5 |
"artifacts": [
|
| 6 |
{
|
| 7 |
"artifact_key": "uap_geocoded_events",
|
| 8 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\uap_geocoded_events.csv",
|
| 9 |
"byte_count": 64364641,
|
| 10 |
+
"content_sha256": "d931c64a3fffe1051780680ebe70e94b2ddd8abb735714b46b5fa077c6959c0b"
|
| 11 |
},
|
| 12 |
{
|
| 13 |
"artifact_key": "uap_geocoded_events_jsonl",
|
| 14 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\uap_geocoded_events.jsonl",
|
| 15 |
"byte_count": 96359878,
|
| 16 |
+
"content_sha256": "290a1a6ae38f7b3934ed43b9993bc0d5ed02b8f703e8934e85a13899e62f82f5"
|
| 17 |
},
|
| 18 |
{
|
| 19 |
"artifact_key": "nuclear_sites",
|
| 20 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\nuclear_sites.csv",
|
| 21 |
"byte_count": 36391,
|
| 22 |
+
"content_sha256": "2c8a90dee628fba16c7fc9e30749149c631e87243bfc75b644d44e4e5dd45ab4"
|
| 23 |
},
|
| 24 |
{
|
| 25 |
"artifact_key": "nuclear_activity_events",
|
| 26 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\nuclear_activity_events.csv",
|
| 27 |
"byte_count": 35611,
|
| 28 |
+
"content_sha256": "dc51b5984b02ed23b768edc9744c855b4206d6c646128df64f294d0c1fdedf01"
|
| 29 |
},
|
| 30 |
{
|
| 31 |
"artifact_key": "event_site_proximity",
|
| 32 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\event_site_proximity.csv",
|
| 33 |
"byte_count": 42918697,
|
| 34 |
+
"content_sha256": "cf2a0d6e018396834543ea1f9027d6b7ffe5efce097621d2f9b82f923aa0e939"
|
| 35 |
},
|
| 36 |
{
|
| 37 |
"artifact_key": "matched_controls",
|
| 38 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\matched_controls.csv",
|
| 39 |
"byte_count": 134142,
|
| 40 |
+
"content_sha256": "ea138fedfb54bb7604ab20e05887ed8220da4d5f58258bc7df83004c292f4b6b"
|
| 41 |
},
|
| 42 |
{
|
| 43 |
"artifact_key": "site_proximity_summary",
|
| 44 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\site_proximity_summary.csv",
|
| 45 |
"byte_count": 88157,
|
| 46 |
+
"content_sha256": "03757f57fdfa1c863746d0d6d745d0ce0c769e8f1817da5eeceda57c23bd3baa"
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"artifact_key": "public_infrastructure_sites",
|
| 50 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\public_infrastructure_sites.csv",
|
| 51 |
+
"byte_count": 739236,
|
| 52 |
+
"content_sha256": "c7a1ed557f1019fea4840d8cfa4beba18f4551a344ccd5a7b76ab04e196509e7"
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"artifact_key": "event_public_infrastructure_proximity",
|
| 56 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\event_public_infrastructure_proximity.csv",
|
| 57 |
+
"byte_count": 55806151,
|
| 58 |
+
"content_sha256": "13dd498753e8df3d5bfd5101496cb68f99975446e22552887f9f8c8990d09b05"
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"artifact_key": "public_infrastructure_site_summary",
|
| 62 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\public_infrastructure_site_summary.csv",
|
| 63 |
+
"byte_count": 516839,
|
| 64 |
+
"content_sha256": "a5cbad352d48f2f4c7bc065a03206d5bf9db19eed173d326d38814b6dae7e400"
|
| 65 |
},
|
| 66 |
{
|
| 67 |
"artifact_key": "statistical_tests",
|
| 68 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\statistical_tests.json",
|
| 69 |
+
"byte_count": 5442,
|
| 70 |
+
"content_sha256": "0c93475ca711a5fd483bcf241aa4d92b6ada4c9f71c4b2680558b1bee4a7c457"
|
| 71 |
},
|
| 72 |
{
|
| 73 |
"artifact_key": "case_cards",
|
| 74 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\case_cards.md",
|
| 75 |
+
"byte_count": 9370,
|
| 76 |
+
"content_sha256": "d122df77392ed5a7c2979b495616f92dd2aa333af3cea00945019baf13acac5b"
|
| 77 |
},
|
| 78 |
{
|
| 79 |
"artifact_key": "assessment_report",
|
| 80 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\assessment_report.md",
|
| 81 |
+
"byte_count": 3560,
|
| 82 |
+
"content_sha256": "f31b9a0b56218c67a5e01831b785e8cf169099e4bce1d441881f2acad83ead30"
|
| 83 |
},
|
| 84 |
{
|
| 85 |
"artifact_key": "dataset_schema",
|
| 86 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\dataset_schema.json",
|
| 87 |
+
"byte_count": 6670,
|
| 88 |
+
"content_sha256": "b5b6bd920f3756e3a67a134f1cb68383e051f3c7be08cd0708f5b098a18cfeef"
|
| 89 |
},
|
| 90 |
{
|
| 91 |
"artifact_key": "source_receipts",
|
| 92 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\source_receipts.csv",
|
| 93 |
+
"byte_count": 4581,
|
| 94 |
+
"content_sha256": "23be856dc3f211740c79f3418ce939be288376f5dbcbfeda523c9dd04ea04364"
|
| 95 |
},
|
| 96 |
{
|
| 97 |
"artifact_key": "source_gaps",
|
| 98 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\source_gaps.csv",
|
| 99 |
"byte_count": 413,
|
| 100 |
+
"content_sha256": "81a0eae872bed6bf10e4e921a02b21df40b6397740c8614673d5df4bccca548f"
|
| 101 |
},
|
| 102 |
{
|
| 103 |
"artifact_key": "machine_bundle",
|
| 104 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\machine_bundle.json",
|
| 105 |
+
"byte_count": 387849661,
|
| 106 |
+
"content_sha256": "6eefd2a88a4c1c5330780a4b55452462ddd68230420c0411aff9460d364eeb19"
|
| 107 |
},
|
| 108 |
{
|
| 109 |
"artifact_key": "nuclear_uap_view",
|
| 110 |
+
"path": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z\\nuclear_uap_view.html",
|
| 111 |
+
"byte_count": 1142,
|
| 112 |
+
"content_sha256": "d82578db9431907f7f1bf4af890cd886d4b355649ed847c7c1b4f75ce1f30006"
|
| 113 |
}
|
| 114 |
],
|
| 115 |
+
"artifact_integrity_hash": "c7d122571eadd2bc065c2ae2fa4f926e3be2599bfa3dae0a5038b15301339ff7"
|
| 116 |
}
|
data/correlation_dataset_schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"schema_version": "nuclear_uap_correlation_index_private_preview_v1:schema",
|
| 3 |
-
"generated_utc": "2026-04-
|
| 4 |
"tables": {
|
| 5 |
"uap_geocoded_events": {
|
| 6 |
"fields": [
|
|
@@ -140,6 +140,80 @@
|
|
| 140 |
"row_count": 342,
|
| 141 |
"primary_key": "site_id"
|
| 142 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
"source_receipts": {
|
| 144 |
"fields": [
|
| 145 |
"receipt_id",
|
|
@@ -155,7 +229,7 @@
|
|
| 155 |
"receipt_hash",
|
| 156 |
"source_gap_reason"
|
| 157 |
],
|
| 158 |
-
"row_count":
|
| 159 |
"primary_key": "receipt_id"
|
| 160 |
},
|
| 161 |
"source_gaps": {
|
|
@@ -177,7 +251,8 @@
|
|
| 177 |
"claims_causation": false,
|
| 178 |
"claims_attraction": false,
|
| 179 |
"uses_matched_controls": true,
|
|
|
|
| 180 |
"source_gaps_are_rows": true
|
| 181 |
},
|
| 182 |
-
"schema_hash": "
|
| 183 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"schema_version": "nuclear_uap_correlation_index_private_preview_v1:schema",
|
| 3 |
+
"generated_utc": "2026-04-30T11:58:49+00:00",
|
| 4 |
"tables": {
|
| 5 |
"uap_geocoded_events": {
|
| 6 |
"fields": [
|
|
|
|
| 140 |
"row_count": 342,
|
| 141 |
"primary_key": "site_id"
|
| 142 |
},
|
| 143 |
+
"public_infrastructure_sites": {
|
| 144 |
+
"fields": [
|
| 145 |
+
"site_id",
|
| 146 |
+
"site_name",
|
| 147 |
+
"site_layer",
|
| 148 |
+
"site_kind",
|
| 149 |
+
"state",
|
| 150 |
+
"country",
|
| 151 |
+
"latitude",
|
| 152 |
+
"longitude",
|
| 153 |
+
"coordinate_basis",
|
| 154 |
+
"source_name",
|
| 155 |
+
"source_url",
|
| 156 |
+
"source_confidence",
|
| 157 |
+
"public_role",
|
| 158 |
+
"sha256",
|
| 159 |
+
"receipt_hash",
|
| 160 |
+
"what_we_can_claim",
|
| 161 |
+
"what_we_cannot_claim"
|
| 162 |
+
],
|
| 163 |
+
"row_count": 823,
|
| 164 |
+
"primary_key": "site_id"
|
| 165 |
+
},
|
| 166 |
+
"event_public_infrastructure_proximity": {
|
| 167 |
+
"fields": [
|
| 168 |
+
"event_id",
|
| 169 |
+
"event_date",
|
| 170 |
+
"city",
|
| 171 |
+
"state",
|
| 172 |
+
"latitude",
|
| 173 |
+
"longitude",
|
| 174 |
+
"nearest_military_site_id",
|
| 175 |
+
"nearest_military_site_name",
|
| 176 |
+
"nearest_military_distance_miles",
|
| 177 |
+
"within_25_miles_military",
|
| 178 |
+
"within_50_miles_military",
|
| 179 |
+
"within_100_miles_military",
|
| 180 |
+
"nearest_nuclear_security_site_id",
|
| 181 |
+
"nearest_nuclear_security_site_name",
|
| 182 |
+
"nearest_nuclear_security_distance_miles",
|
| 183 |
+
"within_25_miles_nuclear_security",
|
| 184 |
+
"within_50_miles_nuclear_security",
|
| 185 |
+
"within_100_miles_nuclear_security",
|
| 186 |
+
"nearest_strategic_site_id",
|
| 187 |
+
"nearest_strategic_site_name",
|
| 188 |
+
"nearest_strategic_distance_miles",
|
| 189 |
+
"within_25_miles_strategic",
|
| 190 |
+
"within_50_miles_strategic",
|
| 191 |
+
"within_100_miles_strategic",
|
| 192 |
+
"sha256",
|
| 193 |
+
"receipt_hash",
|
| 194 |
+
"public_infra_proximity_hash"
|
| 195 |
+
],
|
| 196 |
+
"row_count": 105250,
|
| 197 |
+
"primary_key": "public_infra_proximity_hash"
|
| 198 |
+
},
|
| 199 |
+
"public_infrastructure_site_summary": {
|
| 200 |
+
"fields": [
|
| 201 |
+
"site_layer",
|
| 202 |
+
"site_id",
|
| 203 |
+
"site_name",
|
| 204 |
+
"site_kind",
|
| 205 |
+
"state",
|
| 206 |
+
"count_within_25_miles",
|
| 207 |
+
"count_within_50_miles",
|
| 208 |
+
"count_within_100_miles",
|
| 209 |
+
"source_url",
|
| 210 |
+
"sha256",
|
| 211 |
+
"receipt_hash",
|
| 212 |
+
"site_summary_hash"
|
| 213 |
+
],
|
| 214 |
+
"row_count": 823,
|
| 215 |
+
"primary_key": "site_summary_hash"
|
| 216 |
+
},
|
| 217 |
"source_receipts": {
|
| 218 |
"fields": [
|
| 219 |
"receipt_id",
|
|
|
|
| 229 |
"receipt_hash",
|
| 230 |
"source_gap_reason"
|
| 231 |
],
|
| 232 |
+
"row_count": 8,
|
| 233 |
"primary_key": "receipt_id"
|
| 234 |
},
|
| 235 |
"source_gaps": {
|
|
|
|
| 251 |
"claims_causation": false,
|
| 252 |
"claims_attraction": false,
|
| 253 |
"uses_matched_controls": true,
|
| 254 |
+
"public_military_and_nuclear_security_layers_are_descriptive": true,
|
| 255 |
"source_gaps_are_rows": true
|
| 256 |
},
|
| 257 |
+
"schema_hash": "cd03303da4fd73a7e41d46f8534873995a80c8e8ed38022bd5720c6d36adb459"
|
| 258 |
}
|
data/correlation_source_gaps.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 413
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81a0eae872bed6bf10e4e921a02b21df40b6397740c8614673d5df4bccca548f
|
| 3 |
size 413
|
data/event_explanatory_features.csv.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 12282175
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cea0b4572be6cc691b29d99b96e161c5a3a54cb26d2f24b7346df89e79ffcc2
|
| 3 |
size 12282175
|
data/event_public_infrastructure_proximity.csv.gz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d49cb8257a281bfba6e75db2687a04f140aacb36ad24efdb9314e307d7039a2
|
| 3 |
+
size 12119224
|
data/matched_controls.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 134142
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea138fedfb54bb7604ab20e05887ed8220da4d5f58258bc7df83004c292f4b6b
|
| 3 |
size 134142
|
data/nuclear_sites.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 36391
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c8a90dee628fba16c7fc9e30749149c631e87243bfc75b644d44e4e5dd45ab4
|
| 3 |
size 36391
|
data/public_infrastructure_site_summary.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5cbad352d48f2f4c7bc065a03206d5bf9db19eed173d326d38814b6dae7e400
|
| 3 |
+
size 516839
|
data/public_infrastructure_sites.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7a1ed557f1019fea4840d8cfa4beba18f4551a344ccd5a7b76ab04e196509e7
|
| 3 |
+
size 739236
|
data/site_proximity_summary.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 88157
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03757f57fdfa1c863746d0d6d745d0ce0c769e8f1817da5eeceda57c23bd3baa
|
| 3 |
size 88157
|
data/source_receipts_combined.csv
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e75edef1d2d403d479a845955be06edef813b45508451778a6e9349db277e222
|
| 3 |
+
size 6847
|
data/statistical_tests.json
CHANGED
|
@@ -34,8 +34,8 @@
|
|
| 34 |
"nuclear_median_reports_per_site": 446,
|
| 35 |
"control_median_reports_per_site": 452,
|
| 36 |
"observed_mean_difference": -113.066667,
|
| 37 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 38 |
-
"p_value_two_sided": 0.
|
| 39 |
"permutations": 1000,
|
| 40 |
"seed": 1337
|
| 41 |
},
|
|
@@ -49,8 +49,8 @@
|
|
| 49 |
"nuclear_median_reports_per_site": 1593,
|
| 50 |
"control_median_reports_per_site": 1617,
|
| 51 |
"observed_mean_difference": -62.764912,
|
| 52 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 53 |
-
"p_value_two_sided": 0.
|
| 54 |
"permutations": 1000,
|
| 55 |
"seed": 1337
|
| 56 |
}
|
|
@@ -68,5 +68,59 @@
|
|
| 68 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 69 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 70 |
],
|
| 71 |
-
"statistical_tests_hash": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
}
|
|
|
|
| 34 |
"nuclear_median_reports_per_site": 446,
|
| 35 |
"control_median_reports_per_site": 452,
|
| 36 |
"observed_mean_difference": -113.066667,
|
| 37 |
+
"p_value_one_sided_nuclear_greater": 0.85015,
|
| 38 |
+
"p_value_two_sided": 0.290709,
|
| 39 |
"permutations": 1000,
|
| 40 |
"seed": 1337
|
| 41 |
},
|
|
|
|
| 49 |
"nuclear_median_reports_per_site": 1593,
|
| 50 |
"control_median_reports_per_site": 1617,
|
| 51 |
"observed_mean_difference": -62.764912,
|
| 52 |
+
"p_value_one_sided_nuclear_greater": 0.611389,
|
| 53 |
+
"p_value_two_sided": 0.752248,
|
| 54 |
"permutations": 1000,
|
| 55 |
"seed": 1337
|
| 56 |
}
|
|
|
|
| 68 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 69 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 70 |
],
|
| 71 |
+
"statistical_tests_hash": "4d32a1462acc66128ec60c3a39e3cfafcf02ed2223d29ee83810a460021a55fc",
|
| 72 |
+
"public_infrastructure_layers": {
|
| 73 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 74 |
+
"layer_reports": {
|
| 75 |
+
"public_military_installation": {
|
| 76 |
+
"label": "Public military installations",
|
| 77 |
+
"site_count": 815,
|
| 78 |
+
"event_count": 105250,
|
| 79 |
+
"near_any_counts": {
|
| 80 |
+
"25": 68840,
|
| 81 |
+
"50": 91139,
|
| 82 |
+
"100": 103093
|
| 83 |
+
},
|
| 84 |
+
"event_share_within_50_miles": 0.865929,
|
| 85 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 86 |
+
"interpretation": "descriptive_public_layer_only"
|
| 87 |
+
},
|
| 88 |
+
"public_nuclear_security_enterprise": {
|
| 89 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 90 |
+
"site_count": 8,
|
| 91 |
+
"event_count": 105250,
|
| 92 |
+
"near_any_counts": {
|
| 93 |
+
"25": 2298,
|
| 94 |
+
"50": 4496,
|
| 95 |
+
"100": 9207
|
| 96 |
+
},
|
| 97 |
+
"event_share_within_50_miles": 0.042717,
|
| 98 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 99 |
+
"interpretation": "descriptive_public_layer_only"
|
| 100 |
+
},
|
| 101 |
+
"public_strategic_delivery_installation": {
|
| 102 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 103 |
+
"site_count": 10,
|
| 104 |
+
"event_count": 105250,
|
| 105 |
+
"near_any_counts": {
|
| 106 |
+
"25": 2781,
|
| 107 |
+
"50": 5325,
|
| 108 |
+
"100": 9402
|
| 109 |
+
},
|
| 110 |
+
"event_share_within_50_miles": 0.050594,
|
| 111 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 112 |
+
"interpretation": "descriptive_public_layer_only"
|
| 113 |
+
}
|
| 114 |
+
},
|
| 115 |
+
"what_we_can_claim": [
|
| 116 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 117 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 118 |
+
],
|
| 119 |
+
"what_we_cannot_claim": [
|
| 120 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 121 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 122 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 123 |
+
],
|
| 124 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 125 |
+
}
|
| 126 |
}
|
data/summary_metrics.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"generated_utc": "2026-04-
|
| 3 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 4 |
"assessment": {
|
| 5 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -496,8 +496,8 @@
|
|
| 496 |
"nuclear_median_reports_per_site": 446,
|
| 497 |
"control_median_reports_per_site": 452,
|
| 498 |
"observed_mean_difference": -113.066667,
|
| 499 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 500 |
-
"p_value_two_sided": 0.
|
| 501 |
"permutations": 1000,
|
| 502 |
"seed": 1337
|
| 503 |
},
|
|
@@ -511,8 +511,8 @@
|
|
| 511 |
"nuclear_median_reports_per_site": 1593,
|
| 512 |
"control_median_reports_per_site": 1617,
|
| 513 |
"observed_mean_difference": -62.764912,
|
| 514 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 515 |
-
"p_value_two_sided": 0.
|
| 516 |
"permutations": 1000,
|
| 517 |
"seed": 1337
|
| 518 |
}
|
|
@@ -530,10 +530,118 @@
|
|
| 530 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 531 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 532 |
],
|
| 533 |
-
"statistical_tests_hash": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 534 |
},
|
| 535 |
"plain_language": {
|
| 536 |
-
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls.",
|
| 537 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 538 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 539 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
|
|
|
| 1 |
{
|
| 2 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 3 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 4 |
"assessment": {
|
| 5 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 496 |
"nuclear_median_reports_per_site": 446,
|
| 497 |
"control_median_reports_per_site": 452,
|
| 498 |
"observed_mean_difference": -113.066667,
|
| 499 |
+
"p_value_one_sided_nuclear_greater": 0.85015,
|
| 500 |
+
"p_value_two_sided": 0.290709,
|
| 501 |
"permutations": 1000,
|
| 502 |
"seed": 1337
|
| 503 |
},
|
|
|
|
| 511 |
"nuclear_median_reports_per_site": 1593,
|
| 512 |
"control_median_reports_per_site": 1617,
|
| 513 |
"observed_mean_difference": -62.764912,
|
| 514 |
+
"p_value_one_sided_nuclear_greater": 0.611389,
|
| 515 |
+
"p_value_two_sided": 0.752248,
|
| 516 |
"permutations": 1000,
|
| 517 |
"seed": 1337
|
| 518 |
}
|
|
|
|
| 530 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 531 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 532 |
],
|
| 533 |
+
"statistical_tests_hash": "4d32a1462acc66128ec60c3a39e3cfafcf02ed2223d29ee83810a460021a55fc",
|
| 534 |
+
"public_infrastructure_layers": {
|
| 535 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 536 |
+
"layer_reports": {
|
| 537 |
+
"public_military_installation": {
|
| 538 |
+
"label": "Public military installations",
|
| 539 |
+
"site_count": 815,
|
| 540 |
+
"event_count": 105250,
|
| 541 |
+
"near_any_counts": {
|
| 542 |
+
"25": 68840,
|
| 543 |
+
"50": 91139,
|
| 544 |
+
"100": 103093
|
| 545 |
+
},
|
| 546 |
+
"event_share_within_50_miles": 0.865929,
|
| 547 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 548 |
+
"interpretation": "descriptive_public_layer_only"
|
| 549 |
+
},
|
| 550 |
+
"public_nuclear_security_enterprise": {
|
| 551 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 552 |
+
"site_count": 8,
|
| 553 |
+
"event_count": 105250,
|
| 554 |
+
"near_any_counts": {
|
| 555 |
+
"25": 2298,
|
| 556 |
+
"50": 4496,
|
| 557 |
+
"100": 9207
|
| 558 |
+
},
|
| 559 |
+
"event_share_within_50_miles": 0.042717,
|
| 560 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 561 |
+
"interpretation": "descriptive_public_layer_only"
|
| 562 |
+
},
|
| 563 |
+
"public_strategic_delivery_installation": {
|
| 564 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 565 |
+
"site_count": 10,
|
| 566 |
+
"event_count": 105250,
|
| 567 |
+
"near_any_counts": {
|
| 568 |
+
"25": 2781,
|
| 569 |
+
"50": 5325,
|
| 570 |
+
"100": 9402
|
| 571 |
+
},
|
| 572 |
+
"event_share_within_50_miles": 0.050594,
|
| 573 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 574 |
+
"interpretation": "descriptive_public_layer_only"
|
| 575 |
+
}
|
| 576 |
+
},
|
| 577 |
+
"what_we_can_claim": [
|
| 578 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 579 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 580 |
+
],
|
| 581 |
+
"what_we_cannot_claim": [
|
| 582 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 583 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 584 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 585 |
+
],
|
| 586 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 587 |
+
}
|
| 588 |
+
},
|
| 589 |
+
"public_infrastructure_layers": {
|
| 590 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 591 |
+
"layer_reports": {
|
| 592 |
+
"public_military_installation": {
|
| 593 |
+
"label": "Public military installations",
|
| 594 |
+
"site_count": 815,
|
| 595 |
+
"event_count": 105250,
|
| 596 |
+
"near_any_counts": {
|
| 597 |
+
"25": 68840,
|
| 598 |
+
"50": 91139,
|
| 599 |
+
"100": 103093
|
| 600 |
+
},
|
| 601 |
+
"event_share_within_50_miles": 0.865929,
|
| 602 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 603 |
+
"interpretation": "descriptive_public_layer_only"
|
| 604 |
+
},
|
| 605 |
+
"public_nuclear_security_enterprise": {
|
| 606 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 607 |
+
"site_count": 8,
|
| 608 |
+
"event_count": 105250,
|
| 609 |
+
"near_any_counts": {
|
| 610 |
+
"25": 2298,
|
| 611 |
+
"50": 4496,
|
| 612 |
+
"100": 9207
|
| 613 |
+
},
|
| 614 |
+
"event_share_within_50_miles": 0.042717,
|
| 615 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 616 |
+
"interpretation": "descriptive_public_layer_only"
|
| 617 |
+
},
|
| 618 |
+
"public_strategic_delivery_installation": {
|
| 619 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 620 |
+
"site_count": 10,
|
| 621 |
+
"event_count": 105250,
|
| 622 |
+
"near_any_counts": {
|
| 623 |
+
"25": 2781,
|
| 624 |
+
"50": 5325,
|
| 625 |
+
"100": 9402
|
| 626 |
+
},
|
| 627 |
+
"event_share_within_50_miles": 0.050594,
|
| 628 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 629 |
+
"interpretation": "descriptive_public_layer_only"
|
| 630 |
+
}
|
| 631 |
+
},
|
| 632 |
+
"what_we_can_claim": [
|
| 633 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 634 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 635 |
+
],
|
| 636 |
+
"what_we_cannot_claim": [
|
| 637 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 638 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 639 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 640 |
+
],
|
| 641 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 642 |
},
|
| 643 |
"plain_language": {
|
| 644 |
+
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls, with descriptive public military/NNSA proximity layers.",
|
| 645 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 646 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 647 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
run_manifest.json
CHANGED
|
@@ -2,158 +2,176 @@
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
-
"generated_utc": "2026-04-
|
| 6 |
-
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
-
"artifact_count":
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 19 |
-
"byte_count":
|
| 20 |
-
"content_sha256": "
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 25 |
-
"byte_count":
|
| 26 |
-
"content_sha256": "
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 31 |
-
"byte_count":
|
| 32 |
-
"content_sha256": "
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 37 |
-
"byte_count":
|
| 38 |
-
"content_sha256": "
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 43 |
"byte_count": 413,
|
| 44 |
-
"content_sha256": "
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 49 |
"byte_count": 12282175,
|
| 50 |
-
"content_sha256": "
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
{
|
| 59 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 60 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 61 |
"byte_count": 4333,
|
| 62 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_assessment.json",
|
| 66 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 67 |
"byte_count": 2294,
|
| 68 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 72 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 73 |
"byte_count": 1672,
|
| 74 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 78 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 79 |
"byte_count": 2249,
|
| 80 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_report.md",
|
| 84 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 85 |
"byte_count": 2353,
|
| 86 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 90 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 91 |
"byte_count": 55,
|
| 92 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/matched_controls.csv",
|
| 96 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 97 |
"byte_count": 134142,
|
| 98 |
-
"content_sha256": "
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 102 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 103 |
"byte_count": 17522,
|
| 104 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/nuclear_sites.csv",
|
| 108 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 109 |
"byte_count": 36391,
|
| 110 |
-
"content_sha256": "
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/place_exposure.csv",
|
| 114 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 115 |
"byte_count": 6560269,
|
| 116 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure_top.csv",
|
| 120 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 121 |
"byte_count": 210112,
|
| 122 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 123 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
{
|
| 125 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 126 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 127 |
"byte_count": 88157,
|
| 128 |
-
"content_sha256": "
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 132 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 133 |
-
"byte_count":
|
| 134 |
-
"content_sha256": "
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/statistical_tests.json",
|
| 138 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 139 |
-
"byte_count":
|
| 140 |
-
"content_sha256": "
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/summary_metrics.json",
|
| 144 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 145 |
-
"byte_count":
|
| 146 |
-
"content_sha256": "
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "README.md",
|
| 150 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 151 |
-
"byte_count":
|
| 152 |
-
"content_sha256": "
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "requirements.txt",
|
| 156 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 157 |
"byte_count": 31,
|
| 158 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 159 |
}
|
|
@@ -167,7 +185,7 @@
|
|
| 167 |
"user_explicit_publish_request": true
|
| 168 |
},
|
| 169 |
"metrics": {
|
| 170 |
-
"generated_utc": "2026-04-
|
| 171 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 172 |
"assessment": {
|
| 173 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -664,8 +682,8 @@
|
|
| 664 |
"nuclear_median_reports_per_site": 446,
|
| 665 |
"control_median_reports_per_site": 452,
|
| 666 |
"observed_mean_difference": -113.066667,
|
| 667 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 668 |
-
"p_value_two_sided": 0.
|
| 669 |
"permutations": 1000,
|
| 670 |
"seed": 1337
|
| 671 |
},
|
|
@@ -679,8 +697,8 @@
|
|
| 679 |
"nuclear_median_reports_per_site": 1593,
|
| 680 |
"control_median_reports_per_site": 1617,
|
| 681 |
"observed_mean_difference": -62.764912,
|
| 682 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 683 |
-
"p_value_two_sided": 0.
|
| 684 |
"permutations": 1000,
|
| 685 |
"seed": 1337
|
| 686 |
}
|
|
@@ -698,14 +716,122 @@
|
|
| 698 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 699 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 700 |
],
|
| 701 |
-
"statistical_tests_hash": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 702 |
},
|
| 703 |
"plain_language": {
|
| 704 |
-
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls.",
|
| 705 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 706 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 707 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 708 |
}
|
| 709 |
},
|
| 710 |
-
"manifest_hash": "
|
| 711 |
}
|
|
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 6 |
+
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
+
"artifact_count": 28,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\.gitattributes",
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\app.py",
|
| 19 |
+
"byte_count": 27975,
|
| 20 |
+
"content_sha256": "1b7aca1a4be7d9c7b99debe9ebfd1902b7e9866b9c9797f79cba244a91fefca0"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\artifact_manifest.json",
|
| 25 |
+
"byte_count": 34982,
|
| 26 |
+
"content_sha256": "102c999ba484858087d85c2cb25cb7ecc9ffce87ab82dd38737ab20f83a610cd"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_artifact_integrity_report.json",
|
| 31 |
+
"byte_count": 6330,
|
| 32 |
+
"content_sha256": "6699f1bc4f415db95b81ed87365e59b33ce9ed8b08ab25efbbc2cf3f8e2fbc81"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_dataset_schema.json",
|
| 37 |
+
"byte_count": 6670,
|
| 38 |
+
"content_sha256": "b5b6bd920f3756e3a67a134f1cb68383e051f3c7be08cd0708f5b098a18cfeef"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_source_gaps.csv",
|
| 43 |
"byte_count": 413,
|
| 44 |
+
"content_sha256": "81a0eae872bed6bf10e4e921a02b21df40b6397740c8614673d5df4bccca548f"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_explanatory_features.csv.gz",
|
| 49 |
"byte_count": 12282175,
|
| 50 |
+
"content_sha256": "1cea0b4572be6cc691b29d99b96e161c5a3a54cb26d2f24b7346df89e79ffcc2"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_explanatory_sample.csv",
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
| 58 |
+
{
|
| 59 |
+
"artifact_key": "data/event_public_infrastructure_proximity.csv.gz",
|
| 60 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_public_infrastructure_proximity.csv.gz",
|
| 61 |
+
"byte_count": 12119224,
|
| 62 |
+
"content_sha256": "5d49cb8257a281bfba6e75db2687a04f140aacb36ad24efdb9314e307d7039a2"
|
| 63 |
+
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 66 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_artifact_integrity_report.json",
|
| 67 |
"byte_count": 4333,
|
| 68 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_assessment.json",
|
| 72 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_assessment.json",
|
| 73 |
"byte_count": 2294,
|
| 74 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 78 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_case_cards.md",
|
| 79 |
"byte_count": 1672,
|
| 80 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 84 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_dataset_schema.json",
|
| 85 |
"byte_count": 2249,
|
| 86 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_report.md",
|
| 90 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_report.md",
|
| 91 |
"byte_count": 2353,
|
| 92 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 96 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_source_gaps.csv",
|
| 97 |
"byte_count": 55,
|
| 98 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/matched_controls.csv",
|
| 102 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\matched_controls.csv",
|
| 103 |
"byte_count": 134142,
|
| 104 |
+
"content_sha256": "ea138fedfb54bb7604ab20e05887ed8220da4d5f58258bc7df83004c292f4b6b"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 108 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\missing_geocode_examples.csv",
|
| 109 |
"byte_count": 17522,
|
| 110 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/nuclear_sites.csv",
|
| 114 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\nuclear_sites.csv",
|
| 115 |
"byte_count": 36391,
|
| 116 |
+
"content_sha256": "2c8a90dee628fba16c7fc9e30749149c631e87243bfc75b644d44e4e5dd45ab4"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure.csv",
|
| 120 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\place_exposure.csv",
|
| 121 |
"byte_count": 6560269,
|
| 122 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/place_exposure_top.csv",
|
| 126 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\place_exposure_top.csv",
|
| 127 |
"byte_count": 210112,
|
| 128 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 129 |
},
|
| 130 |
+
{
|
| 131 |
+
"artifact_key": "data/public_infrastructure_site_summary.csv",
|
| 132 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\public_infrastructure_site_summary.csv",
|
| 133 |
+
"byte_count": 516839,
|
| 134 |
+
"content_sha256": "a5cbad352d48f2f4c7bc065a03206d5bf9db19eed173d326d38814b6dae7e400"
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"artifact_key": "data/public_infrastructure_sites.csv",
|
| 138 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\public_infrastructure_sites.csv",
|
| 139 |
+
"byte_count": 739236,
|
| 140 |
+
"content_sha256": "c7a1ed557f1019fea4840d8cfa4beba18f4551a344ccd5a7b76ab04e196509e7"
|
| 141 |
+
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 144 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\site_proximity_summary.csv",
|
| 145 |
"byte_count": 88157,
|
| 146 |
+
"content_sha256": "03757f57fdfa1c863746d0d6d745d0ce0c769e8f1817da5eeceda57c23bd3baa"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 150 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\source_receipts_combined.csv",
|
| 151 |
+
"byte_count": 6847,
|
| 152 |
+
"content_sha256": "e75edef1d2d403d479a845955be06edef813b45508451778a6e9349db277e222"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "data/statistical_tests.json",
|
| 156 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\statistical_tests.json",
|
| 157 |
+
"byte_count": 5442,
|
| 158 |
+
"content_sha256": "0c93475ca711a5fd483bcf241aa4d92b6ada4c9f71c4b2680558b1bee4a7c457"
|
| 159 |
},
|
| 160 |
{
|
| 161 |
"artifact_key": "data/summary_metrics.json",
|
| 162 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\summary_metrics.json",
|
| 163 |
+
"byte_count": 23484,
|
| 164 |
+
"content_sha256": "7345811c4cdaa62f4d05b09869cc93c2cde0da2c51e2df455cafc7f78b4175a5"
|
| 165 |
},
|
| 166 |
{
|
| 167 |
"artifact_key": "README.md",
|
| 168 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\README.md",
|
| 169 |
+
"byte_count": 4116,
|
| 170 |
+
"content_sha256": "1a514da7809a9620e63828581ef84875d4b6f4330c6df816d3910abee7245eb4"
|
| 171 |
},
|
| 172 |
{
|
| 173 |
"artifact_key": "requirements.txt",
|
| 174 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\requirements.txt",
|
| 175 |
"byte_count": 31,
|
| 176 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 177 |
}
|
|
|
|
| 185 |
"user_explicit_publish_request": true
|
| 186 |
},
|
| 187 |
"metrics": {
|
| 188 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 189 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 190 |
"assessment": {
|
| 191 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 682 |
"nuclear_median_reports_per_site": 446,
|
| 683 |
"control_median_reports_per_site": 452,
|
| 684 |
"observed_mean_difference": -113.066667,
|
| 685 |
+
"p_value_one_sided_nuclear_greater": 0.85015,
|
| 686 |
+
"p_value_two_sided": 0.290709,
|
| 687 |
"permutations": 1000,
|
| 688 |
"seed": 1337
|
| 689 |
},
|
|
|
|
| 697 |
"nuclear_median_reports_per_site": 1593,
|
| 698 |
"control_median_reports_per_site": 1617,
|
| 699 |
"observed_mean_difference": -62.764912,
|
| 700 |
+
"p_value_one_sided_nuclear_greater": 0.611389,
|
| 701 |
+
"p_value_two_sided": 0.752248,
|
| 702 |
"permutations": 1000,
|
| 703 |
"seed": 1337
|
| 704 |
}
|
|
|
|
| 716 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 717 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 718 |
],
|
| 719 |
+
"statistical_tests_hash": "4d32a1462acc66128ec60c3a39e3cfafcf02ed2223d29ee83810a460021a55fc",
|
| 720 |
+
"public_infrastructure_layers": {
|
| 721 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 722 |
+
"layer_reports": {
|
| 723 |
+
"public_military_installation": {
|
| 724 |
+
"label": "Public military installations",
|
| 725 |
+
"site_count": 815,
|
| 726 |
+
"event_count": 105250,
|
| 727 |
+
"near_any_counts": {
|
| 728 |
+
"25": 68840,
|
| 729 |
+
"50": 91139,
|
| 730 |
+
"100": 103093
|
| 731 |
+
},
|
| 732 |
+
"event_share_within_50_miles": 0.865929,
|
| 733 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 734 |
+
"interpretation": "descriptive_public_layer_only"
|
| 735 |
+
},
|
| 736 |
+
"public_nuclear_security_enterprise": {
|
| 737 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 738 |
+
"site_count": 8,
|
| 739 |
+
"event_count": 105250,
|
| 740 |
+
"near_any_counts": {
|
| 741 |
+
"25": 2298,
|
| 742 |
+
"50": 4496,
|
| 743 |
+
"100": 9207
|
| 744 |
+
},
|
| 745 |
+
"event_share_within_50_miles": 0.042717,
|
| 746 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 747 |
+
"interpretation": "descriptive_public_layer_only"
|
| 748 |
+
},
|
| 749 |
+
"public_strategic_delivery_installation": {
|
| 750 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 751 |
+
"site_count": 10,
|
| 752 |
+
"event_count": 105250,
|
| 753 |
+
"near_any_counts": {
|
| 754 |
+
"25": 2781,
|
| 755 |
+
"50": 5325,
|
| 756 |
+
"100": 9402
|
| 757 |
+
},
|
| 758 |
+
"event_share_within_50_miles": 0.050594,
|
| 759 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 760 |
+
"interpretation": "descriptive_public_layer_only"
|
| 761 |
+
}
|
| 762 |
+
},
|
| 763 |
+
"what_we_can_claim": [
|
| 764 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 765 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 766 |
+
],
|
| 767 |
+
"what_we_cannot_claim": [
|
| 768 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 769 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 770 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 771 |
+
],
|
| 772 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 773 |
+
}
|
| 774 |
+
},
|
| 775 |
+
"public_infrastructure_layers": {
|
| 776 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 777 |
+
"layer_reports": {
|
| 778 |
+
"public_military_installation": {
|
| 779 |
+
"label": "Public military installations",
|
| 780 |
+
"site_count": 815,
|
| 781 |
+
"event_count": 105250,
|
| 782 |
+
"near_any_counts": {
|
| 783 |
+
"25": 68840,
|
| 784 |
+
"50": 91139,
|
| 785 |
+
"100": 103093
|
| 786 |
+
},
|
| 787 |
+
"event_share_within_50_miles": 0.865929,
|
| 788 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 789 |
+
"interpretation": "descriptive_public_layer_only"
|
| 790 |
+
},
|
| 791 |
+
"public_nuclear_security_enterprise": {
|
| 792 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 793 |
+
"site_count": 8,
|
| 794 |
+
"event_count": 105250,
|
| 795 |
+
"near_any_counts": {
|
| 796 |
+
"25": 2298,
|
| 797 |
+
"50": 4496,
|
| 798 |
+
"100": 9207
|
| 799 |
+
},
|
| 800 |
+
"event_share_within_50_miles": 0.042717,
|
| 801 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 802 |
+
"interpretation": "descriptive_public_layer_only"
|
| 803 |
+
},
|
| 804 |
+
"public_strategic_delivery_installation": {
|
| 805 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 806 |
+
"site_count": 10,
|
| 807 |
+
"event_count": 105250,
|
| 808 |
+
"near_any_counts": {
|
| 809 |
+
"25": 2781,
|
| 810 |
+
"50": 5325,
|
| 811 |
+
"100": 9402
|
| 812 |
+
},
|
| 813 |
+
"event_share_within_50_miles": 0.050594,
|
| 814 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 815 |
+
"interpretation": "descriptive_public_layer_only"
|
| 816 |
+
}
|
| 817 |
+
},
|
| 818 |
+
"what_we_can_claim": [
|
| 819 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 820 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 821 |
+
],
|
| 822 |
+
"what_we_cannot_claim": [
|
| 823 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 824 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 825 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 826 |
+
],
|
| 827 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 828 |
},
|
| 829 |
"plain_language": {
|
| 830 |
+
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls, with descriptive public military/NNSA proximity layers.",
|
| 831 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 832 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 833 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 834 |
}
|
| 835 |
},
|
| 836 |
+
"manifest_hash": "0f8ec40eec731a417a7d79c6a04f0667ac65cbbcdbe078425bd5779335c8f95d"
|
| 837 |
}
|
space_release_manifest.json
CHANGED
|
@@ -2,158 +2,176 @@
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
-
"generated_utc": "2026-04-
|
| 6 |
-
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
-
"artifact_count":
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 19 |
-
"byte_count":
|
| 20 |
-
"content_sha256": "
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 25 |
-
"byte_count":
|
| 26 |
-
"content_sha256": "
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 31 |
-
"byte_count":
|
| 32 |
-
"content_sha256": "
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 37 |
-
"byte_count":
|
| 38 |
-
"content_sha256": "
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 43 |
"byte_count": 413,
|
| 44 |
-
"content_sha256": "
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 49 |
"byte_count": 12282175,
|
| 50 |
-
"content_sha256": "
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
{
|
| 59 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 60 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 61 |
"byte_count": 4333,
|
| 62 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_assessment.json",
|
| 66 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 67 |
"byte_count": 2294,
|
| 68 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 72 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 73 |
"byte_count": 1672,
|
| 74 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 78 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 79 |
"byte_count": 2249,
|
| 80 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_report.md",
|
| 84 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 85 |
"byte_count": 2353,
|
| 86 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 90 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 91 |
"byte_count": 55,
|
| 92 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/matched_controls.csv",
|
| 96 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 97 |
"byte_count": 134142,
|
| 98 |
-
"content_sha256": "
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 102 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 103 |
"byte_count": 17522,
|
| 104 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/nuclear_sites.csv",
|
| 108 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 109 |
"byte_count": 36391,
|
| 110 |
-
"content_sha256": "
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/place_exposure.csv",
|
| 114 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 115 |
"byte_count": 6560269,
|
| 116 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure_top.csv",
|
| 120 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 121 |
"byte_count": 210112,
|
| 122 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 123 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
{
|
| 125 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 126 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 127 |
"byte_count": 88157,
|
| 128 |
-
"content_sha256": "
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 132 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 133 |
-
"byte_count":
|
| 134 |
-
"content_sha256": "
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/statistical_tests.json",
|
| 138 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 139 |
-
"byte_count":
|
| 140 |
-
"content_sha256": "
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/summary_metrics.json",
|
| 144 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 145 |
-
"byte_count":
|
| 146 |
-
"content_sha256": "
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "README.md",
|
| 150 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 151 |
-
"byte_count":
|
| 152 |
-
"content_sha256": "
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "requirements.txt",
|
| 156 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 157 |
"byte_count": 31,
|
| 158 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 159 |
}
|
|
@@ -167,7 +185,7 @@
|
|
| 167 |
"user_explicit_publish_request": true
|
| 168 |
},
|
| 169 |
"metrics": {
|
| 170 |
-
"generated_utc": "2026-04-
|
| 171 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 172 |
"assessment": {
|
| 173 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -664,8 +682,8 @@
|
|
| 664 |
"nuclear_median_reports_per_site": 446,
|
| 665 |
"control_median_reports_per_site": 452,
|
| 666 |
"observed_mean_difference": -113.066667,
|
| 667 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 668 |
-
"p_value_two_sided": 0.
|
| 669 |
"permutations": 1000,
|
| 670 |
"seed": 1337
|
| 671 |
},
|
|
@@ -679,8 +697,8 @@
|
|
| 679 |
"nuclear_median_reports_per_site": 1593,
|
| 680 |
"control_median_reports_per_site": 1617,
|
| 681 |
"observed_mean_difference": -62.764912,
|
| 682 |
-
"p_value_one_sided_nuclear_greater": 0.
|
| 683 |
-
"p_value_two_sided": 0.
|
| 684 |
"permutations": 1000,
|
| 685 |
"seed": 1337
|
| 686 |
}
|
|
@@ -698,14 +716,122 @@
|
|
| 698 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 699 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 700 |
],
|
| 701 |
-
"statistical_tests_hash": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 702 |
},
|
| 703 |
"plain_language": {
|
| 704 |
-
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls.",
|
| 705 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 706 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 707 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 708 |
}
|
| 709 |
},
|
| 710 |
-
"manifest_hash": "
|
| 711 |
}
|
|
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 6 |
+
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_infra_layers_release_candidate_20260430T115849Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
+
"artifact_count": 28,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\.gitattributes",
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\app.py",
|
| 19 |
+
"byte_count": 27975,
|
| 20 |
+
"content_sha256": "1b7aca1a4be7d9c7b99debe9ebfd1902b7e9866b9c9797f79cba244a91fefca0"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\artifact_manifest.json",
|
| 25 |
+
"byte_count": 34982,
|
| 26 |
+
"content_sha256": "102c999ba484858087d85c2cb25cb7ecc9ffce87ab82dd38737ab20f83a610cd"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_artifact_integrity_report.json",
|
| 31 |
+
"byte_count": 6330,
|
| 32 |
+
"content_sha256": "6699f1bc4f415db95b81ed87365e59b33ce9ed8b08ab25efbbc2cf3f8e2fbc81"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_dataset_schema.json",
|
| 37 |
+
"byte_count": 6670,
|
| 38 |
+
"content_sha256": "b5b6bd920f3756e3a67a134f1cb68383e051f3c7be08cd0708f5b098a18cfeef"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\correlation_source_gaps.csv",
|
| 43 |
"byte_count": 413,
|
| 44 |
+
"content_sha256": "81a0eae872bed6bf10e4e921a02b21df40b6397740c8614673d5df4bccca548f"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_explanatory_features.csv.gz",
|
| 49 |
"byte_count": 12282175,
|
| 50 |
+
"content_sha256": "1cea0b4572be6cc691b29d99b96e161c5a3a54cb26d2f24b7346df89e79ffcc2"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_explanatory_sample.csv",
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
| 58 |
+
{
|
| 59 |
+
"artifact_key": "data/event_public_infrastructure_proximity.csv.gz",
|
| 60 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\event_public_infrastructure_proximity.csv.gz",
|
| 61 |
+
"byte_count": 12119224,
|
| 62 |
+
"content_sha256": "5d49cb8257a281bfba6e75db2687a04f140aacb36ad24efdb9314e307d7039a2"
|
| 63 |
+
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 66 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_artifact_integrity_report.json",
|
| 67 |
"byte_count": 4333,
|
| 68 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_assessment.json",
|
| 72 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_assessment.json",
|
| 73 |
"byte_count": 2294,
|
| 74 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 78 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_case_cards.md",
|
| 79 |
"byte_count": 1672,
|
| 80 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 84 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_dataset_schema.json",
|
| 85 |
"byte_count": 2249,
|
| 86 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_report.md",
|
| 90 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_report.md",
|
| 91 |
"byte_count": 2353,
|
| 92 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 96 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\explanatory_source_gaps.csv",
|
| 97 |
"byte_count": 55,
|
| 98 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/matched_controls.csv",
|
| 102 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\matched_controls.csv",
|
| 103 |
"byte_count": 134142,
|
| 104 |
+
"content_sha256": "ea138fedfb54bb7604ab20e05887ed8220da4d5f58258bc7df83004c292f4b6b"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 108 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\missing_geocode_examples.csv",
|
| 109 |
"byte_count": 17522,
|
| 110 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/nuclear_sites.csv",
|
| 114 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\nuclear_sites.csv",
|
| 115 |
"byte_count": 36391,
|
| 116 |
+
"content_sha256": "2c8a90dee628fba16c7fc9e30749149c631e87243bfc75b644d44e4e5dd45ab4"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure.csv",
|
| 120 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\place_exposure.csv",
|
| 121 |
"byte_count": 6560269,
|
| 122 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/place_exposure_top.csv",
|
| 126 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\place_exposure_top.csv",
|
| 127 |
"byte_count": 210112,
|
| 128 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 129 |
},
|
| 130 |
+
{
|
| 131 |
+
"artifact_key": "data/public_infrastructure_site_summary.csv",
|
| 132 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\public_infrastructure_site_summary.csv",
|
| 133 |
+
"byte_count": 516839,
|
| 134 |
+
"content_sha256": "a5cbad352d48f2f4c7bc065a03206d5bf9db19eed173d326d38814b6dae7e400"
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"artifact_key": "data/public_infrastructure_sites.csv",
|
| 138 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\public_infrastructure_sites.csv",
|
| 139 |
+
"byte_count": 739236,
|
| 140 |
+
"content_sha256": "c7a1ed557f1019fea4840d8cfa4beba18f4551a344ccd5a7b76ab04e196509e7"
|
| 141 |
+
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 144 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\site_proximity_summary.csv",
|
| 145 |
"byte_count": 88157,
|
| 146 |
+
"content_sha256": "03757f57fdfa1c863746d0d6d745d0ce0c769e8f1817da5eeceda57c23bd3baa"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 150 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\source_receipts_combined.csv",
|
| 151 |
+
"byte_count": 6847,
|
| 152 |
+
"content_sha256": "e75edef1d2d403d479a845955be06edef813b45508451778a6e9349db277e222"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "data/statistical_tests.json",
|
| 156 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\statistical_tests.json",
|
| 157 |
+
"byte_count": 5442,
|
| 158 |
+
"content_sha256": "0c93475ca711a5fd483bcf241aa4d92b6ada4c9f71c4b2680558b1bee4a7c457"
|
| 159 |
},
|
| 160 |
{
|
| 161 |
"artifact_key": "data/summary_metrics.json",
|
| 162 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\data\\summary_metrics.json",
|
| 163 |
+
"byte_count": 23484,
|
| 164 |
+
"content_sha256": "7345811c4cdaa62f4d05b09869cc93c2cde0da2c51e2df455cafc7f78b4175a5"
|
| 165 |
},
|
| 166 |
{
|
| 167 |
"artifact_key": "README.md",
|
| 168 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\README.md",
|
| 169 |
+
"byte_count": 4116,
|
| 170 |
+
"content_sha256": "1a514da7809a9620e63828581ef84875d4b6f4330c6df816d3910abee7245eb4"
|
| 171 |
},
|
| 172 |
{
|
| 173 |
"artifact_key": "requirements.txt",
|
| 174 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_infra_release_20260430T121600Z\\requirements.txt",
|
| 175 |
"byte_count": 31,
|
| 176 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 177 |
}
|
|
|
|
| 185 |
"user_explicit_publish_request": true
|
| 186 |
},
|
| 187 |
"metrics": {
|
| 188 |
+
"generated_utc": "2026-04-30T12:16:00+00:00",
|
| 189 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 190 |
"assessment": {
|
| 191 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 682 |
"nuclear_median_reports_per_site": 446,
|
| 683 |
"control_median_reports_per_site": 452,
|
| 684 |
"observed_mean_difference": -113.066667,
|
| 685 |
+
"p_value_one_sided_nuclear_greater": 0.85015,
|
| 686 |
+
"p_value_two_sided": 0.290709,
|
| 687 |
"permutations": 1000,
|
| 688 |
"seed": 1337
|
| 689 |
},
|
|
|
|
| 697 |
"nuclear_median_reports_per_site": 1593,
|
| 698 |
"control_median_reports_per_site": 1617,
|
| 699 |
"observed_mean_difference": -62.764912,
|
| 700 |
+
"p_value_one_sided_nuclear_greater": 0.611389,
|
| 701 |
+
"p_value_two_sided": 0.752248,
|
| 702 |
"permutations": 1000,
|
| 703 |
"seed": 1337
|
| 704 |
}
|
|
|
|
| 716 |
"This run cannot evaluate classified military or weapons-site activity unless those sites are represented by public geocoded source rows.",
|
| 717 |
"City-level report geocoding introduces location uncertainty and should not be treated as eyewitness-level coordinates."
|
| 718 |
],
|
| 719 |
+
"statistical_tests_hash": "4d32a1462acc66128ec60c3a39e3cfafcf02ed2223d29ee83810a460021a55fc",
|
| 720 |
+
"public_infrastructure_layers": {
|
| 721 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 722 |
+
"layer_reports": {
|
| 723 |
+
"public_military_installation": {
|
| 724 |
+
"label": "Public military installations",
|
| 725 |
+
"site_count": 815,
|
| 726 |
+
"event_count": 105250,
|
| 727 |
+
"near_any_counts": {
|
| 728 |
+
"25": 68840,
|
| 729 |
+
"50": 91139,
|
| 730 |
+
"100": 103093
|
| 731 |
+
},
|
| 732 |
+
"event_share_within_50_miles": 0.865929,
|
| 733 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 734 |
+
"interpretation": "descriptive_public_layer_only"
|
| 735 |
+
},
|
| 736 |
+
"public_nuclear_security_enterprise": {
|
| 737 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 738 |
+
"site_count": 8,
|
| 739 |
+
"event_count": 105250,
|
| 740 |
+
"near_any_counts": {
|
| 741 |
+
"25": 2298,
|
| 742 |
+
"50": 4496,
|
| 743 |
+
"100": 9207
|
| 744 |
+
},
|
| 745 |
+
"event_share_within_50_miles": 0.042717,
|
| 746 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 747 |
+
"interpretation": "descriptive_public_layer_only"
|
| 748 |
+
},
|
| 749 |
+
"public_strategic_delivery_installation": {
|
| 750 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 751 |
+
"site_count": 10,
|
| 752 |
+
"event_count": 105250,
|
| 753 |
+
"near_any_counts": {
|
| 754 |
+
"25": 2781,
|
| 755 |
+
"50": 5325,
|
| 756 |
+
"100": 9402
|
| 757 |
+
},
|
| 758 |
+
"event_share_within_50_miles": 0.050594,
|
| 759 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 760 |
+
"interpretation": "descriptive_public_layer_only"
|
| 761 |
+
}
|
| 762 |
+
},
|
| 763 |
+
"what_we_can_claim": [
|
| 764 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 765 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 766 |
+
],
|
| 767 |
+
"what_we_cannot_claim": [
|
| 768 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 769 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 770 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 771 |
+
],
|
| 772 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 773 |
+
}
|
| 774 |
+
},
|
| 775 |
+
"public_infrastructure_layers": {
|
| 776 |
+
"layer_stats_version": "nuclear_uap_correlation_index_private_preview_v1:public_infrastructure_layers",
|
| 777 |
+
"layer_reports": {
|
| 778 |
+
"public_military_installation": {
|
| 779 |
+
"label": "Public military installations",
|
| 780 |
+
"site_count": 815,
|
| 781 |
+
"event_count": 105250,
|
| 782 |
+
"near_any_counts": {
|
| 783 |
+
"25": 68840,
|
| 784 |
+
"50": 91139,
|
| 785 |
+
"100": 103093
|
| 786 |
+
},
|
| 787 |
+
"event_share_within_50_miles": 0.865929,
|
| 788 |
+
"mean_reports_per_site_50_miles": 552.0736,
|
| 789 |
+
"interpretation": "descriptive_public_layer_only"
|
| 790 |
+
},
|
| 791 |
+
"public_nuclear_security_enterprise": {
|
| 792 |
+
"label": "Public NNSA / nuclear-security-enterprise sites",
|
| 793 |
+
"site_count": 8,
|
| 794 |
+
"event_count": 105250,
|
| 795 |
+
"near_any_counts": {
|
| 796 |
+
"25": 2298,
|
| 797 |
+
"50": 4496,
|
| 798 |
+
"100": 9207
|
| 799 |
+
},
|
| 800 |
+
"event_share_within_50_miles": 0.042717,
|
| 801 |
+
"mean_reports_per_site_50_miles": 504.375,
|
| 802 |
+
"interpretation": "descriptive_public_layer_only"
|
| 803 |
+
},
|
| 804 |
+
"public_strategic_delivery_installation": {
|
| 805 |
+
"label": "Public strategic delivery installations identified inside the military layer",
|
| 806 |
+
"site_count": 10,
|
| 807 |
+
"event_count": 105250,
|
| 808 |
+
"near_any_counts": {
|
| 809 |
+
"25": 2781,
|
| 810 |
+
"50": 5325,
|
| 811 |
+
"100": 9402
|
| 812 |
+
},
|
| 813 |
+
"event_share_within_50_miles": 0.050594,
|
| 814 |
+
"rows_with_nearest_or_nearby_signal": 105250,
|
| 815 |
+
"interpretation": "descriptive_public_layer_only"
|
| 816 |
+
}
|
| 817 |
+
},
|
| 818 |
+
"what_we_can_claim": [
|
| 819 |
+
"This layer measures public report proximity to public-source military-installation and NNSA site anchors.",
|
| 820 |
+
"The public military layer is official NTAD geometry; the public NNSA layer is official location text anchored to Census place centroids or source-backed public coordinates."
|
| 821 |
+
],
|
| 822 |
+
"what_we_cannot_claim": [
|
| 823 |
+
"This layer does not identify classified activity, weapons storage, operational status, or causation.",
|
| 824 |
+
"The public NNSA layer uses place centroids or public coordinate anchors, not exact facility boundaries.",
|
| 825 |
+
"Descriptive proximity to military infrastructure is not a matched-control causal or attraction test."
|
| 826 |
+
],
|
| 827 |
+
"layer_stats_hash": "cfb6f58a4139401263226f472daa9003eef79c0103405574b6d54571cb1736d6"
|
| 828 |
},
|
| 829 |
"plain_language": {
|
| 830 |
+
"what_it_is": "A public-source evidence surface for testing whether public UAP/UFO report rows cluster around nuclear power plants after simple controls, with descriptive public military/NNSA proximity layers.",
|
| 831 |
"what_it_is_not": "It is not a claim that reports are true, false, alien, aircraft, coordinated, or caused by any one factor.",
|
| 832 |
"headline_finding": "In this evidence surface, public geocoded report rows do not show a nuclear-specific proximity signal after matched non-nuclear power-plant controls.",
|
| 833 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 834 |
}
|
| 835 |
},
|
| 836 |
+
"manifest_hash": "0f8ec40eec731a417a7d79c6a04f0667ac65cbbcdbe078425bd5779335c8f95d"
|
| 837 |
}
|