File size: 15,573 Bytes
0f9a8e2 d96f266 ca4ac1c 0f9a8e2 2c5b88c 0f9a8e2 cca436c 9d58132 31e3087 a6472b6 0f9a8e2 91b502e 627e5d7 7cc9dbe 0f9a8e2 c325020 0f9a8e2 c4212da 08a4bf0 149cadc 0f9a8e2 b7a466b 60a2fc8 d735235 0f9a8e2 697d349 29331c9 0f9a8e2 4173e02 0f9a8e2 94a5118 0f9a8e2 ca4ac1c 2c5b88c 0f9a8e2 91b502e 627e5d7 a07660e ca4ac1c 0f9a8e2 2c5b88c cca436c 9d58132 08a4bf0 c4212da 149cadc 60a2fc8 697d349 d735235 697d349 11fb2f4 0f9a8e2 29331c9 4173e02 0f9a8e2 b871266 0f9a8e2 03b872c 2c5b88c 03b872c 60a2fc8 697d349 2c5b88c 03b872c 697d349 ca4ac1c 697d349 91b502e a07660e 627e5d7 697d349 08a4bf0 91b502e 08a4bf0 cca436c 9d58132 31e3087 d96f266 7cc9dbe 149cadc b7a466b c325020 c4212da d735235 29331c9 94a5118 08a4bf0 0f9a8e2 40360ea 0f9a8e2 40360ea 0f9a8e2 627e5d7 40360ea 0f9a8e2 40360ea 0f9a8e2 40360ea 0f9a8e2 40360ea 0f9a8e2 40360ea 0f9a8e2 03b872c 40360ea 03b872c 627e5d7 697d349 08a4bf0 40360ea 08a4bf0 0f9a8e2 40360ea 0f9a8e2 03b872c 697d349 08a4bf0 0f9a8e2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | #!/usr/bin/env python3
"""Validate parity between the repo and prepared Hugging Face mirrors.
This is a publisher-side check. It compares critical website data, figures, and
validator scripts across the local repo, prepared HF Space bundle, prepared HF
artifact dataset bundle, and prepared HF model bundle before upload.
"""
from __future__ import annotations
import argparse
import hashlib
import json
from datetime import datetime, timezone
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
DEFAULT_HF_ROOT = ROOT.parent / "hf_publish"
DEFAULT_OUTPUT = ROOT / "docs/data/mirror_parity.json"
DATA_FILES = [
"additional_development_directions.json",
"audio_ablation_summary.json",
"artifact_index.json",
"brand_assets.json",
"evidence_contract.json",
"evaluation_protocol.json",
"figure_index.json",
"foundation_model_plan.json",
"live_publication_status.json",
"modality_atlas.json",
"omni_finetune_verified_result.json",
"omni_model_comparison.json",
"project_brief.json",
"project_manifest.json",
"project_packet.json",
"project_status.json",
"publication_audit.json",
"public_surface_qa.json",
"quality_gates.json",
"rendered_site_check.json",
"reproducibility_matrix.json",
"research_roadmap.json",
"research_roadmap_interactive.json",
"research_takeaways.json",
"research_direction_extensions.json",
"research_directions.json",
"scope_claims_audit.json",
"single_episode_explorer.json",
"source_alignment_audit.json",
"summary_metrics.json",
"task_surface_integrity.json",
"task_walkthroughs.json",
"website_integrity.json",
"xperience10m_dataset_card_alignment.json",
]
ASSET_FILES = [
"charts/audio_ablation_delta.svg",
"brand/xperience10m-logo-apple-touch.png",
"brand/xperience10m-logo-favicon-32.png",
"brand/xperience10m-logo-favicon-64.png",
"brand/xperience10m-logo-mark.png",
"brand/xperience10m-logo-mark-192.png",
"brand/xperience10m-logo-mark-512.png",
"brand/xperience10m-logo-social-card.png",
"task_suite_infographic.png",
"pipeline_diagram.png",
"task_architectures.png",
"modalities/audio.png",
"modalities/depth.jpg",
"modalities/inertial.png",
"modalities/language.png",
"modalities/motion_capture.png",
"modalities/pose_slam.png",
"modalities/video.jpg",
]
SCRIPT_FILES = [
"omni/analyze_qwen3_omni_errors.py",
"omni/build_omni_model_comparison.py",
"omni/prepare_qwen3_lora_hf_package.py",
"omni/run_128_task_baselines.py",
"audio_ablation_and_raw_upgrade.py",
"build_artifact_index.py",
"build_brand_assets.py",
"build_evaluation_protocol.py",
"build_figure_index.py",
"build_quality_gates.py",
"build_public_surface_qa.py",
"build_rendered_site_check.py",
"build_interactive_research_roadmap.py",
"build_single_episode_explorer.py",
"build_research_takeaways.py",
"single_episode_diagnostics.py",
"verify_live_publication.py",
"validate_mirror_parity.py",
"validate_publication_package.py",
"validate_scope_claims.py",
"validate_source_alignment.py",
"validate_task_surface.py",
"validate_website_integrity.py",
"publish_hf_bundles.py",
]
WEBSITE_FILES = [
"apple-touch-icon.png",
"favicon.png",
"index.html",
"research_roadmap.html",
"single_episode_explorer.html",
"site.webmanifest",
]
RESULT_FILES = [
"audio_ablation/AUDIO_ABLATION_SUMMARY.md",
"audio_ablation/audio_ablation_metrics.csv",
"audio_ablation/audio_ablation_summary.json",
"audio_ablation/audio_delta_summary.csv",
"audio_ablation/raw_logmel_fisheye_cam0_sr16000_mels64_fft512_hop160.npz",
"single_episode_diagnostics/provenance.json",
"single_episode_diagnostics/README.md",
"single_episode_diagnostics/modality_ablation/ablation_metrics.csv",
"single_episode_diagnostics/modality_ablation/ablation_summary.json",
"single_episode_diagnostics/object_labels/object_vocab.json",
"single_episode_diagnostics/object_labels/window_object_labels.csv",
"single_episode_diagnostics/timeline_overlay/timeline_overlay.csv",
"single_episode_diagnostics/alignment_stress/alignment_shift_metrics.csv",
"single_episode_diagnostics/alignment_stress/alignment_stress_summary.json",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/ERROR_ANALYSIS.md",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/error_analysis_summary.json",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/episode_error_analysis.csv",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/action_family_error_analysis.csv",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/train_seen_error_analysis.csv",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/missing_modality_error_analysis.csv",
"omni_finetune/verified_public/xperience10m_qwen3_omni_128ep_96train_16val_16test_valmon_20260605_eval/analysis/object_category_error_analysis.csv",
"omni_finetune/multi_episode_128_task_baselines/BASELINE_ALIGNMENT_REPORT.md",
"omni_finetune/multi_episode_128_task_baselines/summary_report.json",
"omni_finetune/multi_episode_128_task_baselines/task_metrics.csv",
"omni_finetune/OMNI_MODEL_COMPARISON.md",
"omni_finetune/HF_UPLOAD.md",
"omni_finetune/verified_public/xperience10m_cosmos3_nano_128ep_future_window_h5_compat_adapter_eval_test_full/verified_result_summary.json",
"omni_finetune/verified_public/xperience10m_cosmos3_nano_128ep_future_window_h5_compat_adapter_eval_test_full/PUBLIC_RESULT_SUMMARY.md",
"omni_finetune/verified_public/xperience10m_cosmos3_nano_128ep_future_window_h5_compat_adapter_eval_test_full/eval/metrics.json",
"omni_finetune/verified_public/xperience10m_cosmos3_nano_128ep_future_window_h5_compat_adapter_eval_test_full/eval/RUN_REPORT.md",
]
DOC_FILES = [
"ARTIFACT_GUIDE.md",
"OMNI_MODEL_EXTENSION_CONTRACT.md",
"QUALITY_GATES.md",
"EVALUATION_PROTOCOL.md",
"FIGURE_INDEX.md",
"FOUNDATION_MODEL_PLAN.md",
"ADDITIONAL_DEVELOPMENT_DIRECTIONS.md",
"PROJECT_BRIEF.md",
"RENDERED_SITE_CHECK.md",
"RESEARCH_ROADMAP.md",
"PROJECT_STATUS.md",
"PUBLIC_SURFACE_QA.md",
"RESEARCH_TAKEAWAYS.md",
"SOURCE_ALIGNMENT_AUDIT.md",
"XPERIENCE10M_DATASET_CARD_ALIGNMENT.md",
]
def sha256(path: Path) -> str:
digest = hashlib.sha256()
with path.open("rb") as handle:
for chunk in iter(lambda: handle.read(1024 * 1024), b""):
digest.update(chunk)
return digest.hexdigest()
def display_path(path: Path, hf_root: Path) -> str:
resolved = path.resolve()
bases = [
("hf_space", hf_root / "space"),
("hf_artifacts", hf_root / "artifacts"),
("hf_model", hf_root / "model"),
("repo", ROOT),
("hf_publish", hf_root),
]
for label, base in bases:
try:
return f"{label}:{resolved.relative_to(base.resolve()).as_posix()}"
except ValueError:
continue
return path.name
def file_record(path: Path, hf_root: Path) -> dict:
record = {
"path": display_path(path, hf_root),
"exists": path.exists(),
}
if path.exists() and path.is_file():
record["bytes"] = path.stat().st_size
record["sha256"] = sha256(path)
else:
record["bytes"] = 0
record["sha256"] = None
return record
def verified_public_result_files() -> list[str]:
"""Return every public-safe file from verified model packages.
Verified packages are already sanitized by the package audit; mirroring the
whole package prevents final model results from being silently omitted when a
new run lands under results/omni_finetune/verified_public.
"""
verified_root = ROOT / "results/omni_finetune/verified_public"
if not verified_root.exists():
return []
files: list[str] = []
for path in verified_root.rglob("*"):
if not path.is_file():
continue
files.append(path.relative_to(ROOT / "results").as_posix())
return sorted(files)
def parity_group(name: str, local_path: Path, mirrors: dict[str, Path], hf_root: Path) -> dict:
local = file_record(local_path, hf_root)
mirror_records = {surface: file_record(path, hf_root) for surface, path in mirrors.items()}
failures = []
if not local["exists"]:
failures.append({"surface": "repo", "kind": "missing", "path": local["path"]})
for surface, record in mirror_records.items():
if not record["exists"]:
failures.append({"surface": surface, "kind": "missing", "path": record["path"]})
continue
if local["exists"] and record["sha256"] != local["sha256"]:
failures.append(
{
"surface": surface,
"kind": "hash_mismatch",
"path": record["path"],
"expected_sha256": local["sha256"],
"actual_sha256": record["sha256"],
}
)
return {
"name": name,
"status": "pass" if not failures else "fail",
"local": local,
"mirrors": mirror_records,
"failures": failures,
}
def build_report(hf_root: Path) -> dict:
groups = []
for filename in DATA_FILES:
groups.append(
parity_group(
f"data/{filename}",
ROOT / "docs/data" / filename,
{
"hf_space": hf_root / "space/data" / filename,
"hf_artifacts": hf_root / "artifacts/docs/data" / filename,
"hf_model": hf_root / "model/metrics" / filename,
},
hf_root,
)
)
for filename in ASSET_FILES:
groups.append(
parity_group(
f"assets/{filename}",
ROOT / "docs/assets" / filename,
{
"hf_space": hf_root / "space/assets" / filename,
"hf_artifacts_docs": hf_root / "artifacts/docs/assets" / filename,
"hf_artifacts_card": hf_root / "artifacts/assets" / filename,
"hf_model": hf_root / "model/assets" / filename,
},
hf_root,
)
)
for filename in SCRIPT_FILES:
groups.append(
parity_group(
f"scripts/{filename}",
ROOT / "scripts" / filename,
{
"hf_artifacts": hf_root / "artifacts/scripts" / filename,
"hf_model": hf_root / "model/scripts" / filename,
},
hf_root,
)
)
for filename in WEBSITE_FILES:
groups.append(
parity_group(
f"website/{filename}",
ROOT / "docs" / filename,
{
"hf_space": hf_root / "space" / filename,
"hf_artifacts_docs": hf_root / "artifacts/docs" / filename,
},
hf_root,
)
)
result_files = sorted(set(RESULT_FILES) | set(verified_public_result_files()))
for filename in result_files:
groups.append(
parity_group(
f"results/{filename}",
ROOT / "results" / filename,
{
"hf_space": hf_root / "space/results" / filename,
"hf_artifacts": hf_root / "artifacts/results" / filename,
"hf_model": hf_root / "model/results" / filename,
},
hf_root,
)
)
for filename in DOC_FILES:
groups.append(
parity_group(
f"docs/{filename}",
ROOT / filename,
{
"hf_space": hf_root / "space" / filename,
"hf_artifacts": hf_root / "artifacts" / filename,
"hf_model": hf_root / "model" / filename,
},
hf_root,
)
)
failures = [
{"group": group["name"], **failure}
for group in groups
for failure in group["failures"]
]
by_surface: dict[str, int] = {}
for failure in failures:
by_surface[failure["surface"]] = by_surface.get(failure["surface"], 0) + 1
return {
"status": "pass" if not failures else "fail",
"generated_at_utc": datetime.now(timezone.utc).isoformat(timespec="seconds"),
"hf_root": "hf_publish",
"summary": {
"group_count": len(groups),
"failure_count": len(failures),
"failures_by_surface": by_surface,
},
"checks": [
{
"name": "repo_hf_space_artifact_model_data_parity",
"status": "pass"
if not any(failure["group"].startswith("data/") for failure in failures)
else "fail",
},
{
"name": "repo_hf_visual_asset_parity",
"status": "pass"
if not any(failure["group"].startswith("assets/") for failure in failures)
else "fail",
},
{
"name": "repo_hf_validator_script_parity",
"status": "pass"
if not any(failure["group"].startswith("scripts/") for failure in failures)
else "fail",
},
{
"name": "repo_hf_website_html_parity",
"status": "pass"
if not any(failure["group"].startswith("website/") for failure in failures)
else "fail",
},
{
"name": "repo_hf_diagnostic_result_parity",
"status": "pass"
if not any(failure["group"].startswith("results/") for failure in failures)
else "fail",
},
{
"name": "repo_hf_quality_doc_parity",
"status": "pass"
if not any(failure["group"].startswith("docs/") for failure in failures)
else "fail",
},
],
"groups": groups,
"failures": failures,
}
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("--hf-root", type=Path, default=DEFAULT_HF_ROOT)
parser.add_argument("--output", type=Path, default=DEFAULT_OUTPUT)
args = parser.parse_args()
report = build_report(args.hf_root.resolve())
args.output.parent.mkdir(parents=True, exist_ok=True)
args.output.write_text(json.dumps(report, indent=2) + "\n", encoding="utf-8")
print(f"{report['status'].upper()}: wrote {args.output}")
if report["status"] != "pass":
for failure in report["failures"][:40]:
print(f"- {failure['group']}: {failure['surface']} {failure['kind']} {failure['path']}")
if len(report["failures"]) > 40:
print(f"- ... {len(report['failures']) - 40} more failures")
return 1
return 0
if __name__ == "__main__":
raise SystemExit(main())
|