Datasets:
Add files using upload-large-folder tool
Browse files- QUALITY_GATES.md +2 -0
- README.md +2 -1
- TASK_METHOD_20_GAP_AUDIT.md +1 -1
- data/artifact_index.json +67 -34
- data/episode128_task_model_radar.json +11 -11
- data/public_surface_qa.json +8 -8
- data/publication_audit.json +12 -9
- data/task_method_20_gap_audit.json +1 -1
- data/task_method_20_source_audit.json +17 -0
- data/unified_task_model_radar.json +11 -11
- data/website_integrity.json +11 -6
- docs/data/artifact_index.json +67 -34
- docs/data/episode128_task_model_radar.json +11 -11
- docs/data/mirror_parity.json +317 -243
- docs/data/public_surface_qa.json +8 -8
- docs/data/publication_audit.json +12 -9
- docs/data/quality_gates.json +13 -1
- docs/data/single_episode_task_model_radar.json +1 -1
- docs/data/task_method_20_gap_audit.json +1 -1
- docs/data/task_method_20_result_matrix.json +6 -6
- docs/data/task_method_20_source_audit.json +17 -0
- docs/data/unified_task_model_radar.json +11 -11
- docs/data/website_integrity.json +11 -6
- results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md +6 -10
- results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json +9 -15
- scripts/build_artifact_index.py +24 -0
- scripts/build_quality_gates.py +9 -0
- scripts/build_unified_task_model_radar.py +5 -0
- scripts/omni/eval_cosmos3_super_future_task_probes.py +17 -8
- scripts/omni/eval_qwen3_omni_future_task_probes.py +27 -8
- scripts/omni/merge_cosmos3_super_future_task_probe_shards.py +18 -1
- scripts/omni/merge_qwen3_omni_future_task_probe_shards.py +18 -1
- scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py +18 -1
- scripts/omni/run_128_task_baselines.py +1 -3
- scripts/omni/score_model_output_probes.py +35 -11
- scripts/omni/train_cosmos3_super_forward_dynamics_lora.py +2 -1
- scripts/sync_hf_publish_mirrors.py +17 -4
- scripts/validate_mirror_parity.py +2 -0
- scripts/validate_publication_package.py +3 -0
- scripts/validate_task_method_matrix_sources.py +211 -0
- scripts/verify_live_publication.py +11 -0
QUALITY_GATES.md
CHANGED
|
@@ -18,6 +18,7 @@ These checks cover public packaging, project status wording, mirror parity, and
|
|
| 18 |
| Rendered website check | `python scripts/build_rendered_site_check.py --input /tmp/xperience_rendered_site_observations.json` | `docs/data/rendered_site_check.json` | `pass` | The local rendered site cannot load, switch tabs, deep-link to the walkthrough, update player controls, or stay console-clean. |
|
| 19 |
| Task surface integrity | `python scripts/validate_task_surface.py` | `docs/data/task_surface_integrity.json` | `pass` | Task cards expose raw artifact ids, human-readable task names drift, modality thumbnails are missing, or the interactive task player is not wired to the generated JSON. |
|
| 20 |
| Evaluation protocol | `python scripts/build_evaluation_protocol.py` | `docs/data/evaluation_protocol.json` | `pass` | Windowing, split policy, leakage controls, task metrics, or current limitations are not explicit. |
|
|
|
|
| 21 |
| Figure index | `python scripts/build_figure_index.py` | `docs/data/figure_index.json` | `pass` | Public figures, charts, or modality thumbnails are missing, unreadable, or lack source-script provenance. |
|
| 22 |
| Brand assets | `python scripts/build_brand_assets.py` | `docs/data/brand_assets.json` | `pass` | The generated logo system, favicon, social card, or app icons are missing or not reproducibly packaged. |
|
| 23 |
| Release-check manifest | `python scripts/build_quality_gates.py` | `docs/data/quality_gates.json` | `pass` | A public reader cannot see the current release state in one place. |
|
|
@@ -40,6 +41,7 @@ These checks cover public packaging, project status wording, mirror parity, and
|
|
| 40 |
python scripts/validate_scope_claims.py
|
| 41 |
python scripts/validate_source_alignment.py
|
| 42 |
python scripts/build_evaluation_protocol.py
|
|
|
|
| 43 |
python scripts/build_brand_assets.py
|
| 44 |
python scripts/build_figure_index.py
|
| 45 |
python scripts/validate_website_integrity.py
|
|
|
|
| 18 |
| Rendered website check | `python scripts/build_rendered_site_check.py --input /tmp/xperience_rendered_site_observations.json` | `docs/data/rendered_site_check.json` | `pass` | The local rendered site cannot load, switch tabs, deep-link to the walkthrough, update player controls, or stay console-clean. |
|
| 19 |
| Task surface integrity | `python scripts/validate_task_surface.py` | `docs/data/task_surface_integrity.json` | `pass` | Task cards expose raw artifact ids, human-readable task names drift, modality thumbnails are missing, or the interactive task player is not wired to the generated JSON. |
|
| 20 |
| Evaluation protocol | `python scripts/build_evaluation_protocol.py` | `docs/data/evaluation_protocol.json` | `pass` | Windowing, split policy, leakage controls, task metrics, or current limitations are not explicit. |
|
| 21 |
+
| Task-method source audit | `python scripts/validate_task_method_matrix_sources.py` | `docs/data/task_method_20_source_audit.json` | `pass` | A scored 20-task matrix cell points to a JSON metric source that does not contain the same metric value. |
|
| 22 |
| Figure index | `python scripts/build_figure_index.py` | `docs/data/figure_index.json` | `pass` | Public figures, charts, or modality thumbnails are missing, unreadable, or lack source-script provenance. |
|
| 23 |
| Brand assets | `python scripts/build_brand_assets.py` | `docs/data/brand_assets.json` | `pass` | The generated logo system, favicon, social card, or app icons are missing or not reproducibly packaged. |
|
| 24 |
| Release-check manifest | `python scripts/build_quality_gates.py` | `docs/data/quality_gates.json` | `pass` | A public reader cannot see the current release state in one place. |
|
|
|
|
| 41 |
python scripts/validate_scope_claims.py
|
| 42 |
python scripts/validate_source_alignment.py
|
| 43 |
python scripts/build_evaluation_protocol.py
|
| 44 |
+
python scripts/validate_task_method_matrix_sources.py
|
| 45 |
python scripts/build_brand_assets.py
|
| 46 |
python scripts/build_figure_index.py
|
| 47 |
python scripts/validate_website_integrity.py
|
README.md
CHANGED
|
@@ -67,7 +67,8 @@ links to tasks 13-20. The unified radar chart is published as
|
|
| 67 |
`docs/assets/charts/unified_task_model_radar.svg` with values in
|
| 68 |
`docs/data/unified_task_model_radar.json`; the 9-method by 20-task
|
| 69 |
completion matrix is complete at `180/180` scored method-task records and is published in `docs/data/task_method_20_result_matrix.json`, with the explicit
|
| 70 |
-
audit in `docs/data/task_method_20_gap_audit.json`
|
|
|
|
| 71 |
`docs/assets/charts/single_episode_task_model_radar.svg` and
|
| 72 |
`docs/assets/charts/episode128_task_model_radar.svg`.
|
| 73 |
|
|
|
|
| 67 |
`docs/assets/charts/unified_task_model_radar.svg` with values in
|
| 68 |
`docs/data/unified_task_model_radar.json`; the 9-method by 20-task
|
| 69 |
completion matrix is complete at `180/180` scored method-task records and is published in `docs/data/task_method_20_result_matrix.json`, with the explicit
|
| 70 |
+
audit in `docs/data/task_method_20_gap_audit.json` and source-value audit in
|
| 71 |
+
`docs/data/task_method_20_source_audit.json`. Split radars are in
|
| 72 |
`docs/assets/charts/single_episode_task_model_radar.svg` and
|
| 73 |
`docs/assets/charts/episode128_task_model_radar.svg`.
|
| 74 |
|
TASK_METHOD_20_GAP_AUDIT.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Task Method 20-Result Completion Audit
|
| 2 |
|
| 3 |
-
Generated: `2026-06-
|
| 4 |
|
| 5 |
This audit is the explicit completion ledger for the 9-method x 20-task result
|
| 6 |
matrix. The current public matrix is complete at 180/180 scored records while
|
|
|
|
| 1 |
# Task Method 20-Result Completion Audit
|
| 2 |
|
| 3 |
+
Generated: `2026-06-20T20:38:59+00:00`
|
| 4 |
|
| 5 |
This audit is the explicit completion ledger for the 9-method x 20-task result
|
| 6 |
matrix. The current public matrix is complete at 180/180 scored records while
|
data/artifact_index.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Task Suite Artifact Index",
|
| 3 |
-
"generated_at_utc": "2026-06-
|
| 4 |
"status": "pass",
|
| 5 |
-
"artifact_count":
|
| 6 |
"missing": [],
|
| 7 |
"by_kind": {
|
| 8 |
"project_path": 18,
|
|
@@ -10,12 +10,12 @@
|
|
| 10 |
"visual_asset_source": 3,
|
| 11 |
"scaleup_contract": 7,
|
| 12 |
"scaleup_status": 52,
|
| 13 |
-
"publication_workflow":
|
| 14 |
"reproducibility": 4,
|
| 15 |
"project_scope": 1,
|
| 16 |
"source_alignment": 5,
|
| 17 |
-
"evaluation_protocol":
|
| 18 |
-
"website_data":
|
| 19 |
"generated_figure": 7,
|
| 20 |
"visualization_builder": 1,
|
| 21 |
"model_result": 5,
|
|
@@ -301,8 +301,8 @@
|
|
| 301 |
"surface": "repo_hf",
|
| 302 |
"shows": "Runs simple metadata and neural MLP baselines on the same selected 96/16/16 episode split used by the Qwen3-Omni diagnostic pilot.",
|
| 303 |
"exists": true,
|
| 304 |
-
"bytes":
|
| 305 |
-
"sha256": "
|
| 306 |
},
|
| 307 |
{
|
| 308 |
"id": "task_suite_enhancement_128",
|
|
@@ -610,7 +610,7 @@
|
|
| 610 |
"shows": "Machine-readable source-alignment pass/fail check for repo, website, and HF surfaces.",
|
| 611 |
"exists": true,
|
| 612 |
"bytes": 4432,
|
| 613 |
-
"sha256": "
|
| 614 |
},
|
| 615 |
{
|
| 616 |
"id": "source_alignment_validator",
|
|
@@ -730,8 +730,8 @@
|
|
| 730 |
"surface": "website_hf",
|
| 731 |
"shows": "Stores normalized 20-axis radar values, raw task metrics, Qwen3/Cosmos overlay mappings, branch-card caveats, proxy flags, and source artifacts.",
|
| 732 |
"exists": true,
|
| 733 |
-
"bytes":
|
| 734 |
-
"sha256": "
|
| 735 |
},
|
| 736 |
{
|
| 737 |
"id": "single_episode_task_model_radar_json",
|
|
@@ -742,7 +742,7 @@
|
|
| 742 |
"shows": "Machine-readable split radar for the one-episode Minimal and Neural MLP baselines, both scored on all 20 task contracts.",
|
| 743 |
"exists": true,
|
| 744 |
"bytes": 51097,
|
| 745 |
-
"sha256": "
|
| 746 |
},
|
| 747 |
{
|
| 748 |
"id": "episode128_task_model_radar_json",
|
|
@@ -752,8 +752,8 @@
|
|
| 752 |
"surface": "website_hf",
|
| 753 |
"shows": "Machine-readable split radar for selected 128-episode metadata/raw baselines and verified Qwen3/Cosmos branches, now complete at 140/140 scored rows with proxy notes retained.",
|
| 754 |
"exists": true,
|
| 755 |
-
"bytes":
|
| 756 |
-
"sha256": "
|
| 757 |
},
|
| 758 |
{
|
| 759 |
"id": "task_method_20_result_matrix_json",
|
|
@@ -763,8 +763,8 @@
|
|
| 763 |
"surface": "website_hf",
|
| 764 |
"shows": "Machine-readable 9-method by 20-task matrix where every method has 20 records and the current release is complete at 180/180 scored rows.",
|
| 765 |
"exists": true,
|
| 766 |
-
"bytes":
|
| 767 |
-
"sha256": "
|
| 768 |
},
|
| 769 |
{
|
| 770 |
"id": "task_method_20_result_matrix",
|
|
@@ -786,7 +786,7 @@
|
|
| 786 |
"shows": "Machine-readable 180-record completion ledger with numeric scores, proxy flags, explicit status reasons, and source artifacts.",
|
| 787 |
"exists": true,
|
| 788 |
"bytes": 8500,
|
| 789 |
-
"sha256": "
|
| 790 |
},
|
| 791 |
{
|
| 792 |
"id": "task_method_20_gap_audit",
|
|
@@ -797,7 +797,29 @@
|
|
| 797 |
"shows": "Reader-facing ledger confirming 180/180 scored method-task cells and listing the six compact-proxy records separately.",
|
| 798 |
"exists": true,
|
| 799 |
"bytes": 3417,
|
| 800 |
-
"sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 801 |
},
|
| 802 |
{
|
| 803 |
"id": "unified_task_model_radar_chart",
|
|
@@ -840,8 +862,8 @@
|
|
| 840 |
"surface": "repo_hf",
|
| 841 |
"shows": "Regenerates the direction-aware radar chart and machine-readable metric overlay JSON.",
|
| 842 |
"exists": true,
|
| 843 |
-
"bytes":
|
| 844 |
-
"sha256": "
|
| 845 |
},
|
| 846 |
{
|
| 847 |
"id": "task_method_20_gap_audit_builder",
|
|
@@ -854,6 +876,17 @@
|
|
| 854 |
"bytes": 10295,
|
| 855 |
"sha256": "e2a3b41d3cca6efee7076b68c35693a4c53f5f2549e2eecbf035b98a717a3f65"
|
| 856 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 857 |
{
|
| 858 |
"id": "all_task_model_scoring_waiter",
|
| 859 |
"title": "All-task model scoring guarded waiter",
|
|
@@ -873,8 +906,8 @@
|
|
| 873 |
"surface": "repo_hf",
|
| 874 |
"shows": "Checks whether Qwen3/Cosmos branches have train, validation, and test prediction files before extending model overlays to all 20 task contracts.",
|
| 875 |
"exists": true,
|
| 876 |
-
"bytes":
|
| 877 |
-
"sha256": "
|
| 878 |
},
|
| 879 |
{
|
| 880 |
"id": "model_output_probe_script",
|
|
@@ -884,8 +917,8 @@
|
|
| 884 |
"surface": "repo_hf",
|
| 885 |
"shows": "Audits model-output split availability and writes a readiness report without assigning new numeric task scores.",
|
| 886 |
"exists": true,
|
| 887 |
-
"bytes":
|
| 888 |
-
"sha256": "
|
| 889 |
},
|
| 890 |
{
|
| 891 |
"id": "existing_model_output_task_probe",
|
|
@@ -1104,8 +1137,8 @@
|
|
| 1104 |
"surface": "repo_hf",
|
| 1105 |
"shows": "Lists the automated and post-publish checks used to keep the release current.",
|
| 1106 |
"exists": true,
|
| 1107 |
-
"bytes":
|
| 1108 |
-
"sha256": "
|
| 1109 |
},
|
| 1110 |
{
|
| 1111 |
"id": "quality_gate_manifest",
|
|
@@ -1115,8 +1148,8 @@
|
|
| 1115 |
"surface": "website_hf",
|
| 1116 |
"shows": "Machine-readable release-check summary for validators, mirrors, and public project surfaces.",
|
| 1117 |
"exists": true,
|
| 1118 |
-
"bytes":
|
| 1119 |
-
"sha256": "
|
| 1120 |
},
|
| 1121 |
{
|
| 1122 |
"id": "public_surface_qa",
|
|
@@ -1252,8 +1285,8 @@
|
|
| 1252 |
"surface": "repo",
|
| 1253 |
"shows": "Fetches the published GitHub/HF URLs and compares live hashes and public-card markers against the release assets.",
|
| 1254 |
"exists": true,
|
| 1255 |
-
"bytes":
|
| 1256 |
-
"sha256": "
|
| 1257 |
},
|
| 1258 |
{
|
| 1259 |
"id": "reproducibility_contract",
|
|
@@ -1285,8 +1318,8 @@
|
|
| 1285 |
"surface": "repo_hf",
|
| 1286 |
"shows": "Generates the selective artifact catalog from local files.",
|
| 1287 |
"exists": true,
|
| 1288 |
-
"bytes":
|
| 1289 |
-
"sha256": "
|
| 1290 |
},
|
| 1291 |
{
|
| 1292 |
"id": "publication_audit",
|
|
@@ -1297,7 +1330,7 @@
|
|
| 1297 |
"volatile": true,
|
| 1298 |
"shows": "Confirms public bundles exclude raw data, caches, heavy archives, and credential text.",
|
| 1299 |
"exists": true,
|
| 1300 |
-
"bytes":
|
| 1301 |
"hash_policy": "existence_and_size_only"
|
| 1302 |
},
|
| 1303 |
{
|
|
@@ -1321,7 +1354,7 @@
|
|
| 1321 |
"volatile": true,
|
| 1322 |
"shows": "Confirms prepared GitHub/HF Space/artifact/model mirrors share the same critical data, figure, website HTML, and validator files.",
|
| 1323 |
"exists": true,
|
| 1324 |
-
"bytes":
|
| 1325 |
"hash_policy": "existence_and_size_only"
|
| 1326 |
},
|
| 1327 |
{
|
|
@@ -1333,7 +1366,7 @@
|
|
| 1333 |
"volatile": true,
|
| 1334 |
"shows": "Confirms local website links, anchors, JSON data files, and referenced images resolve.",
|
| 1335 |
"exists": true,
|
| 1336 |
-
"bytes":
|
| 1337 |
"hash_policy": "existence_and_size_only"
|
| 1338 |
},
|
| 1339 |
{
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Task Suite Artifact Index",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:48:09+00:00",
|
| 4 |
"status": "pass",
|
| 5 |
+
"artifact_count": 225,
|
| 6 |
"missing": [],
|
| 7 |
"by_kind": {
|
| 8 |
"project_path": 18,
|
|
|
|
| 10 |
"visual_asset_source": 3,
|
| 11 |
"scaleup_contract": 7,
|
| 12 |
"scaleup_status": 52,
|
| 13 |
+
"publication_workflow": 7,
|
| 14 |
"reproducibility": 4,
|
| 15 |
"project_scope": 1,
|
| 16 |
"source_alignment": 5,
|
| 17 |
+
"evaluation_protocol": 9,
|
| 18 |
+
"website_data": 11,
|
| 19 |
"generated_figure": 7,
|
| 20 |
"visualization_builder": 1,
|
| 21 |
"model_result": 5,
|
|
|
|
| 301 |
"surface": "repo_hf",
|
| 302 |
"shows": "Runs simple metadata and neural MLP baselines on the same selected 96/16/16 episode split used by the Qwen3-Omni diagnostic pilot.",
|
| 303 |
"exists": true,
|
| 304 |
+
"bytes": 74316,
|
| 305 |
+
"sha256": "164c908bee1d4a6e0db344692833787582e45317b240ef5afbfbdb609a5175e6"
|
| 306 |
},
|
| 307 |
{
|
| 308 |
"id": "task_suite_enhancement_128",
|
|
|
|
| 610 |
"shows": "Machine-readable source-alignment pass/fail check for repo, website, and HF surfaces.",
|
| 611 |
"exists": true,
|
| 612 |
"bytes": 4432,
|
| 613 |
+
"sha256": "c916b18a11917e46e8561520cf2307f190c671c82e710ebd0f3522ec8a4be2bd"
|
| 614 |
},
|
| 615 |
{
|
| 616 |
"id": "source_alignment_validator",
|
|
|
|
| 730 |
"surface": "website_hf",
|
| 731 |
"shows": "Stores normalized 20-axis radar values, raw task metrics, Qwen3/Cosmos overlay mappings, branch-card caveats, proxy flags, and source artifacts.",
|
| 732 |
"exists": true,
|
| 733 |
+
"bytes": 228799,
|
| 734 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 735 |
},
|
| 736 |
{
|
| 737 |
"id": "single_episode_task_model_radar_json",
|
|
|
|
| 742 |
"shows": "Machine-readable split radar for the one-episode Minimal and Neural MLP baselines, both scored on all 20 task contracts.",
|
| 743 |
"exists": true,
|
| 744 |
"bytes": 51097,
|
| 745 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 746 |
},
|
| 747 |
{
|
| 748 |
"id": "episode128_task_model_radar_json",
|
|
|
|
| 752 |
"surface": "website_hf",
|
| 753 |
"shows": "Machine-readable split radar for selected 128-episode metadata/raw baselines and verified Qwen3/Cosmos branches, now complete at 140/140 scored rows with proxy notes retained.",
|
| 754 |
"exists": true,
|
| 755 |
+
"bytes": 184945,
|
| 756 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 757 |
},
|
| 758 |
{
|
| 759 |
"id": "task_method_20_result_matrix_json",
|
|
|
|
| 763 |
"surface": "website_hf",
|
| 764 |
"shows": "Machine-readable 9-method by 20-task matrix where every method has 20 records and the current release is complete at 180/180 scored rows.",
|
| 765 |
"exists": true,
|
| 766 |
+
"bytes": 128509,
|
| 767 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 768 |
},
|
| 769 |
{
|
| 770 |
"id": "task_method_20_result_matrix",
|
|
|
|
| 786 |
"shows": "Machine-readable 180-record completion ledger with numeric scores, proxy flags, explicit status reasons, and source artifacts.",
|
| 787 |
"exists": true,
|
| 788 |
"bytes": 8500,
|
| 789 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 790 |
},
|
| 791 |
{
|
| 792 |
"id": "task_method_20_gap_audit",
|
|
|
|
| 797 |
"shows": "Reader-facing ledger confirming 180/180 scored method-task cells and listing the six compact-proxy records separately.",
|
| 798 |
"exists": true,
|
| 799 |
"bytes": 3417,
|
| 800 |
+
"sha256": "3afc5db9803b6419ce4f40d6fb0dd5380ae182fb85b4f7b0f6ea6a46ae065c63"
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"id": "task_method_20_source_audit_json",
|
| 804 |
+
"title": "Task-method 20-result source audit JSON",
|
| 805 |
+
"path": "docs/data/task_method_20_source_audit.json",
|
| 806 |
+
"kind": "website_data",
|
| 807 |
+
"surface": "website_hf",
|
| 808 |
+
"shows": "Machine-readable check that scored JSON-backed matrix cells match their declared metric source values.",
|
| 809 |
+
"exists": true,
|
| 810 |
+
"bytes": 561,
|
| 811 |
+
"sha256": "c795c8f387648a90e66146efc44a4be2f272d4a44097f0b9b39a7347df83daa0"
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"id": "task_method_20_source_audit",
|
| 815 |
+
"title": "Task-method 20-result source audit",
|
| 816 |
+
"path": "TASK_METHOD_20_SOURCE_AUDIT.md",
|
| 817 |
+
"kind": "evaluation_protocol",
|
| 818 |
+
"surface": "repo_hf",
|
| 819 |
+
"shows": "Reader-facing source-value audit for the 180-result matrix.",
|
| 820 |
+
"exists": true,
|
| 821 |
+
"bytes": 447,
|
| 822 |
+
"sha256": "2b8bc99b7157894d59fa2f23ebaee33ce9e6e01c0b7316c7555ab0071c85eb41"
|
| 823 |
},
|
| 824 |
{
|
| 825 |
"id": "unified_task_model_radar_chart",
|
|
|
|
| 862 |
"surface": "repo_hf",
|
| 863 |
"shows": "Regenerates the direction-aware radar chart and machine-readable metric overlay JSON.",
|
| 864 |
"exists": true,
|
| 865 |
+
"bytes": 68542,
|
| 866 |
+
"sha256": "470b4c8acc437114b51d96987cd6324b9bf1d2ca16e9721d7fb00708aa58b383"
|
| 867 |
},
|
| 868 |
{
|
| 869 |
"id": "task_method_20_gap_audit_builder",
|
|
|
|
| 876 |
"bytes": 10295,
|
| 877 |
"sha256": "e2a3b41d3cca6efee7076b68c35693a4c53f5f2549e2eecbf035b98a717a3f65"
|
| 878 |
},
|
| 879 |
+
{
|
| 880 |
+
"id": "task_method_20_source_audit_validator",
|
| 881 |
+
"title": "Task-method source-audit validator",
|
| 882 |
+
"path": "scripts/validate_task_method_matrix_sources.py",
|
| 883 |
+
"kind": "publication_workflow",
|
| 884 |
+
"surface": "repo_hf",
|
| 885 |
+
"shows": "Fails release checks if a scored matrix row disagrees with its JSON metric source.",
|
| 886 |
+
"exists": true,
|
| 887 |
+
"bytes": 7877,
|
| 888 |
+
"sha256": "97edc3f064f77d544eff539bb7f16f8162e58ec581a63b91c473bada080f86ae"
|
| 889 |
+
},
|
| 890 |
{
|
| 891 |
"id": "all_task_model_scoring_waiter",
|
| 892 |
"title": "All-task model scoring guarded waiter",
|
|
|
|
| 906 |
"surface": "repo_hf",
|
| 907 |
"shows": "Checks whether Qwen3/Cosmos branches have train, validation, and test prediction files before extending model overlays to all 20 task contracts.",
|
| 908 |
"exists": true,
|
| 909 |
+
"bytes": 4320,
|
| 910 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 911 |
},
|
| 912 |
{
|
| 913 |
"id": "model_output_probe_script",
|
|
|
|
| 917 |
"surface": "repo_hf",
|
| 918 |
"shows": "Audits model-output split availability and writes a readiness report without assigning new numeric task scores.",
|
| 919 |
"exists": true,
|
| 920 |
+
"bytes": 10520,
|
| 921 |
+
"sha256": "741ee733068e87c52c8da2bd15987e2b4538b5e705592182d76c42b5cf34fe96"
|
| 922 |
},
|
| 923 |
{
|
| 924 |
"id": "existing_model_output_task_probe",
|
|
|
|
| 1137 |
"surface": "repo_hf",
|
| 1138 |
"shows": "Lists the automated and post-publish checks used to keep the release current.",
|
| 1139 |
"exists": true,
|
| 1140 |
+
"bytes": 5184,
|
| 1141 |
+
"sha256": "4931d4457c4c5b0978fdf31861b6e3e2da6e24368398cf1756120a32cbff98f0"
|
| 1142 |
},
|
| 1143 |
{
|
| 1144 |
"id": "quality_gate_manifest",
|
|
|
|
| 1148 |
"surface": "website_hf",
|
| 1149 |
"shows": "Machine-readable release-check summary for validators, mirrors, and public project surfaces.",
|
| 1150 |
"exists": true,
|
| 1151 |
+
"bytes": 8640,
|
| 1152 |
+
"sha256": "445196830bb913bfa075ae4174e7b1f5b64f623cf13a2afde7513add9dbefc21"
|
| 1153 |
},
|
| 1154 |
{
|
| 1155 |
"id": "public_surface_qa",
|
|
|
|
| 1285 |
"surface": "repo",
|
| 1286 |
"shows": "Fetches the published GitHub/HF URLs and compares live hashes and public-card markers against the release assets.",
|
| 1287 |
"exists": true,
|
| 1288 |
+
"bytes": 67647,
|
| 1289 |
+
"sha256": "d2b4af98e6fd8b23fd86cd068f2bbf887e5d69686dd62fe3bfc7e8251a6d75d6"
|
| 1290 |
},
|
| 1291 |
{
|
| 1292 |
"id": "reproducibility_contract",
|
|
|
|
| 1318 |
"surface": "repo_hf",
|
| 1319 |
"shows": "Generates the selective artifact catalog from local files.",
|
| 1320 |
"exists": true,
|
| 1321 |
+
"bytes": 67105,
|
| 1322 |
+
"sha256": "8fc1a2b5d4a50d49ff5738ec1e5e91088dbfa514c9f0485d3afe708add6d94a1"
|
| 1323 |
},
|
| 1324 |
{
|
| 1325 |
"id": "publication_audit",
|
|
|
|
| 1330 |
"volatile": true,
|
| 1331 |
"shows": "Confirms public bundles exclude raw data, caches, heavy archives, and credential text.",
|
| 1332 |
"exists": true,
|
| 1333 |
+
"bytes": 10662,
|
| 1334 |
"hash_policy": "existence_and_size_only"
|
| 1335 |
},
|
| 1336 |
{
|
|
|
|
| 1354 |
"volatile": true,
|
| 1355 |
"shows": "Confirms prepared GitHub/HF Space/artifact/model mirrors share the same critical data, figure, website HTML, and validator files.",
|
| 1356 |
"exists": true,
|
| 1357 |
+
"bytes": 1395239,
|
| 1358 |
"hash_policy": "existence_and_size_only"
|
| 1359 |
},
|
| 1360 |
{
|
|
|
|
| 1366 |
"volatile": true,
|
| 1367 |
"shows": "Confirms local website links, anchors, JSON data files, and referenced images resolve.",
|
| 1368 |
"exists": true,
|
| 1369 |
+
"bytes": 20141,
|
| 1370 |
"hash_policy": "existence_and_size_only"
|
| 1371 |
},
|
| 1372 |
{
|
data/episode128_task_model_radar.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "128-Episode 20-Task Radar",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"description": "Selected 128-episode metadata/raw baselines plus verified Qwen3/Cosmos branches. Every method has 20 records; numeric scores appear only where the public artifact produced that task target.",
|
| 6 |
"task_count": 20,
|
| 7 |
"method_count": 7,
|
|
@@ -1166,7 +1166,7 @@
|
|
| 1166 |
"cosmos3_super_reasoner": {
|
| 1167 |
"raw": 0.6286317274823326,
|
| 1168 |
"metric_key": "temporal_order_f1",
|
| 1169 |
-
"source": "results/omni_finetune/
|
| 1170 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1171 |
"status": "scored",
|
| 1172 |
"reason": null,
|
|
@@ -1257,7 +1257,7 @@
|
|
| 1257 |
"cosmos3_super_reasoner": {
|
| 1258 |
"raw": 0.37271645981034185,
|
| 1259 |
"metric_key": "misalignment_detection_f1",
|
| 1260 |
-
"source": "results/omni_finetune/
|
| 1261 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1262 |
"status": "scored",
|
| 1263 |
"reason": null,
|
|
@@ -1439,7 +1439,7 @@
|
|
| 1439 |
"cosmos3_super_reasoner": {
|
| 1440 |
"raw": 0.0,
|
| 1441 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1442 |
-
"source": "results/omni_finetune/
|
| 1443 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1444 |
"status": "scored",
|
| 1445 |
"reason": null,
|
|
@@ -1519,7 +1519,7 @@
|
|
| 1519 |
"qwen3_omni_v6_lora": {
|
| 1520 |
"raw": 0.4318674027510605,
|
| 1521 |
"metric_key": "macro_f1",
|
| 1522 |
-
"source": "results/omni_finetune/
|
| 1523 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1524 |
"status": "scored",
|
| 1525 |
"reason": null,
|
|
@@ -1712,7 +1712,7 @@
|
|
| 1712 |
"cosmos3_super_reasoner": {
|
| 1713 |
"raw": 0.0009279881217520415,
|
| 1714 |
"metric_key": "object_set_forecast_micro_f1",
|
| 1715 |
-
"source": "results/omni_finetune/
|
| 1716 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1717 |
"status": "scored",
|
| 1718 |
"reason": null,
|
|
@@ -3372,7 +3372,7 @@
|
|
| 3372 |
"raw_text": "0.6286",
|
| 3373 |
"normalized_score": 0.6286317274823326,
|
| 3374 |
"metric_key": "temporal_order_f1",
|
| 3375 |
-
"source": "results/omni_finetune/
|
| 3376 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3377 |
"reason": null
|
| 3378 |
},
|
|
@@ -3498,7 +3498,7 @@
|
|
| 3498 |
"raw_text": "0.3727",
|
| 3499 |
"normalized_score": 0.37271645981034185,
|
| 3500 |
"metric_key": "misalignment_detection_f1",
|
| 3501 |
-
"source": "results/omni_finetune/
|
| 3502 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3503 |
"reason": null
|
| 3504 |
},
|
|
@@ -3750,7 +3750,7 @@
|
|
| 3750 |
"raw_text": "0.0000",
|
| 3751 |
"normalized_score": 0.0,
|
| 3752 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 3753 |
-
"source": "results/omni_finetune/
|
| 3754 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3755 |
"reason": null
|
| 3756 |
},
|
|
@@ -3858,7 +3858,7 @@
|
|
| 3858 |
"raw_text": "0.4319",
|
| 3859 |
"normalized_score": 0.4318674027510605,
|
| 3860 |
"metric_key": "macro_f1",
|
| 3861 |
-
"source": "results/omni_finetune/
|
| 3862 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3863 |
"reason": null
|
| 3864 |
},
|
|
@@ -4128,7 +4128,7 @@
|
|
| 4128 |
"raw_text": "0.0009",
|
| 4129 |
"normalized_score": 0.0009279881217520415,
|
| 4130 |
"metric_key": "object_set_forecast_micro_f1",
|
| 4131 |
-
"source": "results/omni_finetune/
|
| 4132 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4133 |
"reason": null
|
| 4134 |
},
|
|
|
|
| 1 |
{
|
| 2 |
"title": "128-Episode 20-Task Radar",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:38:21+00:00",
|
| 5 |
"description": "Selected 128-episode metadata/raw baselines plus verified Qwen3/Cosmos branches. Every method has 20 records; numeric scores appear only where the public artifact produced that task target.",
|
| 6 |
"task_count": 20,
|
| 7 |
"method_count": 7,
|
|
|
|
| 1166 |
"cosmos3_super_reasoner": {
|
| 1167 |
"raw": 0.6286317274823326,
|
| 1168 |
"metric_key": "temporal_order_f1",
|
| 1169 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 1170 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1171 |
"status": "scored",
|
| 1172 |
"reason": null,
|
|
|
|
| 1257 |
"cosmos3_super_reasoner": {
|
| 1258 |
"raw": 0.37271645981034185,
|
| 1259 |
"metric_key": "misalignment_detection_f1",
|
| 1260 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 1261 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1262 |
"status": "scored",
|
| 1263 |
"reason": null,
|
|
|
|
| 1439 |
"cosmos3_super_reasoner": {
|
| 1440 |
"raw": 0.0,
|
| 1441 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1442 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 1443 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1444 |
"status": "scored",
|
| 1445 |
"reason": null,
|
|
|
|
| 1519 |
"qwen3_omni_v6_lora": {
|
| 1520 |
"raw": 0.4318674027510605,
|
| 1521 |
"metric_key": "macro_f1",
|
| 1522 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 1523 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1524 |
"status": "scored",
|
| 1525 |
"reason": null,
|
|
|
|
| 1712 |
"cosmos3_super_reasoner": {
|
| 1713 |
"raw": 0.0009279881217520415,
|
| 1714 |
"metric_key": "object_set_forecast_micro_f1",
|
| 1715 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 1716 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1717 |
"status": "scored",
|
| 1718 |
"reason": null,
|
|
|
|
| 3372 |
"raw_text": "0.6286",
|
| 3373 |
"normalized_score": 0.6286317274823326,
|
| 3374 |
"metric_key": "temporal_order_f1",
|
| 3375 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 3376 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3377 |
"reason": null
|
| 3378 |
},
|
|
|
|
| 3498 |
"raw_text": "0.3727",
|
| 3499 |
"normalized_score": 0.37271645981034185,
|
| 3500 |
"metric_key": "misalignment_detection_f1",
|
| 3501 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 3502 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3503 |
"reason": null
|
| 3504 |
},
|
|
|
|
| 3750 |
"raw_text": "0.0000",
|
| 3751 |
"normalized_score": 0.0,
|
| 3752 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 3753 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 3754 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3755 |
"reason": null
|
| 3756 |
},
|
|
|
|
| 3858 |
"raw_text": "0.4319",
|
| 3859 |
"normalized_score": 0.4318674027510605,
|
| 3860 |
"metric_key": "macro_f1",
|
| 3861 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 3862 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3863 |
"reason": null
|
| 3864 |
},
|
|
|
|
| 4128 |
"raw_text": "0.0009",
|
| 4129 |
"normalized_score": 0.0009279881217520415,
|
| 4130 |
"metric_key": "object_set_forecast_micro_f1",
|
| 4131 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 4132 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4133 |
"reason": null
|
| 4134 |
},
|
data/public_surface_qa.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Public Project Surface",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"scope": "Repo README, GitHub Pages HTML, Hugging Face Space card, artifact dataset card, and model card.",
|
| 6 |
"checks": [
|
| 7 |
{
|
|
@@ -18,7 +18,7 @@
|
|
| 18 |
"website_integrity": {
|
| 19 |
"exists": true,
|
| 20 |
"status": "pass",
|
| 21 |
-
"generated_at_utc": "2026-06-
|
| 22 |
},
|
| 23 |
"rendered_site_check": {
|
| 24 |
"exists": true,
|
|
@@ -28,27 +28,27 @@
|
|
| 28 |
"task_surface_integrity": {
|
| 29 |
"exists": true,
|
| 30 |
"status": "pass",
|
| 31 |
-
"generated_at_utc": "2026-06-
|
| 32 |
},
|
| 33 |
"source_alignment": {
|
| 34 |
"exists": true,
|
| 35 |
"status": "pass",
|
| 36 |
-
"generated_at_utc": "2026-06-
|
| 37 |
},
|
| 38 |
"scale_up_status": {
|
| 39 |
"exists": true,
|
| 40 |
"status": "pass",
|
| 41 |
-
"generated_at_utc": "2026-06-
|
| 42 |
},
|
| 43 |
"publication_package": {
|
| 44 |
"exists": true,
|
| 45 |
"status": "pass",
|
| 46 |
-
"generated_at_utc": "2026-06-
|
| 47 |
},
|
| 48 |
"mirror_parity": {
|
| 49 |
"exists": true,
|
| 50 |
"status": "pass",
|
| 51 |
-
"generated_at_utc": "2026-06-
|
| 52 |
}
|
| 53 |
},
|
| 54 |
"failures": {}
|
|
@@ -111,7 +111,7 @@
|
|
| 111 |
"https://huggingface.co/spaces/cy0307/ropedia-xperience-10m-task-suite": 11,
|
| 112 |
"https://huggingface.co/datasets/cy0307/ropedia-xperience-10m-task-suite-artifacts": 11,
|
| 113 |
"https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines": 14,
|
| 114 |
-
"https://huggingface.co/cy0307/ropedia-xperience-10m-weights-results":
|
| 115 |
"https://huggingface.co/datasets/ropedia-ai/xperience-10m": 38,
|
| 116 |
"https://ropedia.com/dataset": 5
|
| 117 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Public Project Surface",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:48:08+00:00",
|
| 5 |
"scope": "Repo README, GitHub Pages HTML, Hugging Face Space card, artifact dataset card, and model card.",
|
| 6 |
"checks": [
|
| 7 |
{
|
|
|
|
| 18 |
"website_integrity": {
|
| 19 |
"exists": true,
|
| 20 |
"status": "pass",
|
| 21 |
+
"generated_at_utc": "2026-06-20T20:41:45+00:00"
|
| 22 |
},
|
| 23 |
"rendered_site_check": {
|
| 24 |
"exists": true,
|
|
|
|
| 28 |
"task_surface_integrity": {
|
| 29 |
"exists": true,
|
| 30 |
"status": "pass",
|
| 31 |
+
"generated_at_utc": "2026-06-20T19:55:17+00:00"
|
| 32 |
},
|
| 33 |
"source_alignment": {
|
| 34 |
"exists": true,
|
| 35 |
"status": "pass",
|
| 36 |
+
"generated_at_utc": "2026-06-20T19:55:18+00:00"
|
| 37 |
},
|
| 38 |
"scale_up_status": {
|
| 39 |
"exists": true,
|
| 40 |
"status": "pass",
|
| 41 |
+
"generated_at_utc": "2026-06-20T19:55:26+00:00"
|
| 42 |
},
|
| 43 |
"publication_package": {
|
| 44 |
"exists": true,
|
| 45 |
"status": "pass",
|
| 46 |
+
"generated_at_utc": "2026-06-20T20:42:41+00:00"
|
| 47 |
},
|
| 48 |
"mirror_parity": {
|
| 49 |
"exists": true,
|
| 50 |
"status": "pass",
|
| 51 |
+
"generated_at_utc": "2026-06-20T20:47:51+00:00"
|
| 52 |
}
|
| 53 |
},
|
| 54 |
"failures": {}
|
|
|
|
| 111 |
"https://huggingface.co/spaces/cy0307/ropedia-xperience-10m-task-suite": 11,
|
| 112 |
"https://huggingface.co/datasets/cy0307/ropedia-xperience-10m-task-suite-artifacts": 11,
|
| 113 |
"https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines": 14,
|
| 114 |
+
"https://huggingface.co/cy0307/ropedia-xperience-10m-weights-results": 6,
|
| 115 |
"https://huggingface.co/datasets/ropedia-ai/xperience-10m": 38,
|
| 116 |
"https://ropedia.com/dataset": 5
|
| 117 |
}
|
data/publication_audit.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
-
"generated_at_utc": "2026-06-
|
| 4 |
"checks": [
|
| 5 |
{
|
| 6 |
"name": "required_publication_assets_present",
|
|
@@ -59,6 +59,7 @@
|
|
| 59 |
"RENDERED_SITE_CHECK.md": true,
|
| 60 |
"EVALUATION_PROTOCOL.md": true,
|
| 61 |
"TASK_SUITE_20.md": true,
|
|
|
|
| 62 |
"XPERIENCE10M_128_EPISODE_FEATURE_INDEX.md": true,
|
| 63 |
"FIGURE_INDEX.md": true,
|
| 64 |
"SOURCE_ALIGNMENT_AUDIT.md": true,
|
|
@@ -106,6 +107,7 @@
|
|
| 106 |
"docs/data/episode128_task_model_radar.json": true,
|
| 107 |
"docs/data/task_method_20_result_matrix.json": true,
|
| 108 |
"docs/data/task_method_20_gap_audit.json": true,
|
|
|
|
| 109 |
"docs/data/task_suite_enhancement_128.json": true,
|
| 110 |
"docs/data/xperience10m_128_episode_feature_index.json": true,
|
| 111 |
"docs/assets/modalities/video.jpg": true,
|
|
@@ -150,6 +152,7 @@
|
|
| 150 |
"scripts/build_unified_task_suite.py": true,
|
| 151 |
"scripts/build_unified_task_model_radar.py": true,
|
| 152 |
"scripts/build_task_method_20_gap_audit.py": true,
|
|
|
|
| 153 |
"scripts/build_figure_index.py": true,
|
| 154 |
"scripts/build_quality_gates.py": true,
|
| 155 |
"scripts/build_public_surface_qa.py": true,
|
|
@@ -226,8 +229,8 @@
|
|
| 226 |
"github_repo": {
|
| 227 |
"root": "repo",
|
| 228 |
"exists": true,
|
| 229 |
-
"file_count":
|
| 230 |
-
"text_file_count":
|
| 231 |
"largest_file": {
|
| 232 |
"path": "results/omni_finetune/a100_128_metadata_task_baselines_20260616_v2/interaction_text_prediction/confusion_matrix.csv",
|
| 233 |
"bytes": 73057076
|
|
@@ -237,8 +240,8 @@
|
|
| 237 |
"hf_space_bundle": {
|
| 238 |
"root": "hf_publish/space",
|
| 239 |
"exists": true,
|
| 240 |
-
"file_count":
|
| 241 |
-
"text_file_count":
|
| 242 |
"largest_file": {
|
| 243 |
"path": "results/omni_finetune/xperience10m_qwen3_omni_v6_sensor_target_probes_a100_20260619T000000Z/modality_reconstruction/predictions.jsonl",
|
| 244 |
"bytes": 10221085
|
|
@@ -248,8 +251,8 @@
|
|
| 248 |
"hf_artifact_bundle": {
|
| 249 |
"root": "hf_publish/artifacts",
|
| 250 |
"exists": true,
|
| 251 |
-
"file_count":
|
| 252 |
-
"text_file_count":
|
| 253 |
"largest_file": {
|
| 254 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 255 |
"bytes": 135591061
|
|
@@ -259,8 +262,8 @@
|
|
| 259 |
"hf_model_bundle": {
|
| 260 |
"root": "hf_publish/model",
|
| 261 |
"exists": true,
|
| 262 |
-
"file_count":
|
| 263 |
-
"text_file_count":
|
| 264 |
"largest_file": {
|
| 265 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 266 |
"bytes": 135591061
|
|
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:49:00+00:00",
|
| 4 |
"checks": [
|
| 5 |
{
|
| 6 |
"name": "required_publication_assets_present",
|
|
|
|
| 59 |
"RENDERED_SITE_CHECK.md": true,
|
| 60 |
"EVALUATION_PROTOCOL.md": true,
|
| 61 |
"TASK_SUITE_20.md": true,
|
| 62 |
+
"TASK_METHOD_20_SOURCE_AUDIT.md": true,
|
| 63 |
"XPERIENCE10M_128_EPISODE_FEATURE_INDEX.md": true,
|
| 64 |
"FIGURE_INDEX.md": true,
|
| 65 |
"SOURCE_ALIGNMENT_AUDIT.md": true,
|
|
|
|
| 107 |
"docs/data/episode128_task_model_radar.json": true,
|
| 108 |
"docs/data/task_method_20_result_matrix.json": true,
|
| 109 |
"docs/data/task_method_20_gap_audit.json": true,
|
| 110 |
+
"docs/data/task_method_20_source_audit.json": true,
|
| 111 |
"docs/data/task_suite_enhancement_128.json": true,
|
| 112 |
"docs/data/xperience10m_128_episode_feature_index.json": true,
|
| 113 |
"docs/assets/modalities/video.jpg": true,
|
|
|
|
| 152 |
"scripts/build_unified_task_suite.py": true,
|
| 153 |
"scripts/build_unified_task_model_radar.py": true,
|
| 154 |
"scripts/build_task_method_20_gap_audit.py": true,
|
| 155 |
+
"scripts/validate_task_method_matrix_sources.py": true,
|
| 156 |
"scripts/build_figure_index.py": true,
|
| 157 |
"scripts/build_quality_gates.py": true,
|
| 158 |
"scripts/build_public_surface_qa.py": true,
|
|
|
|
| 229 |
"github_repo": {
|
| 230 |
"root": "repo",
|
| 231 |
"exists": true,
|
| 232 |
+
"file_count": 1513,
|
| 233 |
+
"text_file_count": 1252,
|
| 234 |
"largest_file": {
|
| 235 |
"path": "results/omni_finetune/a100_128_metadata_task_baselines_20260616_v2/interaction_text_prediction/confusion_matrix.csv",
|
| 236 |
"bytes": 73057076
|
|
|
|
| 240 |
"hf_space_bundle": {
|
| 241 |
"root": "hf_publish/space",
|
| 242 |
"exists": true,
|
| 243 |
+
"file_count": 558,
|
| 244 |
+
"text_file_count": 411,
|
| 245 |
"largest_file": {
|
| 246 |
"path": "results/omni_finetune/xperience10m_qwen3_omni_v6_sensor_target_probes_a100_20260619T000000Z/modality_reconstruction/predictions.jsonl",
|
| 247 |
"bytes": 10221085
|
|
|
|
| 251 |
"hf_artifact_bundle": {
|
| 252 |
"root": "hf_publish/artifacts",
|
| 253 |
"exists": true,
|
| 254 |
+
"file_count": 4477,
|
| 255 |
+
"text_file_count": 1271,
|
| 256 |
"largest_file": {
|
| 257 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 258 |
"bytes": 135591061
|
|
|
|
| 262 |
"hf_model_bundle": {
|
| 263 |
"root": "hf_publish/model",
|
| 264 |
"exists": true,
|
| 265 |
+
"file_count": 5228,
|
| 266 |
+
"text_file_count": 1440,
|
| 267 |
"largest_file": {
|
| 268 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 269 |
"bytes": 135591061
|
data/task_method_20_gap_audit.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"generated_at_utc": "2026-06-
|
| 3 |
"immediate_actions": [
|
| 4 |
{
|
| 5 |
"artifact": "docs/data/task_method_20_gap_audit.json",
|
|
|
|
| 1 |
{
|
| 2 |
+
"generated_at_utc": "2026-06-20T20:38:59+00:00",
|
| 3 |
"immediate_actions": [
|
| 4 |
{
|
| 5 |
"artifact": "docs/data/task_method_20_gap_audit.json",
|
data/task_method_20_source_audit.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"checked_json_metric_count": 180,
|
| 3 |
+
"failure_count": 0,
|
| 4 |
+
"failures": [],
|
| 5 |
+
"generated_at_utc": "2026-06-20T20:48:41+00:00",
|
| 6 |
+
"method_task_record_count": 180,
|
| 7 |
+
"rule": "Every scored row that declares a JSON metric source must have the same numeric value under that row's metric_key.",
|
| 8 |
+
"scored_method_task_count": 180,
|
| 9 |
+
"skipped_record_count": 0,
|
| 10 |
+
"skipped_records": [],
|
| 11 |
+
"source_matrix": "docs/data/task_method_20_result_matrix.json",
|
| 12 |
+
"status": "pass",
|
| 13 |
+
"status_counts": {
|
| 14 |
+
"checked": 180
|
| 15 |
+
},
|
| 16 |
+
"title": "Task Method 20 Matrix Source Audit"
|
| 17 |
+
}
|
data/unified_task_model_radar.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Unified 20-Task Model Radar",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"task_count": 20,
|
| 6 |
"method_count": 9,
|
| 7 |
"method_task_record_count": 180,
|
|
@@ -1396,7 +1396,7 @@
|
|
| 1396 |
"cosmos3_super_reasoner": {
|
| 1397 |
"raw": 0.6286317274823326,
|
| 1398 |
"metric_key": "temporal_order_f1",
|
| 1399 |
-
"source": "results/omni_finetune/
|
| 1400 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1401 |
"status": "scored",
|
| 1402 |
"reason": null,
|
|
@@ -1507,7 +1507,7 @@
|
|
| 1507 |
"cosmos3_super_reasoner": {
|
| 1508 |
"raw": 0.37271645981034185,
|
| 1509 |
"metric_key": "misalignment_detection_f1",
|
| 1510 |
-
"source": "results/omni_finetune/
|
| 1511 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1512 |
"status": "scored",
|
| 1513 |
"reason": null,
|
|
@@ -1729,7 +1729,7 @@
|
|
| 1729 |
"cosmos3_super_reasoner": {
|
| 1730 |
"raw": 0.0,
|
| 1731 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1732 |
-
"source": "results/omni_finetune/
|
| 1733 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1734 |
"status": "scored",
|
| 1735 |
"reason": null,
|
|
@@ -1829,7 +1829,7 @@
|
|
| 1829 |
"qwen3_omni_v6_lora": {
|
| 1830 |
"raw": 0.4318674027510605,
|
| 1831 |
"metric_key": "macro_f1",
|
| 1832 |
-
"source": "results/omni_finetune/
|
| 1833 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1834 |
"status": "scored",
|
| 1835 |
"reason": null,
|
|
@@ -2062,7 +2062,7 @@
|
|
| 2062 |
"cosmos3_super_reasoner": {
|
| 2063 |
"raw": 0.0009279881217520415,
|
| 2064 |
"metric_key": "object_set_forecast_micro_f1",
|
| 2065 |
-
"source": "results/omni_finetune/
|
| 2066 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2067 |
"status": "scored",
|
| 2068 |
"reason": null,
|
|
@@ -4278,7 +4278,7 @@
|
|
| 4278 |
"raw_text": "0.6286",
|
| 4279 |
"normalized_score": 0.6286317274823326,
|
| 4280 |
"metric_key": "temporal_order_f1",
|
| 4281 |
-
"source": "results/omni_finetune/
|
| 4282 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4283 |
"reason": null
|
| 4284 |
},
|
|
@@ -4440,7 +4440,7 @@
|
|
| 4440 |
"raw_text": "0.3727",
|
| 4441 |
"normalized_score": 0.37271645981034185,
|
| 4442 |
"metric_key": "misalignment_detection_f1",
|
| 4443 |
-
"source": "results/omni_finetune/
|
| 4444 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4445 |
"reason": null
|
| 4446 |
},
|
|
@@ -4764,7 +4764,7 @@
|
|
| 4764 |
"raw_text": "0.0000",
|
| 4765 |
"normalized_score": 0.0,
|
| 4766 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 4767 |
-
"source": "results/omni_finetune/
|
| 4768 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4769 |
"reason": null
|
| 4770 |
},
|
|
@@ -4908,7 +4908,7 @@
|
|
| 4908 |
"raw_text": "0.4319",
|
| 4909 |
"normalized_score": 0.4318674027510605,
|
| 4910 |
"metric_key": "macro_f1",
|
| 4911 |
-
"source": "results/omni_finetune/
|
| 4912 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4913 |
"reason": null
|
| 4914 |
},
|
|
@@ -5250,7 +5250,7 @@
|
|
| 5250 |
"raw_text": "0.0009",
|
| 5251 |
"normalized_score": 0.0009279881217520415,
|
| 5252 |
"metric_key": "object_set_forecast_micro_f1",
|
| 5253 |
-
"source": "results/omni_finetune/
|
| 5254 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 5255 |
"reason": null
|
| 5256 |
},
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Unified 20-Task Model Radar",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:38:21+00:00",
|
| 5 |
"task_count": 20,
|
| 6 |
"method_count": 9,
|
| 7 |
"method_task_record_count": 180,
|
|
|
|
| 1396 |
"cosmos3_super_reasoner": {
|
| 1397 |
"raw": 0.6286317274823326,
|
| 1398 |
"metric_key": "temporal_order_f1",
|
| 1399 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 1400 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1401 |
"status": "scored",
|
| 1402 |
"reason": null,
|
|
|
|
| 1507 |
"cosmos3_super_reasoner": {
|
| 1508 |
"raw": 0.37271645981034185,
|
| 1509 |
"metric_key": "misalignment_detection_f1",
|
| 1510 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 1511 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1512 |
"status": "scored",
|
| 1513 |
"reason": null,
|
|
|
|
| 1729 |
"cosmos3_super_reasoner": {
|
| 1730 |
"raw": 0.0,
|
| 1731 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1732 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 1733 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1734 |
"status": "scored",
|
| 1735 |
"reason": null,
|
|
|
|
| 1829 |
"qwen3_omni_v6_lora": {
|
| 1830 |
"raw": 0.4318674027510605,
|
| 1831 |
"metric_key": "macro_f1",
|
| 1832 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 1833 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1834 |
"status": "scored",
|
| 1835 |
"reason": null,
|
|
|
|
| 2062 |
"cosmos3_super_reasoner": {
|
| 2063 |
"raw": 0.0009279881217520415,
|
| 2064 |
"metric_key": "object_set_forecast_micro_f1",
|
| 2065 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 2066 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2067 |
"status": "scored",
|
| 2068 |
"reason": null,
|
|
|
|
| 4278 |
"raw_text": "0.6286",
|
| 4279 |
"normalized_score": 0.6286317274823326,
|
| 4280 |
"metric_key": "temporal_order_f1",
|
| 4281 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 4282 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4283 |
"reason": null
|
| 4284 |
},
|
|
|
|
| 4440 |
"raw_text": "0.3727",
|
| 4441 |
"normalized_score": 0.37271645981034185,
|
| 4442 |
"metric_key": "misalignment_detection_f1",
|
| 4443 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 4444 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4445 |
"reason": null
|
| 4446 |
},
|
|
|
|
| 4764 |
"raw_text": "0.0000",
|
| 4765 |
"normalized_score": 0.0,
|
| 4766 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 4767 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 4768 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4769 |
"reason": null
|
| 4770 |
},
|
|
|
|
| 4908 |
"raw_text": "0.4319",
|
| 4909 |
"normalized_score": 0.4318674027510605,
|
| 4910 |
"metric_key": "macro_f1",
|
| 4911 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 4912 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4913 |
"reason": null
|
| 4914 |
},
|
|
|
|
| 5250 |
"raw_text": "0.0009",
|
| 5251 |
"normalized_score": 0.0009279881217520415,
|
| 5252 |
"metric_key": "object_set_forecast_micro_f1",
|
| 5253 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 5254 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 5255 |
"reason": null
|
| 5256 |
},
|
data/website_integrity.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
-
"generated_at_utc": "2026-06-
|
| 4 |
"docs_root": "docs",
|
| 5 |
"site_base": "/ropedia-xperience-10m-task-suite/",
|
| 6 |
"summary": {
|
| 7 |
"html_pages": 4,
|
| 8 |
"local_references": 213,
|
| 9 |
"external_reference_count": 152,
|
| 10 |
-
"json_files":
|
| 11 |
"image_assets_referenced": 28,
|
| 12 |
"failure_count": 0
|
| 13 |
},
|
|
@@ -301,7 +301,7 @@
|
|
| 301 |
},
|
| 302 |
{
|
| 303 |
"path": "data/artifact_index.json",
|
| 304 |
-
"bytes":
|
| 305 |
"top_level_type": "dict"
|
| 306 |
},
|
| 307 |
{
|
|
@@ -316,7 +316,7 @@
|
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"path": "data/episode128_task_model_radar.json",
|
| 319 |
-
"bytes":
|
| 320 |
"top_level_type": "dict"
|
| 321 |
},
|
| 322 |
{
|
|
@@ -491,7 +491,12 @@
|
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"path": "data/task_method_20_result_matrix.json",
|
| 494 |
-
"bytes":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 495 |
"top_level_type": "dict"
|
| 496 |
},
|
| 497 |
{
|
|
@@ -526,7 +531,7 @@
|
|
| 526 |
},
|
| 527 |
{
|
| 528 |
"path": "data/unified_task_model_radar.json",
|
| 529 |
-
"bytes":
|
| 530 |
"top_level_type": "dict"
|
| 531 |
},
|
| 532 |
{
|
|
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:41:45+00:00",
|
| 4 |
"docs_root": "docs",
|
| 5 |
"site_base": "/ropedia-xperience-10m-task-suite/",
|
| 6 |
"summary": {
|
| 7 |
"html_pages": 4,
|
| 8 |
"local_references": 213,
|
| 9 |
"external_reference_count": 152,
|
| 10 |
+
"json_files": 51,
|
| 11 |
"image_assets_referenced": 28,
|
| 12 |
"failure_count": 0
|
| 13 |
},
|
|
|
|
| 301 |
},
|
| 302 |
{
|
| 303 |
"path": "data/artifact_index.json",
|
| 304 |
+
"bytes": 122823,
|
| 305 |
"top_level_type": "dict"
|
| 306 |
},
|
| 307 |
{
|
|
|
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"path": "data/episode128_task_model_radar.json",
|
| 319 |
+
"bytes": 184945,
|
| 320 |
"top_level_type": "dict"
|
| 321 |
},
|
| 322 |
{
|
|
|
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"path": "data/task_method_20_result_matrix.json",
|
| 494 |
+
"bytes": 128509,
|
| 495 |
+
"top_level_type": "dict"
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"path": "data/task_method_20_source_audit.json",
|
| 499 |
+
"bytes": 561,
|
| 500 |
"top_level_type": "dict"
|
| 501 |
},
|
| 502 |
{
|
|
|
|
| 531 |
},
|
| 532 |
{
|
| 533 |
"path": "data/unified_task_model_radar.json",
|
| 534 |
+
"bytes": 228799,
|
| 535 |
"top_level_type": "dict"
|
| 536 |
},
|
| 537 |
{
|
docs/data/artifact_index.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Task Suite Artifact Index",
|
| 3 |
-
"generated_at_utc": "2026-06-
|
| 4 |
"status": "pass",
|
| 5 |
-
"artifact_count":
|
| 6 |
"missing": [],
|
| 7 |
"by_kind": {
|
| 8 |
"project_path": 18,
|
|
@@ -10,12 +10,12 @@
|
|
| 10 |
"visual_asset_source": 3,
|
| 11 |
"scaleup_contract": 7,
|
| 12 |
"scaleup_status": 52,
|
| 13 |
-
"publication_workflow":
|
| 14 |
"reproducibility": 4,
|
| 15 |
"project_scope": 1,
|
| 16 |
"source_alignment": 5,
|
| 17 |
-
"evaluation_protocol":
|
| 18 |
-
"website_data":
|
| 19 |
"generated_figure": 7,
|
| 20 |
"visualization_builder": 1,
|
| 21 |
"model_result": 5,
|
|
@@ -301,8 +301,8 @@
|
|
| 301 |
"surface": "repo_hf",
|
| 302 |
"shows": "Runs simple metadata and neural MLP baselines on the same selected 96/16/16 episode split used by the Qwen3-Omni diagnostic pilot.",
|
| 303 |
"exists": true,
|
| 304 |
-
"bytes":
|
| 305 |
-
"sha256": "
|
| 306 |
},
|
| 307 |
{
|
| 308 |
"id": "task_suite_enhancement_128",
|
|
@@ -610,7 +610,7 @@
|
|
| 610 |
"shows": "Machine-readable source-alignment pass/fail check for repo, website, and HF surfaces.",
|
| 611 |
"exists": true,
|
| 612 |
"bytes": 4432,
|
| 613 |
-
"sha256": "
|
| 614 |
},
|
| 615 |
{
|
| 616 |
"id": "source_alignment_validator",
|
|
@@ -730,8 +730,8 @@
|
|
| 730 |
"surface": "website_hf",
|
| 731 |
"shows": "Stores normalized 20-axis radar values, raw task metrics, Qwen3/Cosmos overlay mappings, branch-card caveats, proxy flags, and source artifacts.",
|
| 732 |
"exists": true,
|
| 733 |
-
"bytes":
|
| 734 |
-
"sha256": "
|
| 735 |
},
|
| 736 |
{
|
| 737 |
"id": "single_episode_task_model_radar_json",
|
|
@@ -742,7 +742,7 @@
|
|
| 742 |
"shows": "Machine-readable split radar for the one-episode Minimal and Neural MLP baselines, both scored on all 20 task contracts.",
|
| 743 |
"exists": true,
|
| 744 |
"bytes": 51097,
|
| 745 |
-
"sha256": "
|
| 746 |
},
|
| 747 |
{
|
| 748 |
"id": "episode128_task_model_radar_json",
|
|
@@ -752,8 +752,8 @@
|
|
| 752 |
"surface": "website_hf",
|
| 753 |
"shows": "Machine-readable split radar for selected 128-episode metadata/raw baselines and verified Qwen3/Cosmos branches, now complete at 140/140 scored rows with proxy notes retained.",
|
| 754 |
"exists": true,
|
| 755 |
-
"bytes":
|
| 756 |
-
"sha256": "
|
| 757 |
},
|
| 758 |
{
|
| 759 |
"id": "task_method_20_result_matrix_json",
|
|
@@ -763,8 +763,8 @@
|
|
| 763 |
"surface": "website_hf",
|
| 764 |
"shows": "Machine-readable 9-method by 20-task matrix where every method has 20 records and the current release is complete at 180/180 scored rows.",
|
| 765 |
"exists": true,
|
| 766 |
-
"bytes":
|
| 767 |
-
"sha256": "
|
| 768 |
},
|
| 769 |
{
|
| 770 |
"id": "task_method_20_result_matrix",
|
|
@@ -786,7 +786,7 @@
|
|
| 786 |
"shows": "Machine-readable 180-record completion ledger with numeric scores, proxy flags, explicit status reasons, and source artifacts.",
|
| 787 |
"exists": true,
|
| 788 |
"bytes": 8500,
|
| 789 |
-
"sha256": "
|
| 790 |
},
|
| 791 |
{
|
| 792 |
"id": "task_method_20_gap_audit",
|
|
@@ -797,7 +797,29 @@
|
|
| 797 |
"shows": "Reader-facing ledger confirming 180/180 scored method-task cells and listing the six compact-proxy records separately.",
|
| 798 |
"exists": true,
|
| 799 |
"bytes": 3417,
|
| 800 |
-
"sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 801 |
},
|
| 802 |
{
|
| 803 |
"id": "unified_task_model_radar_chart",
|
|
@@ -840,8 +862,8 @@
|
|
| 840 |
"surface": "repo_hf",
|
| 841 |
"shows": "Regenerates the direction-aware radar chart and machine-readable metric overlay JSON.",
|
| 842 |
"exists": true,
|
| 843 |
-
"bytes":
|
| 844 |
-
"sha256": "
|
| 845 |
},
|
| 846 |
{
|
| 847 |
"id": "task_method_20_gap_audit_builder",
|
|
@@ -854,6 +876,17 @@
|
|
| 854 |
"bytes": 10295,
|
| 855 |
"sha256": "e2a3b41d3cca6efee7076b68c35693a4c53f5f2549e2eecbf035b98a717a3f65"
|
| 856 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 857 |
{
|
| 858 |
"id": "all_task_model_scoring_waiter",
|
| 859 |
"title": "All-task model scoring guarded waiter",
|
|
@@ -873,8 +906,8 @@
|
|
| 873 |
"surface": "repo_hf",
|
| 874 |
"shows": "Checks whether Qwen3/Cosmos branches have train, validation, and test prediction files before extending model overlays to all 20 task contracts.",
|
| 875 |
"exists": true,
|
| 876 |
-
"bytes":
|
| 877 |
-
"sha256": "
|
| 878 |
},
|
| 879 |
{
|
| 880 |
"id": "model_output_probe_script",
|
|
@@ -884,8 +917,8 @@
|
|
| 884 |
"surface": "repo_hf",
|
| 885 |
"shows": "Audits model-output split availability and writes a readiness report without assigning new numeric task scores.",
|
| 886 |
"exists": true,
|
| 887 |
-
"bytes":
|
| 888 |
-
"sha256": "
|
| 889 |
},
|
| 890 |
{
|
| 891 |
"id": "existing_model_output_task_probe",
|
|
@@ -1104,8 +1137,8 @@
|
|
| 1104 |
"surface": "repo_hf",
|
| 1105 |
"shows": "Lists the automated and post-publish checks used to keep the release current.",
|
| 1106 |
"exists": true,
|
| 1107 |
-
"bytes":
|
| 1108 |
-
"sha256": "
|
| 1109 |
},
|
| 1110 |
{
|
| 1111 |
"id": "quality_gate_manifest",
|
|
@@ -1115,8 +1148,8 @@
|
|
| 1115 |
"surface": "website_hf",
|
| 1116 |
"shows": "Machine-readable release-check summary for validators, mirrors, and public project surfaces.",
|
| 1117 |
"exists": true,
|
| 1118 |
-
"bytes":
|
| 1119 |
-
"sha256": "
|
| 1120 |
},
|
| 1121 |
{
|
| 1122 |
"id": "public_surface_qa",
|
|
@@ -1252,8 +1285,8 @@
|
|
| 1252 |
"surface": "repo",
|
| 1253 |
"shows": "Fetches the published GitHub/HF URLs and compares live hashes and public-card markers against the release assets.",
|
| 1254 |
"exists": true,
|
| 1255 |
-
"bytes":
|
| 1256 |
-
"sha256": "
|
| 1257 |
},
|
| 1258 |
{
|
| 1259 |
"id": "reproducibility_contract",
|
|
@@ -1285,8 +1318,8 @@
|
|
| 1285 |
"surface": "repo_hf",
|
| 1286 |
"shows": "Generates the selective artifact catalog from local files.",
|
| 1287 |
"exists": true,
|
| 1288 |
-
"bytes":
|
| 1289 |
-
"sha256": "
|
| 1290 |
},
|
| 1291 |
{
|
| 1292 |
"id": "publication_audit",
|
|
@@ -1297,7 +1330,7 @@
|
|
| 1297 |
"volatile": true,
|
| 1298 |
"shows": "Confirms public bundles exclude raw data, caches, heavy archives, and credential text.",
|
| 1299 |
"exists": true,
|
| 1300 |
-
"bytes":
|
| 1301 |
"hash_policy": "existence_and_size_only"
|
| 1302 |
},
|
| 1303 |
{
|
|
@@ -1321,7 +1354,7 @@
|
|
| 1321 |
"volatile": true,
|
| 1322 |
"shows": "Confirms prepared GitHub/HF Space/artifact/model mirrors share the same critical data, figure, website HTML, and validator files.",
|
| 1323 |
"exists": true,
|
| 1324 |
-
"bytes":
|
| 1325 |
"hash_policy": "existence_and_size_only"
|
| 1326 |
},
|
| 1327 |
{
|
|
@@ -1333,7 +1366,7 @@
|
|
| 1333 |
"volatile": true,
|
| 1334 |
"shows": "Confirms local website links, anchors, JSON data files, and referenced images resolve.",
|
| 1335 |
"exists": true,
|
| 1336 |
-
"bytes":
|
| 1337 |
"hash_policy": "existence_and_size_only"
|
| 1338 |
},
|
| 1339 |
{
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Task Suite Artifact Index",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:48:09+00:00",
|
| 4 |
"status": "pass",
|
| 5 |
+
"artifact_count": 225,
|
| 6 |
"missing": [],
|
| 7 |
"by_kind": {
|
| 8 |
"project_path": 18,
|
|
|
|
| 10 |
"visual_asset_source": 3,
|
| 11 |
"scaleup_contract": 7,
|
| 12 |
"scaleup_status": 52,
|
| 13 |
+
"publication_workflow": 7,
|
| 14 |
"reproducibility": 4,
|
| 15 |
"project_scope": 1,
|
| 16 |
"source_alignment": 5,
|
| 17 |
+
"evaluation_protocol": 9,
|
| 18 |
+
"website_data": 11,
|
| 19 |
"generated_figure": 7,
|
| 20 |
"visualization_builder": 1,
|
| 21 |
"model_result": 5,
|
|
|
|
| 301 |
"surface": "repo_hf",
|
| 302 |
"shows": "Runs simple metadata and neural MLP baselines on the same selected 96/16/16 episode split used by the Qwen3-Omni diagnostic pilot.",
|
| 303 |
"exists": true,
|
| 304 |
+
"bytes": 74316,
|
| 305 |
+
"sha256": "164c908bee1d4a6e0db344692833787582e45317b240ef5afbfbdb609a5175e6"
|
| 306 |
},
|
| 307 |
{
|
| 308 |
"id": "task_suite_enhancement_128",
|
|
|
|
| 610 |
"shows": "Machine-readable source-alignment pass/fail check for repo, website, and HF surfaces.",
|
| 611 |
"exists": true,
|
| 612 |
"bytes": 4432,
|
| 613 |
+
"sha256": "c916b18a11917e46e8561520cf2307f190c671c82e710ebd0f3522ec8a4be2bd"
|
| 614 |
},
|
| 615 |
{
|
| 616 |
"id": "source_alignment_validator",
|
|
|
|
| 730 |
"surface": "website_hf",
|
| 731 |
"shows": "Stores normalized 20-axis radar values, raw task metrics, Qwen3/Cosmos overlay mappings, branch-card caveats, proxy flags, and source artifacts.",
|
| 732 |
"exists": true,
|
| 733 |
+
"bytes": 228799,
|
| 734 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 735 |
},
|
| 736 |
{
|
| 737 |
"id": "single_episode_task_model_radar_json",
|
|
|
|
| 742 |
"shows": "Machine-readable split radar for the one-episode Minimal and Neural MLP baselines, both scored on all 20 task contracts.",
|
| 743 |
"exists": true,
|
| 744 |
"bytes": 51097,
|
| 745 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 746 |
},
|
| 747 |
{
|
| 748 |
"id": "episode128_task_model_radar_json",
|
|
|
|
| 752 |
"surface": "website_hf",
|
| 753 |
"shows": "Machine-readable split radar for selected 128-episode metadata/raw baselines and verified Qwen3/Cosmos branches, now complete at 140/140 scored rows with proxy notes retained.",
|
| 754 |
"exists": true,
|
| 755 |
+
"bytes": 184945,
|
| 756 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 757 |
},
|
| 758 |
{
|
| 759 |
"id": "task_method_20_result_matrix_json",
|
|
|
|
| 763 |
"surface": "website_hf",
|
| 764 |
"shows": "Machine-readable 9-method by 20-task matrix where every method has 20 records and the current release is complete at 180/180 scored rows.",
|
| 765 |
"exists": true,
|
| 766 |
+
"bytes": 128509,
|
| 767 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 768 |
},
|
| 769 |
{
|
| 770 |
"id": "task_method_20_result_matrix",
|
|
|
|
| 786 |
"shows": "Machine-readable 180-record completion ledger with numeric scores, proxy flags, explicit status reasons, and source artifacts.",
|
| 787 |
"exists": true,
|
| 788 |
"bytes": 8500,
|
| 789 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 790 |
},
|
| 791 |
{
|
| 792 |
"id": "task_method_20_gap_audit",
|
|
|
|
| 797 |
"shows": "Reader-facing ledger confirming 180/180 scored method-task cells and listing the six compact-proxy records separately.",
|
| 798 |
"exists": true,
|
| 799 |
"bytes": 3417,
|
| 800 |
+
"sha256": "3afc5db9803b6419ce4f40d6fb0dd5380ae182fb85b4f7b0f6ea6a46ae065c63"
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"id": "task_method_20_source_audit_json",
|
| 804 |
+
"title": "Task-method 20-result source audit JSON",
|
| 805 |
+
"path": "docs/data/task_method_20_source_audit.json",
|
| 806 |
+
"kind": "website_data",
|
| 807 |
+
"surface": "website_hf",
|
| 808 |
+
"shows": "Machine-readable check that scored JSON-backed matrix cells match their declared metric source values.",
|
| 809 |
+
"exists": true,
|
| 810 |
+
"bytes": 561,
|
| 811 |
+
"sha256": "c795c8f387648a90e66146efc44a4be2f272d4a44097f0b9b39a7347df83daa0"
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"id": "task_method_20_source_audit",
|
| 815 |
+
"title": "Task-method 20-result source audit",
|
| 816 |
+
"path": "TASK_METHOD_20_SOURCE_AUDIT.md",
|
| 817 |
+
"kind": "evaluation_protocol",
|
| 818 |
+
"surface": "repo_hf",
|
| 819 |
+
"shows": "Reader-facing source-value audit for the 180-result matrix.",
|
| 820 |
+
"exists": true,
|
| 821 |
+
"bytes": 447,
|
| 822 |
+
"sha256": "2b8bc99b7157894d59fa2f23ebaee33ce9e6e01c0b7316c7555ab0071c85eb41"
|
| 823 |
},
|
| 824 |
{
|
| 825 |
"id": "unified_task_model_radar_chart",
|
|
|
|
| 862 |
"surface": "repo_hf",
|
| 863 |
"shows": "Regenerates the direction-aware radar chart and machine-readable metric overlay JSON.",
|
| 864 |
"exists": true,
|
| 865 |
+
"bytes": 68542,
|
| 866 |
+
"sha256": "470b4c8acc437114b51d96987cd6324b9bf1d2ca16e9721d7fb00708aa58b383"
|
| 867 |
},
|
| 868 |
{
|
| 869 |
"id": "task_method_20_gap_audit_builder",
|
|
|
|
| 876 |
"bytes": 10295,
|
| 877 |
"sha256": "e2a3b41d3cca6efee7076b68c35693a4c53f5f2549e2eecbf035b98a717a3f65"
|
| 878 |
},
|
| 879 |
+
{
|
| 880 |
+
"id": "task_method_20_source_audit_validator",
|
| 881 |
+
"title": "Task-method source-audit validator",
|
| 882 |
+
"path": "scripts/validate_task_method_matrix_sources.py",
|
| 883 |
+
"kind": "publication_workflow",
|
| 884 |
+
"surface": "repo_hf",
|
| 885 |
+
"shows": "Fails release checks if a scored matrix row disagrees with its JSON metric source.",
|
| 886 |
+
"exists": true,
|
| 887 |
+
"bytes": 7877,
|
| 888 |
+
"sha256": "97edc3f064f77d544eff539bb7f16f8162e58ec581a63b91c473bada080f86ae"
|
| 889 |
+
},
|
| 890 |
{
|
| 891 |
"id": "all_task_model_scoring_waiter",
|
| 892 |
"title": "All-task model scoring guarded waiter",
|
|
|
|
| 906 |
"surface": "repo_hf",
|
| 907 |
"shows": "Checks whether Qwen3/Cosmos branches have train, validation, and test prediction files before extending model overlays to all 20 task contracts.",
|
| 908 |
"exists": true,
|
| 909 |
+
"bytes": 4320,
|
| 910 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 911 |
},
|
| 912 |
{
|
| 913 |
"id": "model_output_probe_script",
|
|
|
|
| 917 |
"surface": "repo_hf",
|
| 918 |
"shows": "Audits model-output split availability and writes a readiness report without assigning new numeric task scores.",
|
| 919 |
"exists": true,
|
| 920 |
+
"bytes": 10520,
|
| 921 |
+
"sha256": "741ee733068e87c52c8da2bd15987e2b4538b5e705592182d76c42b5cf34fe96"
|
| 922 |
},
|
| 923 |
{
|
| 924 |
"id": "existing_model_output_task_probe",
|
|
|
|
| 1137 |
"surface": "repo_hf",
|
| 1138 |
"shows": "Lists the automated and post-publish checks used to keep the release current.",
|
| 1139 |
"exists": true,
|
| 1140 |
+
"bytes": 5184,
|
| 1141 |
+
"sha256": "4931d4457c4c5b0978fdf31861b6e3e2da6e24368398cf1756120a32cbff98f0"
|
| 1142 |
},
|
| 1143 |
{
|
| 1144 |
"id": "quality_gate_manifest",
|
|
|
|
| 1148 |
"surface": "website_hf",
|
| 1149 |
"shows": "Machine-readable release-check summary for validators, mirrors, and public project surfaces.",
|
| 1150 |
"exists": true,
|
| 1151 |
+
"bytes": 8640,
|
| 1152 |
+
"sha256": "445196830bb913bfa075ae4174e7b1f5b64f623cf13a2afde7513add9dbefc21"
|
| 1153 |
},
|
| 1154 |
{
|
| 1155 |
"id": "public_surface_qa",
|
|
|
|
| 1285 |
"surface": "repo",
|
| 1286 |
"shows": "Fetches the published GitHub/HF URLs and compares live hashes and public-card markers against the release assets.",
|
| 1287 |
"exists": true,
|
| 1288 |
+
"bytes": 67647,
|
| 1289 |
+
"sha256": "d2b4af98e6fd8b23fd86cd068f2bbf887e5d69686dd62fe3bfc7e8251a6d75d6"
|
| 1290 |
},
|
| 1291 |
{
|
| 1292 |
"id": "reproducibility_contract",
|
|
|
|
| 1318 |
"surface": "repo_hf",
|
| 1319 |
"shows": "Generates the selective artifact catalog from local files.",
|
| 1320 |
"exists": true,
|
| 1321 |
+
"bytes": 67105,
|
| 1322 |
+
"sha256": "8fc1a2b5d4a50d49ff5738ec1e5e91088dbfa514c9f0485d3afe708add6d94a1"
|
| 1323 |
},
|
| 1324 |
{
|
| 1325 |
"id": "publication_audit",
|
|
|
|
| 1330 |
"volatile": true,
|
| 1331 |
"shows": "Confirms public bundles exclude raw data, caches, heavy archives, and credential text.",
|
| 1332 |
"exists": true,
|
| 1333 |
+
"bytes": 10662,
|
| 1334 |
"hash_policy": "existence_and_size_only"
|
| 1335 |
},
|
| 1336 |
{
|
|
|
|
| 1354 |
"volatile": true,
|
| 1355 |
"shows": "Confirms prepared GitHub/HF Space/artifact/model mirrors share the same critical data, figure, website HTML, and validator files.",
|
| 1356 |
"exists": true,
|
| 1357 |
+
"bytes": 1395239,
|
| 1358 |
"hash_policy": "existence_and_size_only"
|
| 1359 |
},
|
| 1360 |
{
|
|
|
|
| 1366 |
"volatile": true,
|
| 1367 |
"shows": "Confirms local website links, anchors, JSON data files, and referenced images resolve.",
|
| 1368 |
"exists": true,
|
| 1369 |
+
"bytes": 20141,
|
| 1370 |
"hash_policy": "existence_and_size_only"
|
| 1371 |
},
|
| 1372 |
{
|
docs/data/episode128_task_model_radar.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "128-Episode 20-Task Radar",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"description": "Selected 128-episode metadata/raw baselines plus verified Qwen3/Cosmos branches. Every method has 20 records; numeric scores appear only where the public artifact produced that task target.",
|
| 6 |
"task_count": 20,
|
| 7 |
"method_count": 7,
|
|
@@ -1166,7 +1166,7 @@
|
|
| 1166 |
"cosmos3_super_reasoner": {
|
| 1167 |
"raw": 0.6286317274823326,
|
| 1168 |
"metric_key": "temporal_order_f1",
|
| 1169 |
-
"source": "results/omni_finetune/
|
| 1170 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1171 |
"status": "scored",
|
| 1172 |
"reason": null,
|
|
@@ -1257,7 +1257,7 @@
|
|
| 1257 |
"cosmos3_super_reasoner": {
|
| 1258 |
"raw": 0.37271645981034185,
|
| 1259 |
"metric_key": "misalignment_detection_f1",
|
| 1260 |
-
"source": "results/omni_finetune/
|
| 1261 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1262 |
"status": "scored",
|
| 1263 |
"reason": null,
|
|
@@ -1439,7 +1439,7 @@
|
|
| 1439 |
"cosmos3_super_reasoner": {
|
| 1440 |
"raw": 0.0,
|
| 1441 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1442 |
-
"source": "results/omni_finetune/
|
| 1443 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1444 |
"status": "scored",
|
| 1445 |
"reason": null,
|
|
@@ -1519,7 +1519,7 @@
|
|
| 1519 |
"qwen3_omni_v6_lora": {
|
| 1520 |
"raw": 0.4318674027510605,
|
| 1521 |
"metric_key": "macro_f1",
|
| 1522 |
-
"source": "results/omni_finetune/
|
| 1523 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1524 |
"status": "scored",
|
| 1525 |
"reason": null,
|
|
@@ -1712,7 +1712,7 @@
|
|
| 1712 |
"cosmos3_super_reasoner": {
|
| 1713 |
"raw": 0.0009279881217520415,
|
| 1714 |
"metric_key": "object_set_forecast_micro_f1",
|
| 1715 |
-
"source": "results/omni_finetune/
|
| 1716 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1717 |
"status": "scored",
|
| 1718 |
"reason": null,
|
|
@@ -3372,7 +3372,7 @@
|
|
| 3372 |
"raw_text": "0.6286",
|
| 3373 |
"normalized_score": 0.6286317274823326,
|
| 3374 |
"metric_key": "temporal_order_f1",
|
| 3375 |
-
"source": "results/omni_finetune/
|
| 3376 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3377 |
"reason": null
|
| 3378 |
},
|
|
@@ -3498,7 +3498,7 @@
|
|
| 3498 |
"raw_text": "0.3727",
|
| 3499 |
"normalized_score": 0.37271645981034185,
|
| 3500 |
"metric_key": "misalignment_detection_f1",
|
| 3501 |
-
"source": "results/omni_finetune/
|
| 3502 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3503 |
"reason": null
|
| 3504 |
},
|
|
@@ -3750,7 +3750,7 @@
|
|
| 3750 |
"raw_text": "0.0000",
|
| 3751 |
"normalized_score": 0.0,
|
| 3752 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 3753 |
-
"source": "results/omni_finetune/
|
| 3754 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3755 |
"reason": null
|
| 3756 |
},
|
|
@@ -3858,7 +3858,7 @@
|
|
| 3858 |
"raw_text": "0.4319",
|
| 3859 |
"normalized_score": 0.4318674027510605,
|
| 3860 |
"metric_key": "macro_f1",
|
| 3861 |
-
"source": "results/omni_finetune/
|
| 3862 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3863 |
"reason": null
|
| 3864 |
},
|
|
@@ -4128,7 +4128,7 @@
|
|
| 4128 |
"raw_text": "0.0009",
|
| 4129 |
"normalized_score": 0.0009279881217520415,
|
| 4130 |
"metric_key": "object_set_forecast_micro_f1",
|
| 4131 |
-
"source": "results/omni_finetune/
|
| 4132 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4133 |
"reason": null
|
| 4134 |
},
|
|
|
|
| 1 |
{
|
| 2 |
"title": "128-Episode 20-Task Radar",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:38:21+00:00",
|
| 5 |
"description": "Selected 128-episode metadata/raw baselines plus verified Qwen3/Cosmos branches. Every method has 20 records; numeric scores appear only where the public artifact produced that task target.",
|
| 6 |
"task_count": 20,
|
| 7 |
"method_count": 7,
|
|
|
|
| 1166 |
"cosmos3_super_reasoner": {
|
| 1167 |
"raw": 0.6286317274823326,
|
| 1168 |
"metric_key": "temporal_order_f1",
|
| 1169 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 1170 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1171 |
"status": "scored",
|
| 1172 |
"reason": null,
|
|
|
|
| 1257 |
"cosmos3_super_reasoner": {
|
| 1258 |
"raw": 0.37271645981034185,
|
| 1259 |
"metric_key": "misalignment_detection_f1",
|
| 1260 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 1261 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1262 |
"status": "scored",
|
| 1263 |
"reason": null,
|
|
|
|
| 1439 |
"cosmos3_super_reasoner": {
|
| 1440 |
"raw": 0.0,
|
| 1441 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1442 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 1443 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1444 |
"status": "scored",
|
| 1445 |
"reason": null,
|
|
|
|
| 1519 |
"qwen3_omni_v6_lora": {
|
| 1520 |
"raw": 0.4318674027510605,
|
| 1521 |
"metric_key": "macro_f1",
|
| 1522 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 1523 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1524 |
"status": "scored",
|
| 1525 |
"reason": null,
|
|
|
|
| 1712 |
"cosmos3_super_reasoner": {
|
| 1713 |
"raw": 0.0009279881217520415,
|
| 1714 |
"metric_key": "object_set_forecast_micro_f1",
|
| 1715 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 1716 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1717 |
"status": "scored",
|
| 1718 |
"reason": null,
|
|
|
|
| 3372 |
"raw_text": "0.6286",
|
| 3373 |
"normalized_score": 0.6286317274823326,
|
| 3374 |
"metric_key": "temporal_order_f1",
|
| 3375 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 3376 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3377 |
"reason": null
|
| 3378 |
},
|
|
|
|
| 3498 |
"raw_text": "0.3727",
|
| 3499 |
"normalized_score": 0.37271645981034185,
|
| 3500 |
"metric_key": "misalignment_detection_f1",
|
| 3501 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 3502 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3503 |
"reason": null
|
| 3504 |
},
|
|
|
|
| 3750 |
"raw_text": "0.0000",
|
| 3751 |
"normalized_score": 0.0,
|
| 3752 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 3753 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 3754 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3755 |
"reason": null
|
| 3756 |
},
|
|
|
|
| 3858 |
"raw_text": "0.4319",
|
| 3859 |
"normalized_score": 0.4318674027510605,
|
| 3860 |
"metric_key": "macro_f1",
|
| 3861 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 3862 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 3863 |
"reason": null
|
| 3864 |
},
|
|
|
|
| 4128 |
"raw_text": "0.0009",
|
| 4129 |
"normalized_score": 0.0009279881217520415,
|
| 4130 |
"metric_key": "object_set_forecast_micro_f1",
|
| 4131 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 4132 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4133 |
"reason": null
|
| 4134 |
},
|
docs/data/mirror_parity.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
-
"generated_at_utc": "2026-06-20T20:
|
| 4 |
"hf_root": "hf_publish",
|
| 5 |
"summary": {
|
| 6 |
-
"group_count":
|
| 7 |
"failure_count": 0,
|
| 8 |
"failures_by_surface": {}
|
| 9 |
},
|
|
@@ -138,45 +138,45 @@
|
|
| 138 |
"local": {
|
| 139 |
"path": "repo:docs/data/artifact_index.json",
|
| 140 |
"exists": true,
|
| 141 |
-
"bytes":
|
| 142 |
-
"sha256": "
|
| 143 |
},
|
| 144 |
"mirrors": {
|
| 145 |
"hf_space": {
|
| 146 |
"path": "hf_space:data/artifact_index.json",
|
| 147 |
"exists": true,
|
| 148 |
-
"bytes":
|
| 149 |
-
"sha256": "
|
| 150 |
},
|
| 151 |
"hf_artifacts_data": {
|
| 152 |
"path": "hf_artifacts:data/artifact_index.json",
|
| 153 |
"exists": true,
|
| 154 |
-
"bytes":
|
| 155 |
-
"sha256": "
|
| 156 |
},
|
| 157 |
"hf_artifacts": {
|
| 158 |
"path": "hf_artifacts:docs/data/artifact_index.json",
|
| 159 |
"exists": true,
|
| 160 |
-
"bytes":
|
| 161 |
-
"sha256": "
|
| 162 |
},
|
| 163 |
"hf_model_data": {
|
| 164 |
"path": "hf_model:data/artifact_index.json",
|
| 165 |
"exists": true,
|
| 166 |
-
"bytes":
|
| 167 |
-
"sha256": "
|
| 168 |
},
|
| 169 |
"hf_model_docs_data": {
|
| 170 |
"path": "hf_model:docs/data/artifact_index.json",
|
| 171 |
"exists": true,
|
| 172 |
-
"bytes":
|
| 173 |
-
"sha256": "
|
| 174 |
},
|
| 175 |
"hf_model": {
|
| 176 |
"path": "hf_model:metrics/artifact_index.json",
|
| 177 |
"exists": true,
|
| 178 |
-
"bytes":
|
| 179 |
-
"sha256": "
|
| 180 |
}
|
| 181 |
},
|
| 182 |
"failures": []
|
|
@@ -922,45 +922,45 @@
|
|
| 922 |
"local": {
|
| 923 |
"path": "repo:docs/data/publication_audit.json",
|
| 924 |
"exists": true,
|
| 925 |
-
"bytes":
|
| 926 |
-
"sha256": "
|
| 927 |
},
|
| 928 |
"mirrors": {
|
| 929 |
"hf_space": {
|
| 930 |
"path": "hf_space:data/publication_audit.json",
|
| 931 |
"exists": true,
|
| 932 |
-
"bytes":
|
| 933 |
-
"sha256": "
|
| 934 |
},
|
| 935 |
"hf_artifacts_data": {
|
| 936 |
"path": "hf_artifacts:data/publication_audit.json",
|
| 937 |
"exists": true,
|
| 938 |
-
"bytes":
|
| 939 |
-
"sha256": "
|
| 940 |
},
|
| 941 |
"hf_artifacts": {
|
| 942 |
"path": "hf_artifacts:docs/data/publication_audit.json",
|
| 943 |
"exists": true,
|
| 944 |
-
"bytes":
|
| 945 |
-
"sha256": "
|
| 946 |
},
|
| 947 |
"hf_model_data": {
|
| 948 |
"path": "hf_model:data/publication_audit.json",
|
| 949 |
"exists": true,
|
| 950 |
-
"bytes":
|
| 951 |
-
"sha256": "
|
| 952 |
},
|
| 953 |
"hf_model_docs_data": {
|
| 954 |
"path": "hf_model:docs/data/publication_audit.json",
|
| 955 |
"exists": true,
|
| 956 |
-
"bytes":
|
| 957 |
-
"sha256": "
|
| 958 |
},
|
| 959 |
"hf_model": {
|
| 960 |
"path": "hf_model:metrics/publication_audit.json",
|
| 961 |
"exists": true,
|
| 962 |
-
"bytes":
|
| 963 |
-
"sha256": "
|
| 964 |
}
|
| 965 |
},
|
| 966 |
"failures": []
|
|
@@ -972,44 +972,44 @@
|
|
| 972 |
"path": "repo:docs/data/public_surface_qa.json",
|
| 973 |
"exists": true,
|
| 974 |
"bytes": 7208,
|
| 975 |
-
"sha256": "
|
| 976 |
},
|
| 977 |
"mirrors": {
|
| 978 |
"hf_space": {
|
| 979 |
"path": "hf_space:data/public_surface_qa.json",
|
| 980 |
"exists": true,
|
| 981 |
"bytes": 7208,
|
| 982 |
-
"sha256": "
|
| 983 |
},
|
| 984 |
"hf_artifacts_data": {
|
| 985 |
"path": "hf_artifacts:data/public_surface_qa.json",
|
| 986 |
"exists": true,
|
| 987 |
"bytes": 7208,
|
| 988 |
-
"sha256": "
|
| 989 |
},
|
| 990 |
"hf_artifacts": {
|
| 991 |
"path": "hf_artifacts:docs/data/public_surface_qa.json",
|
| 992 |
"exists": true,
|
| 993 |
"bytes": 7208,
|
| 994 |
-
"sha256": "
|
| 995 |
},
|
| 996 |
"hf_model_data": {
|
| 997 |
"path": "hf_model:data/public_surface_qa.json",
|
| 998 |
"exists": true,
|
| 999 |
"bytes": 7208,
|
| 1000 |
-
"sha256": "
|
| 1001 |
},
|
| 1002 |
"hf_model_docs_data": {
|
| 1003 |
"path": "hf_model:docs/data/public_surface_qa.json",
|
| 1004 |
"exists": true,
|
| 1005 |
"bytes": 7208,
|
| 1006 |
-
"sha256": "
|
| 1007 |
},
|
| 1008 |
"hf_model": {
|
| 1009 |
"path": "hf_model:metrics/public_surface_qa.json",
|
| 1010 |
"exists": true,
|
| 1011 |
"bytes": 7208,
|
| 1012 |
-
"sha256": "
|
| 1013 |
}
|
| 1014 |
},
|
| 1015 |
"failures": []
|
|
@@ -1118,45 +1118,45 @@
|
|
| 1118 |
"local": {
|
| 1119 |
"path": "repo:docs/data/quality_gates.json",
|
| 1120 |
"exists": true,
|
| 1121 |
-
"bytes":
|
| 1122 |
-
"sha256": "
|
| 1123 |
},
|
| 1124 |
"mirrors": {
|
| 1125 |
"hf_space": {
|
| 1126 |
"path": "hf_space:data/quality_gates.json",
|
| 1127 |
"exists": true,
|
| 1128 |
-
"bytes":
|
| 1129 |
-
"sha256": "
|
| 1130 |
},
|
| 1131 |
"hf_artifacts_data": {
|
| 1132 |
"path": "hf_artifacts:data/quality_gates.json",
|
| 1133 |
"exists": true,
|
| 1134 |
-
"bytes":
|
| 1135 |
-
"sha256": "
|
| 1136 |
},
|
| 1137 |
"hf_artifacts": {
|
| 1138 |
"path": "hf_artifacts:docs/data/quality_gates.json",
|
| 1139 |
"exists": true,
|
| 1140 |
-
"bytes":
|
| 1141 |
-
"sha256": "
|
| 1142 |
},
|
| 1143 |
"hf_model_data": {
|
| 1144 |
"path": "hf_model:data/quality_gates.json",
|
| 1145 |
"exists": true,
|
| 1146 |
-
"bytes":
|
| 1147 |
-
"sha256": "
|
| 1148 |
},
|
| 1149 |
"hf_model_docs_data": {
|
| 1150 |
"path": "hf_model:docs/data/quality_gates.json",
|
| 1151 |
"exists": true,
|
| 1152 |
-
"bytes":
|
| 1153 |
-
"sha256": "
|
| 1154 |
},
|
| 1155 |
"hf_model": {
|
| 1156 |
"path": "hf_model:metrics/quality_gates.json",
|
| 1157 |
"exists": true,
|
| 1158 |
-
"bytes":
|
| 1159 |
-
"sha256": "
|
| 1160 |
}
|
| 1161 |
},
|
| 1162 |
"failures": []
|
|
@@ -1756,44 +1756,44 @@
|
|
| 1756 |
"path": "repo:docs/data/single_episode_task_model_radar.json",
|
| 1757 |
"exists": true,
|
| 1758 |
"bytes": 51097,
|
| 1759 |
-
"sha256": "
|
| 1760 |
},
|
| 1761 |
"mirrors": {
|
| 1762 |
"hf_space": {
|
| 1763 |
"path": "hf_space:data/single_episode_task_model_radar.json",
|
| 1764 |
"exists": true,
|
| 1765 |
"bytes": 51097,
|
| 1766 |
-
"sha256": "
|
| 1767 |
},
|
| 1768 |
"hf_artifacts_data": {
|
| 1769 |
"path": "hf_artifacts:data/single_episode_task_model_radar.json",
|
| 1770 |
"exists": true,
|
| 1771 |
"bytes": 51097,
|
| 1772 |
-
"sha256": "
|
| 1773 |
},
|
| 1774 |
"hf_artifacts": {
|
| 1775 |
"path": "hf_artifacts:docs/data/single_episode_task_model_radar.json",
|
| 1776 |
"exists": true,
|
| 1777 |
"bytes": 51097,
|
| 1778 |
-
"sha256": "
|
| 1779 |
},
|
| 1780 |
"hf_model_data": {
|
| 1781 |
"path": "hf_model:data/single_episode_task_model_radar.json",
|
| 1782 |
"exists": true,
|
| 1783 |
"bytes": 51097,
|
| 1784 |
-
"sha256": "
|
| 1785 |
},
|
| 1786 |
"hf_model_docs_data": {
|
| 1787 |
"path": "hf_model:docs/data/single_episode_task_model_radar.json",
|
| 1788 |
"exists": true,
|
| 1789 |
"bytes": 51097,
|
| 1790 |
-
"sha256": "
|
| 1791 |
},
|
| 1792 |
"hf_model": {
|
| 1793 |
"path": "hf_model:metrics/single_episode_task_model_radar.json",
|
| 1794 |
"exists": true,
|
| 1795 |
"bytes": 51097,
|
| 1796 |
-
"sha256": "
|
| 1797 |
}
|
| 1798 |
},
|
| 1799 |
"failures": []
|
|
@@ -1804,45 +1804,45 @@
|
|
| 1804 |
"local": {
|
| 1805 |
"path": "repo:docs/data/episode128_task_model_radar.json",
|
| 1806 |
"exists": true,
|
| 1807 |
-
"bytes":
|
| 1808 |
-
"sha256": "
|
| 1809 |
},
|
| 1810 |
"mirrors": {
|
| 1811 |
"hf_space": {
|
| 1812 |
"path": "hf_space:data/episode128_task_model_radar.json",
|
| 1813 |
"exists": true,
|
| 1814 |
-
"bytes":
|
| 1815 |
-
"sha256": "
|
| 1816 |
},
|
| 1817 |
"hf_artifacts_data": {
|
| 1818 |
"path": "hf_artifacts:data/episode128_task_model_radar.json",
|
| 1819 |
"exists": true,
|
| 1820 |
-
"bytes":
|
| 1821 |
-
"sha256": "
|
| 1822 |
},
|
| 1823 |
"hf_artifacts": {
|
| 1824 |
"path": "hf_artifacts:docs/data/episode128_task_model_radar.json",
|
| 1825 |
"exists": true,
|
| 1826 |
-
"bytes":
|
| 1827 |
-
"sha256": "
|
| 1828 |
},
|
| 1829 |
"hf_model_data": {
|
| 1830 |
"path": "hf_model:data/episode128_task_model_radar.json",
|
| 1831 |
"exists": true,
|
| 1832 |
-
"bytes":
|
| 1833 |
-
"sha256": "
|
| 1834 |
},
|
| 1835 |
"hf_model_docs_data": {
|
| 1836 |
"path": "hf_model:docs/data/episode128_task_model_radar.json",
|
| 1837 |
"exists": true,
|
| 1838 |
-
"bytes":
|
| 1839 |
-
"sha256": "
|
| 1840 |
},
|
| 1841 |
"hf_model": {
|
| 1842 |
"path": "hf_model:metrics/episode128_task_model_radar.json",
|
| 1843 |
"exists": true,
|
| 1844 |
-
"bytes":
|
| 1845 |
-
"sha256": "
|
| 1846 |
}
|
| 1847 |
},
|
| 1848 |
"failures": []
|
|
@@ -2098,45 +2098,45 @@
|
|
| 2098 |
"local": {
|
| 2099 |
"path": "repo:docs/data/task_method_20_result_matrix.json",
|
| 2100 |
"exists": true,
|
| 2101 |
-
"bytes":
|
| 2102 |
-
"sha256": "
|
| 2103 |
},
|
| 2104 |
"mirrors": {
|
| 2105 |
"hf_space": {
|
| 2106 |
"path": "hf_space:data/task_method_20_result_matrix.json",
|
| 2107 |
"exists": true,
|
| 2108 |
-
"bytes":
|
| 2109 |
-
"sha256": "
|
| 2110 |
},
|
| 2111 |
"hf_artifacts_data": {
|
| 2112 |
"path": "hf_artifacts:data/task_method_20_result_matrix.json",
|
| 2113 |
"exists": true,
|
| 2114 |
-
"bytes":
|
| 2115 |
-
"sha256": "
|
| 2116 |
},
|
| 2117 |
"hf_artifacts": {
|
| 2118 |
"path": "hf_artifacts:docs/data/task_method_20_result_matrix.json",
|
| 2119 |
"exists": true,
|
| 2120 |
-
"bytes":
|
| 2121 |
-
"sha256": "
|
| 2122 |
},
|
| 2123 |
"hf_model_data": {
|
| 2124 |
"path": "hf_model:data/task_method_20_result_matrix.json",
|
| 2125 |
"exists": true,
|
| 2126 |
-
"bytes":
|
| 2127 |
-
"sha256": "
|
| 2128 |
},
|
| 2129 |
"hf_model_docs_data": {
|
| 2130 |
"path": "hf_model:docs/data/task_method_20_result_matrix.json",
|
| 2131 |
"exists": true,
|
| 2132 |
-
"bytes":
|
| 2133 |
-
"sha256": "
|
| 2134 |
},
|
| 2135 |
"hf_model": {
|
| 2136 |
"path": "hf_model:metrics/task_method_20_result_matrix.json",
|
| 2137 |
"exists": true,
|
| 2138 |
-
"bytes":
|
| 2139 |
-
"sha256": "
|
| 2140 |
}
|
| 2141 |
},
|
| 2142 |
"failures": []
|
|
@@ -2148,44 +2148,93 @@
|
|
| 2148 |
"path": "repo:docs/data/task_method_20_gap_audit.json",
|
| 2149 |
"exists": true,
|
| 2150 |
"bytes": 8500,
|
| 2151 |
-
"sha256": "
|
| 2152 |
},
|
| 2153 |
"mirrors": {
|
| 2154 |
"hf_space": {
|
| 2155 |
"path": "hf_space:data/task_method_20_gap_audit.json",
|
| 2156 |
"exists": true,
|
| 2157 |
"bytes": 8500,
|
| 2158 |
-
"sha256": "
|
| 2159 |
},
|
| 2160 |
"hf_artifacts_data": {
|
| 2161 |
"path": "hf_artifacts:data/task_method_20_gap_audit.json",
|
| 2162 |
"exists": true,
|
| 2163 |
"bytes": 8500,
|
| 2164 |
-
"sha256": "
|
| 2165 |
},
|
| 2166 |
"hf_artifacts": {
|
| 2167 |
"path": "hf_artifacts:docs/data/task_method_20_gap_audit.json",
|
| 2168 |
"exists": true,
|
| 2169 |
"bytes": 8500,
|
| 2170 |
-
"sha256": "
|
| 2171 |
},
|
| 2172 |
"hf_model_data": {
|
| 2173 |
"path": "hf_model:data/task_method_20_gap_audit.json",
|
| 2174 |
"exists": true,
|
| 2175 |
"bytes": 8500,
|
| 2176 |
-
"sha256": "
|
| 2177 |
},
|
| 2178 |
"hf_model_docs_data": {
|
| 2179 |
"path": "hf_model:docs/data/task_method_20_gap_audit.json",
|
| 2180 |
"exists": true,
|
| 2181 |
"bytes": 8500,
|
| 2182 |
-
"sha256": "
|
| 2183 |
},
|
| 2184 |
"hf_model": {
|
| 2185 |
"path": "hf_model:metrics/task_method_20_gap_audit.json",
|
| 2186 |
"exists": true,
|
| 2187 |
"bytes": 8500,
|
| 2188 |
-
"sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2189 |
}
|
| 2190 |
},
|
| 2191 |
"failures": []
|
|
@@ -2245,45 +2294,45 @@
|
|
| 2245 |
"local": {
|
| 2246 |
"path": "repo:docs/data/unified_task_model_radar.json",
|
| 2247 |
"exists": true,
|
| 2248 |
-
"bytes":
|
| 2249 |
-
"sha256": "
|
| 2250 |
},
|
| 2251 |
"mirrors": {
|
| 2252 |
"hf_space": {
|
| 2253 |
"path": "hf_space:data/unified_task_model_radar.json",
|
| 2254 |
"exists": true,
|
| 2255 |
-
"bytes":
|
| 2256 |
-
"sha256": "
|
| 2257 |
},
|
| 2258 |
"hf_artifacts_data": {
|
| 2259 |
"path": "hf_artifacts:data/unified_task_model_radar.json",
|
| 2260 |
"exists": true,
|
| 2261 |
-
"bytes":
|
| 2262 |
-
"sha256": "
|
| 2263 |
},
|
| 2264 |
"hf_artifacts": {
|
| 2265 |
"path": "hf_artifacts:docs/data/unified_task_model_radar.json",
|
| 2266 |
"exists": true,
|
| 2267 |
-
"bytes":
|
| 2268 |
-
"sha256": "
|
| 2269 |
},
|
| 2270 |
"hf_model_data": {
|
| 2271 |
"path": "hf_model:data/unified_task_model_radar.json",
|
| 2272 |
"exists": true,
|
| 2273 |
-
"bytes":
|
| 2274 |
-
"sha256": "
|
| 2275 |
},
|
| 2276 |
"hf_model_docs_data": {
|
| 2277 |
"path": "hf_model:docs/data/unified_task_model_radar.json",
|
| 2278 |
"exists": true,
|
| 2279 |
-
"bytes":
|
| 2280 |
-
"sha256": "
|
| 2281 |
},
|
| 2282 |
"hf_model": {
|
| 2283 |
"path": "hf_model:metrics/unified_task_model_radar.json",
|
| 2284 |
"exists": true,
|
| 2285 |
-
"bytes":
|
| 2286 |
-
"sha256": "
|
| 2287 |
}
|
| 2288 |
},
|
| 2289 |
"failures": []
|
|
@@ -2294,45 +2343,45 @@
|
|
| 2294 |
"local": {
|
| 2295 |
"path": "repo:docs/data/website_integrity.json",
|
| 2296 |
"exists": true,
|
| 2297 |
-
"bytes":
|
| 2298 |
-
"sha256": "
|
| 2299 |
},
|
| 2300 |
"mirrors": {
|
| 2301 |
"hf_space": {
|
| 2302 |
"path": "hf_space:data/website_integrity.json",
|
| 2303 |
"exists": true,
|
| 2304 |
-
"bytes":
|
| 2305 |
-
"sha256": "
|
| 2306 |
},
|
| 2307 |
"hf_artifacts_data": {
|
| 2308 |
"path": "hf_artifacts:data/website_integrity.json",
|
| 2309 |
"exists": true,
|
| 2310 |
-
"bytes":
|
| 2311 |
-
"sha256": "
|
| 2312 |
},
|
| 2313 |
"hf_artifacts": {
|
| 2314 |
"path": "hf_artifacts:docs/data/website_integrity.json",
|
| 2315 |
"exists": true,
|
| 2316 |
-
"bytes":
|
| 2317 |
-
"sha256": "
|
| 2318 |
},
|
| 2319 |
"hf_model_data": {
|
| 2320 |
"path": "hf_model:data/website_integrity.json",
|
| 2321 |
"exists": true,
|
| 2322 |
-
"bytes":
|
| 2323 |
-
"sha256": "
|
| 2324 |
},
|
| 2325 |
"hf_model_docs_data": {
|
| 2326 |
"path": "hf_model:docs/data/website_integrity.json",
|
| 2327 |
"exists": true,
|
| 2328 |
-
"bytes":
|
| 2329 |
-
"sha256": "
|
| 2330 |
},
|
| 2331 |
"hf_model": {
|
| 2332 |
"path": "hf_model:metrics/website_integrity.json",
|
| 2333 |
"exists": true,
|
| 2334 |
-
"bytes":
|
| 2335 |
-
"sha256": "
|
| 2336 |
}
|
| 2337 |
},
|
| 2338 |
"failures": []
|
|
@@ -4234,21 +4283,21 @@
|
|
| 4234 |
"local": {
|
| 4235 |
"path": "repo:scripts/omni/eval_qwen3_omni_future_task_probes.py",
|
| 4236 |
"exists": true,
|
| 4237 |
-
"bytes":
|
| 4238 |
-
"sha256": "
|
| 4239 |
},
|
| 4240 |
"mirrors": {
|
| 4241 |
"hf_artifacts": {
|
| 4242 |
"path": "hf_artifacts:scripts/omni/eval_qwen3_omni_future_task_probes.py",
|
| 4243 |
"exists": true,
|
| 4244 |
-
"bytes":
|
| 4245 |
-
"sha256": "
|
| 4246 |
},
|
| 4247 |
"hf_model": {
|
| 4248 |
"path": "hf_model:scripts/omni/eval_qwen3_omni_future_task_probes.py",
|
| 4249 |
"exists": true,
|
| 4250 |
-
"bytes":
|
| 4251 |
-
"sha256": "
|
| 4252 |
}
|
| 4253 |
},
|
| 4254 |
"failures": []
|
|
@@ -4284,21 +4333,21 @@
|
|
| 4284 |
"local": {
|
| 4285 |
"path": "repo:scripts/omni/eval_cosmos3_super_future_task_probes.py",
|
| 4286 |
"exists": true,
|
| 4287 |
-
"bytes":
|
| 4288 |
-
"sha256": "
|
| 4289 |
},
|
| 4290 |
"mirrors": {
|
| 4291 |
"hf_artifacts": {
|
| 4292 |
"path": "hf_artifacts:scripts/omni/eval_cosmos3_super_future_task_probes.py",
|
| 4293 |
"exists": true,
|
| 4294 |
-
"bytes":
|
| 4295 |
-
"sha256": "
|
| 4296 |
},
|
| 4297 |
"hf_model": {
|
| 4298 |
"path": "hf_model:scripts/omni/eval_cosmos3_super_future_task_probes.py",
|
| 4299 |
"exists": true,
|
| 4300 |
-
"bytes":
|
| 4301 |
-
"sha256": "
|
| 4302 |
}
|
| 4303 |
},
|
| 4304 |
"failures": []
|
|
@@ -4384,21 +4433,21 @@
|
|
| 4384 |
"local": {
|
| 4385 |
"path": "repo:scripts/omni/merge_qwen3_omni_future_task_probe_shards.py",
|
| 4386 |
"exists": true,
|
| 4387 |
-
"bytes":
|
| 4388 |
-
"sha256": "
|
| 4389 |
},
|
| 4390 |
"mirrors": {
|
| 4391 |
"hf_artifacts": {
|
| 4392 |
"path": "hf_artifacts:scripts/omni/merge_qwen3_omni_future_task_probe_shards.py",
|
| 4393 |
"exists": true,
|
| 4394 |
-
"bytes":
|
| 4395 |
-
"sha256": "
|
| 4396 |
},
|
| 4397 |
"hf_model": {
|
| 4398 |
"path": "hf_model:scripts/omni/merge_qwen3_omni_future_task_probe_shards.py",
|
| 4399 |
"exists": true,
|
| 4400 |
-
"bytes":
|
| 4401 |
-
"sha256": "
|
| 4402 |
}
|
| 4403 |
},
|
| 4404 |
"failures": []
|
|
@@ -4409,21 +4458,21 @@
|
|
| 4409 |
"local": {
|
| 4410 |
"path": "repo:scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py",
|
| 4411 |
"exists": true,
|
| 4412 |
-
"bytes":
|
| 4413 |
-
"sha256": "
|
| 4414 |
},
|
| 4415 |
"mirrors": {
|
| 4416 |
"hf_artifacts": {
|
| 4417 |
"path": "hf_artifacts:scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py",
|
| 4418 |
"exists": true,
|
| 4419 |
-
"bytes":
|
| 4420 |
-
"sha256": "
|
| 4421 |
},
|
| 4422 |
"hf_model": {
|
| 4423 |
"path": "hf_model:scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py",
|
| 4424 |
"exists": true,
|
| 4425 |
-
"bytes":
|
| 4426 |
-
"sha256": "
|
| 4427 |
}
|
| 4428 |
},
|
| 4429 |
"failures": []
|
|
@@ -4434,21 +4483,21 @@
|
|
| 4434 |
"local": {
|
| 4435 |
"path": "repo:scripts/omni/merge_cosmos3_super_future_task_probe_shards.py",
|
| 4436 |
"exists": true,
|
| 4437 |
-
"bytes":
|
| 4438 |
-
"sha256": "
|
| 4439 |
},
|
| 4440 |
"mirrors": {
|
| 4441 |
"hf_artifacts": {
|
| 4442 |
"path": "hf_artifacts:scripts/omni/merge_cosmos3_super_future_task_probe_shards.py",
|
| 4443 |
"exists": true,
|
| 4444 |
-
"bytes":
|
| 4445 |
-
"sha256": "
|
| 4446 |
},
|
| 4447 |
"hf_model": {
|
| 4448 |
"path": "hf_model:scripts/omni/merge_cosmos3_super_future_task_probe_shards.py",
|
| 4449 |
"exists": true,
|
| 4450 |
-
"bytes":
|
| 4451 |
-
"sha256": "
|
| 4452 |
}
|
| 4453 |
},
|
| 4454 |
"failures": []
|
|
@@ -4784,21 +4833,21 @@
|
|
| 4784 |
"local": {
|
| 4785 |
"path": "repo:scripts/omni/score_model_output_probes.py",
|
| 4786 |
"exists": true,
|
| 4787 |
-
"bytes":
|
| 4788 |
-
"sha256": "
|
| 4789 |
},
|
| 4790 |
"mirrors": {
|
| 4791 |
"hf_artifacts": {
|
| 4792 |
"path": "hf_artifacts:scripts/omni/score_model_output_probes.py",
|
| 4793 |
"exists": true,
|
| 4794 |
-
"bytes":
|
| 4795 |
-
"sha256": "
|
| 4796 |
},
|
| 4797 |
"hf_model": {
|
| 4798 |
"path": "hf_model:scripts/omni/score_model_output_probes.py",
|
| 4799 |
"exists": true,
|
| 4800 |
-
"bytes":
|
| 4801 |
-
"sha256": "
|
| 4802 |
}
|
| 4803 |
},
|
| 4804 |
"failures": []
|
|
@@ -4809,21 +4858,21 @@
|
|
| 4809 |
"local": {
|
| 4810 |
"path": "repo:scripts/omni/run_128_task_baselines.py",
|
| 4811 |
"exists": true,
|
| 4812 |
-
"bytes":
|
| 4813 |
-
"sha256": "
|
| 4814 |
},
|
| 4815 |
"mirrors": {
|
| 4816 |
"hf_artifacts": {
|
| 4817 |
"path": "hf_artifacts:scripts/omni/run_128_task_baselines.py",
|
| 4818 |
"exists": true,
|
| 4819 |
-
"bytes":
|
| 4820 |
-
"sha256": "
|
| 4821 |
},
|
| 4822 |
"hf_model": {
|
| 4823 |
"path": "hf_model:scripts/omni/run_128_task_baselines.py",
|
| 4824 |
"exists": true,
|
| 4825 |
-
"bytes":
|
| 4826 |
-
"sha256": "
|
| 4827 |
}
|
| 4828 |
},
|
| 4829 |
"failures": []
|
|
@@ -4884,21 +4933,21 @@
|
|
| 4884 |
"local": {
|
| 4885 |
"path": "repo:scripts/omni/train_cosmos3_super_forward_dynamics_lora.py",
|
| 4886 |
"exists": true,
|
| 4887 |
-
"bytes":
|
| 4888 |
-
"sha256": "
|
| 4889 |
},
|
| 4890 |
"mirrors": {
|
| 4891 |
"hf_artifacts": {
|
| 4892 |
"path": "hf_artifacts:scripts/omni/train_cosmos3_super_forward_dynamics_lora.py",
|
| 4893 |
"exists": true,
|
| 4894 |
-
"bytes":
|
| 4895 |
-
"sha256": "
|
| 4896 |
},
|
| 4897 |
"hf_model": {
|
| 4898 |
"path": "hf_model:scripts/omni/train_cosmos3_super_forward_dynamics_lora.py",
|
| 4899 |
"exists": true,
|
| 4900 |
-
"bytes":
|
| 4901 |
-
"sha256": "
|
| 4902 |
}
|
| 4903 |
},
|
| 4904 |
"failures": []
|
|
@@ -4934,21 +4983,21 @@
|
|
| 4934 |
"local": {
|
| 4935 |
"path": "repo:scripts/build_artifact_index.py",
|
| 4936 |
"exists": true,
|
| 4937 |
-
"bytes":
|
| 4938 |
-
"sha256": "
|
| 4939 |
},
|
| 4940 |
"mirrors": {
|
| 4941 |
"hf_artifacts": {
|
| 4942 |
"path": "hf_artifacts:scripts/build_artifact_index.py",
|
| 4943 |
"exists": true,
|
| 4944 |
-
"bytes":
|
| 4945 |
-
"sha256": "
|
| 4946 |
},
|
| 4947 |
"hf_model": {
|
| 4948 |
"path": "hf_model:scripts/build_artifact_index.py",
|
| 4949 |
"exists": true,
|
| 4950 |
-
"bytes":
|
| 4951 |
-
"sha256": "
|
| 4952 |
}
|
| 4953 |
},
|
| 4954 |
"failures": []
|
|
@@ -5034,21 +5083,21 @@
|
|
| 5034 |
"local": {
|
| 5035 |
"path": "repo:scripts/build_quality_gates.py",
|
| 5036 |
"exists": true,
|
| 5037 |
-
"bytes":
|
| 5038 |
-
"sha256": "
|
| 5039 |
},
|
| 5040 |
"mirrors": {
|
| 5041 |
"hf_artifacts": {
|
| 5042 |
"path": "hf_artifacts:scripts/build_quality_gates.py",
|
| 5043 |
"exists": true,
|
| 5044 |
-
"bytes":
|
| 5045 |
-
"sha256": "
|
| 5046 |
},
|
| 5047 |
"hf_model": {
|
| 5048 |
"path": "hf_model:scripts/build_quality_gates.py",
|
| 5049 |
"exists": true,
|
| 5050 |
-
"bytes":
|
| 5051 |
-
"sha256": "
|
| 5052 |
}
|
| 5053 |
},
|
| 5054 |
"failures": []
|
|
@@ -5284,21 +5333,21 @@
|
|
| 5284 |
"local": {
|
| 5285 |
"path": "repo:scripts/build_unified_task_model_radar.py",
|
| 5286 |
"exists": true,
|
| 5287 |
-
"bytes":
|
| 5288 |
-
"sha256": "
|
| 5289 |
},
|
| 5290 |
"mirrors": {
|
| 5291 |
"hf_artifacts": {
|
| 5292 |
"path": "hf_artifacts:scripts/build_unified_task_model_radar.py",
|
| 5293 |
"exists": true,
|
| 5294 |
-
"bytes":
|
| 5295 |
-
"sha256": "
|
| 5296 |
},
|
| 5297 |
"hf_model": {
|
| 5298 |
"path": "hf_model:scripts/build_unified_task_model_radar.py",
|
| 5299 |
"exists": true,
|
| 5300 |
-
"bytes":
|
| 5301 |
-
"sha256": "
|
| 5302 |
}
|
| 5303 |
},
|
| 5304 |
"failures": []
|
|
@@ -5334,21 +5383,21 @@
|
|
| 5334 |
"local": {
|
| 5335 |
"path": "repo:scripts/verify_live_publication.py",
|
| 5336 |
"exists": true,
|
| 5337 |
-
"bytes":
|
| 5338 |
-
"sha256": "
|
| 5339 |
},
|
| 5340 |
"mirrors": {
|
| 5341 |
"hf_artifacts": {
|
| 5342 |
"path": "hf_artifacts:scripts/verify_live_publication.py",
|
| 5343 |
"exists": true,
|
| 5344 |
-
"bytes":
|
| 5345 |
-
"sha256": "
|
| 5346 |
},
|
| 5347 |
"hf_model": {
|
| 5348 |
"path": "hf_model:scripts/verify_live_publication.py",
|
| 5349 |
"exists": true,
|
| 5350 |
-
"bytes":
|
| 5351 |
-
"sha256": "
|
| 5352 |
}
|
| 5353 |
},
|
| 5354 |
"failures": []
|
|
@@ -5359,21 +5408,21 @@
|
|
| 5359 |
"local": {
|
| 5360 |
"path": "repo:scripts/validate_mirror_parity.py",
|
| 5361 |
"exists": true,
|
| 5362 |
-
"bytes":
|
| 5363 |
-
"sha256": "
|
| 5364 |
},
|
| 5365 |
"mirrors": {
|
| 5366 |
"hf_artifacts": {
|
| 5367 |
"path": "hf_artifacts:scripts/validate_mirror_parity.py",
|
| 5368 |
"exists": true,
|
| 5369 |
-
"bytes":
|
| 5370 |
-
"sha256": "
|
| 5371 |
},
|
| 5372 |
"hf_model": {
|
| 5373 |
"path": "hf_model:scripts/validate_mirror_parity.py",
|
| 5374 |
"exists": true,
|
| 5375 |
-
"bytes":
|
| 5376 |
-
"sha256": "
|
| 5377 |
}
|
| 5378 |
},
|
| 5379 |
"failures": []
|
|
@@ -5384,21 +5433,46 @@
|
|
| 5384 |
"local": {
|
| 5385 |
"path": "repo:scripts/validate_publication_package.py",
|
| 5386 |
"exists": true,
|
| 5387 |
-
"bytes":
|
| 5388 |
-
"sha256": "
|
| 5389 |
},
|
| 5390 |
"mirrors": {
|
| 5391 |
"hf_artifacts": {
|
| 5392 |
"path": "hf_artifacts:scripts/validate_publication_package.py",
|
| 5393 |
"exists": true,
|
| 5394 |
-
"bytes":
|
| 5395 |
-
"sha256": "
|
| 5396 |
},
|
| 5397 |
"hf_model": {
|
| 5398 |
"path": "hf_model:scripts/validate_publication_package.py",
|
| 5399 |
"exists": true,
|
| 5400 |
-
"bytes":
|
| 5401 |
-
"sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5402 |
}
|
| 5403 |
},
|
| 5404 |
"failures": []
|
|
@@ -5509,21 +5583,21 @@
|
|
| 5509 |
"local": {
|
| 5510 |
"path": "repo:scripts/sync_hf_publish_mirrors.py",
|
| 5511 |
"exists": true,
|
| 5512 |
-
"bytes":
|
| 5513 |
-
"sha256": "
|
| 5514 |
},
|
| 5515 |
"mirrors": {
|
| 5516 |
"hf_artifacts": {
|
| 5517 |
"path": "hf_artifacts:scripts/sync_hf_publish_mirrors.py",
|
| 5518 |
"exists": true,
|
| 5519 |
-
"bytes":
|
| 5520 |
-
"sha256": "
|
| 5521 |
},
|
| 5522 |
"hf_model": {
|
| 5523 |
"path": "hf_model:scripts/sync_hf_publish_mirrors.py",
|
| 5524 |
"exists": true,
|
| 5525 |
-
"bytes":
|
| 5526 |
-
"sha256": "
|
| 5527 |
}
|
| 5528 |
},
|
| 5529 |
"failures": []
|
|
@@ -13410,21 +13484,21 @@
|
|
| 13410 |
"local": {
|
| 13411 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 13412 |
"exists": true,
|
| 13413 |
-
"bytes":
|
| 13414 |
-
"sha256": "
|
| 13415 |
},
|
| 13416 |
"mirrors": {
|
| 13417 |
"hf_artifacts": {
|
| 13418 |
"path": "hf_artifacts:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 13419 |
"exists": true,
|
| 13420 |
-
"bytes":
|
| 13421 |
-
"sha256": "
|
| 13422 |
},
|
| 13423 |
"hf_model": {
|
| 13424 |
"path": "hf_model:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 13425 |
"exists": true,
|
| 13426 |
-
"bytes":
|
| 13427 |
-
"sha256": "
|
| 13428 |
}
|
| 13429 |
},
|
| 13430 |
"failures": []
|
|
@@ -13435,21 +13509,21 @@
|
|
| 13435 |
"local": {
|
| 13436 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 13437 |
"exists": true,
|
| 13438 |
-
"bytes":
|
| 13439 |
-
"sha256": "
|
| 13440 |
},
|
| 13441 |
"mirrors": {
|
| 13442 |
"hf_artifacts": {
|
| 13443 |
"path": "hf_artifacts:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 13444 |
"exists": true,
|
| 13445 |
-
"bytes":
|
| 13446 |
-
"sha256": "
|
| 13447 |
},
|
| 13448 |
"hf_model": {
|
| 13449 |
"path": "hf_model:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 13450 |
"exists": true,
|
| 13451 |
-
"bytes":
|
| 13452 |
-
"sha256": "
|
| 13453 |
}
|
| 13454 |
},
|
| 13455 |
"failures": []
|
|
@@ -25451,15 +25525,15 @@
|
|
| 25451 |
"local": {
|
| 25452 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 25453 |
"exists": true,
|
| 25454 |
-
"bytes":
|
| 25455 |
-
"sha256": "
|
| 25456 |
},
|
| 25457 |
"mirrors": {
|
| 25458 |
"hf_space": {
|
| 25459 |
"path": "hf_space:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 25460 |
"exists": true,
|
| 25461 |
-
"bytes":
|
| 25462 |
-
"sha256": "
|
| 25463 |
}
|
| 25464 |
},
|
| 25465 |
"failures": []
|
|
@@ -25470,15 +25544,15 @@
|
|
| 25470 |
"local": {
|
| 25471 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 25472 |
"exists": true,
|
| 25473 |
-
"bytes":
|
| 25474 |
-
"sha256": "
|
| 25475 |
},
|
| 25476 |
"mirrors": {
|
| 25477 |
"hf_space": {
|
| 25478 |
"path": "hf_space:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 25479 |
"exists": true,
|
| 25480 |
-
"bytes":
|
| 25481 |
-
"sha256": "
|
| 25482 |
}
|
| 25483 |
},
|
| 25484 |
"failures": []
|
|
@@ -30347,27 +30421,27 @@
|
|
| 30347 |
"local": {
|
| 30348 |
"path": "repo:QUALITY_GATES.md",
|
| 30349 |
"exists": true,
|
| 30350 |
-
"bytes":
|
| 30351 |
-
"sha256": "
|
| 30352 |
},
|
| 30353 |
"mirrors": {
|
| 30354 |
"hf_space": {
|
| 30355 |
"path": "hf_space:QUALITY_GATES.md",
|
| 30356 |
"exists": true,
|
| 30357 |
-
"bytes":
|
| 30358 |
-
"sha256": "
|
| 30359 |
},
|
| 30360 |
"hf_artifacts": {
|
| 30361 |
"path": "hf_artifacts:QUALITY_GATES.md",
|
| 30362 |
"exists": true,
|
| 30363 |
-
"bytes":
|
| 30364 |
-
"sha256": "
|
| 30365 |
},
|
| 30366 |
"hf_model": {
|
| 30367 |
"path": "hf_model:QUALITY_GATES.md",
|
| 30368 |
"exists": true,
|
| 30369 |
-
"bytes":
|
| 30370 |
-
"sha256": "
|
| 30371 |
}
|
| 30372 |
},
|
| 30373 |
"failures": []
|
|
@@ -30782,26 +30856,26 @@
|
|
| 30782 |
"path": "repo:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30783 |
"exists": true,
|
| 30784 |
"bytes": 3417,
|
| 30785 |
-
"sha256": "
|
| 30786 |
},
|
| 30787 |
"mirrors": {
|
| 30788 |
"hf_space": {
|
| 30789 |
"path": "hf_space:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30790 |
"exists": true,
|
| 30791 |
"bytes": 3417,
|
| 30792 |
-
"sha256": "
|
| 30793 |
},
|
| 30794 |
"hf_artifacts": {
|
| 30795 |
"path": "hf_artifacts:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30796 |
"exists": true,
|
| 30797 |
"bytes": 3417,
|
| 30798 |
-
"sha256": "
|
| 30799 |
},
|
| 30800 |
"hf_model": {
|
| 30801 |
"path": "hf_model:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30802 |
"exists": true,
|
| 30803 |
"bytes": 3417,
|
| 30804 |
-
"sha256": "
|
| 30805 |
}
|
| 30806 |
},
|
| 30807 |
"failures": []
|
|
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:49:41+00:00",
|
| 4 |
"hf_root": "hf_publish",
|
| 5 |
"summary": {
|
| 6 |
+
"group_count": 1236,
|
| 7 |
"failure_count": 0,
|
| 8 |
"failures_by_surface": {}
|
| 9 |
},
|
|
|
|
| 138 |
"local": {
|
| 139 |
"path": "repo:docs/data/artifact_index.json",
|
| 140 |
"exists": true,
|
| 141 |
+
"bytes": 122823,
|
| 142 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 143 |
},
|
| 144 |
"mirrors": {
|
| 145 |
"hf_space": {
|
| 146 |
"path": "hf_space:data/artifact_index.json",
|
| 147 |
"exists": true,
|
| 148 |
+
"bytes": 122823,
|
| 149 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 150 |
},
|
| 151 |
"hf_artifacts_data": {
|
| 152 |
"path": "hf_artifacts:data/artifact_index.json",
|
| 153 |
"exists": true,
|
| 154 |
+
"bytes": 122823,
|
| 155 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 156 |
},
|
| 157 |
"hf_artifacts": {
|
| 158 |
"path": "hf_artifacts:docs/data/artifact_index.json",
|
| 159 |
"exists": true,
|
| 160 |
+
"bytes": 122823,
|
| 161 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 162 |
},
|
| 163 |
"hf_model_data": {
|
| 164 |
"path": "hf_model:data/artifact_index.json",
|
| 165 |
"exists": true,
|
| 166 |
+
"bytes": 122823,
|
| 167 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 168 |
},
|
| 169 |
"hf_model_docs_data": {
|
| 170 |
"path": "hf_model:docs/data/artifact_index.json",
|
| 171 |
"exists": true,
|
| 172 |
+
"bytes": 122823,
|
| 173 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 174 |
},
|
| 175 |
"hf_model": {
|
| 176 |
"path": "hf_model:metrics/artifact_index.json",
|
| 177 |
"exists": true,
|
| 178 |
+
"bytes": 122823,
|
| 179 |
+
"sha256": "d413b142032308e5a4599794313dff0b1a36484e441430fd9eb87b9806cf3bb9"
|
| 180 |
}
|
| 181 |
},
|
| 182 |
"failures": []
|
|
|
|
| 922 |
"local": {
|
| 923 |
"path": "repo:docs/data/publication_audit.json",
|
| 924 |
"exists": true,
|
| 925 |
+
"bytes": 10662,
|
| 926 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 927 |
},
|
| 928 |
"mirrors": {
|
| 929 |
"hf_space": {
|
| 930 |
"path": "hf_space:data/publication_audit.json",
|
| 931 |
"exists": true,
|
| 932 |
+
"bytes": 10662,
|
| 933 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 934 |
},
|
| 935 |
"hf_artifacts_data": {
|
| 936 |
"path": "hf_artifacts:data/publication_audit.json",
|
| 937 |
"exists": true,
|
| 938 |
+
"bytes": 10662,
|
| 939 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 940 |
},
|
| 941 |
"hf_artifacts": {
|
| 942 |
"path": "hf_artifacts:docs/data/publication_audit.json",
|
| 943 |
"exists": true,
|
| 944 |
+
"bytes": 10662,
|
| 945 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 946 |
},
|
| 947 |
"hf_model_data": {
|
| 948 |
"path": "hf_model:data/publication_audit.json",
|
| 949 |
"exists": true,
|
| 950 |
+
"bytes": 10662,
|
| 951 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 952 |
},
|
| 953 |
"hf_model_docs_data": {
|
| 954 |
"path": "hf_model:docs/data/publication_audit.json",
|
| 955 |
"exists": true,
|
| 956 |
+
"bytes": 10662,
|
| 957 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 958 |
},
|
| 959 |
"hf_model": {
|
| 960 |
"path": "hf_model:metrics/publication_audit.json",
|
| 961 |
"exists": true,
|
| 962 |
+
"bytes": 10662,
|
| 963 |
+
"sha256": "61dbcf391ac2ea4d9d33325847276cbc70c94af4d57266772820fc54cb8d701b"
|
| 964 |
}
|
| 965 |
},
|
| 966 |
"failures": []
|
|
|
|
| 972 |
"path": "repo:docs/data/public_surface_qa.json",
|
| 973 |
"exists": true,
|
| 974 |
"bytes": 7208,
|
| 975 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 976 |
},
|
| 977 |
"mirrors": {
|
| 978 |
"hf_space": {
|
| 979 |
"path": "hf_space:data/public_surface_qa.json",
|
| 980 |
"exists": true,
|
| 981 |
"bytes": 7208,
|
| 982 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 983 |
},
|
| 984 |
"hf_artifacts_data": {
|
| 985 |
"path": "hf_artifacts:data/public_surface_qa.json",
|
| 986 |
"exists": true,
|
| 987 |
"bytes": 7208,
|
| 988 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 989 |
},
|
| 990 |
"hf_artifacts": {
|
| 991 |
"path": "hf_artifacts:docs/data/public_surface_qa.json",
|
| 992 |
"exists": true,
|
| 993 |
"bytes": 7208,
|
| 994 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 995 |
},
|
| 996 |
"hf_model_data": {
|
| 997 |
"path": "hf_model:data/public_surface_qa.json",
|
| 998 |
"exists": true,
|
| 999 |
"bytes": 7208,
|
| 1000 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 1001 |
},
|
| 1002 |
"hf_model_docs_data": {
|
| 1003 |
"path": "hf_model:docs/data/public_surface_qa.json",
|
| 1004 |
"exists": true,
|
| 1005 |
"bytes": 7208,
|
| 1006 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 1007 |
},
|
| 1008 |
"hf_model": {
|
| 1009 |
"path": "hf_model:metrics/public_surface_qa.json",
|
| 1010 |
"exists": true,
|
| 1011 |
"bytes": 7208,
|
| 1012 |
+
"sha256": "d2a7bed78f2a8ef23ca6c38864aaf2a7f933b170582e8fa1457215491aa6639b"
|
| 1013 |
}
|
| 1014 |
},
|
| 1015 |
"failures": []
|
|
|
|
| 1118 |
"local": {
|
| 1119 |
"path": "repo:docs/data/quality_gates.json",
|
| 1120 |
"exists": true,
|
| 1121 |
+
"bytes": 8640,
|
| 1122 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1123 |
},
|
| 1124 |
"mirrors": {
|
| 1125 |
"hf_space": {
|
| 1126 |
"path": "hf_space:data/quality_gates.json",
|
| 1127 |
"exists": true,
|
| 1128 |
+
"bytes": 8640,
|
| 1129 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1130 |
},
|
| 1131 |
"hf_artifacts_data": {
|
| 1132 |
"path": "hf_artifacts:data/quality_gates.json",
|
| 1133 |
"exists": true,
|
| 1134 |
+
"bytes": 8640,
|
| 1135 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1136 |
},
|
| 1137 |
"hf_artifacts": {
|
| 1138 |
"path": "hf_artifacts:docs/data/quality_gates.json",
|
| 1139 |
"exists": true,
|
| 1140 |
+
"bytes": 8640,
|
| 1141 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1142 |
},
|
| 1143 |
"hf_model_data": {
|
| 1144 |
"path": "hf_model:data/quality_gates.json",
|
| 1145 |
"exists": true,
|
| 1146 |
+
"bytes": 8640,
|
| 1147 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1148 |
},
|
| 1149 |
"hf_model_docs_data": {
|
| 1150 |
"path": "hf_model:docs/data/quality_gates.json",
|
| 1151 |
"exists": true,
|
| 1152 |
+
"bytes": 8640,
|
| 1153 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1154 |
},
|
| 1155 |
"hf_model": {
|
| 1156 |
"path": "hf_model:metrics/quality_gates.json",
|
| 1157 |
"exists": true,
|
| 1158 |
+
"bytes": 8640,
|
| 1159 |
+
"sha256": "94054e18f448a92786b0cf8e52e66a838943ef6dd473e2c29a778aeaff67096c"
|
| 1160 |
}
|
| 1161 |
},
|
| 1162 |
"failures": []
|
|
|
|
| 1756 |
"path": "repo:docs/data/single_episode_task_model_radar.json",
|
| 1757 |
"exists": true,
|
| 1758 |
"bytes": 51097,
|
| 1759 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1760 |
},
|
| 1761 |
"mirrors": {
|
| 1762 |
"hf_space": {
|
| 1763 |
"path": "hf_space:data/single_episode_task_model_radar.json",
|
| 1764 |
"exists": true,
|
| 1765 |
"bytes": 51097,
|
| 1766 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1767 |
},
|
| 1768 |
"hf_artifacts_data": {
|
| 1769 |
"path": "hf_artifacts:data/single_episode_task_model_radar.json",
|
| 1770 |
"exists": true,
|
| 1771 |
"bytes": 51097,
|
| 1772 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1773 |
},
|
| 1774 |
"hf_artifacts": {
|
| 1775 |
"path": "hf_artifacts:docs/data/single_episode_task_model_radar.json",
|
| 1776 |
"exists": true,
|
| 1777 |
"bytes": 51097,
|
| 1778 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1779 |
},
|
| 1780 |
"hf_model_data": {
|
| 1781 |
"path": "hf_model:data/single_episode_task_model_radar.json",
|
| 1782 |
"exists": true,
|
| 1783 |
"bytes": 51097,
|
| 1784 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1785 |
},
|
| 1786 |
"hf_model_docs_data": {
|
| 1787 |
"path": "hf_model:docs/data/single_episode_task_model_radar.json",
|
| 1788 |
"exists": true,
|
| 1789 |
"bytes": 51097,
|
| 1790 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1791 |
},
|
| 1792 |
"hf_model": {
|
| 1793 |
"path": "hf_model:metrics/single_episode_task_model_radar.json",
|
| 1794 |
"exists": true,
|
| 1795 |
"bytes": 51097,
|
| 1796 |
+
"sha256": "d5e882120633f4d3ae90f1491682701c7593a42fc09e39b83fc5f375258e76e7"
|
| 1797 |
}
|
| 1798 |
},
|
| 1799 |
"failures": []
|
|
|
|
| 1804 |
"local": {
|
| 1805 |
"path": "repo:docs/data/episode128_task_model_radar.json",
|
| 1806 |
"exists": true,
|
| 1807 |
+
"bytes": 184945,
|
| 1808 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1809 |
},
|
| 1810 |
"mirrors": {
|
| 1811 |
"hf_space": {
|
| 1812 |
"path": "hf_space:data/episode128_task_model_radar.json",
|
| 1813 |
"exists": true,
|
| 1814 |
+
"bytes": 184945,
|
| 1815 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1816 |
},
|
| 1817 |
"hf_artifacts_data": {
|
| 1818 |
"path": "hf_artifacts:data/episode128_task_model_radar.json",
|
| 1819 |
"exists": true,
|
| 1820 |
+
"bytes": 184945,
|
| 1821 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1822 |
},
|
| 1823 |
"hf_artifacts": {
|
| 1824 |
"path": "hf_artifacts:docs/data/episode128_task_model_radar.json",
|
| 1825 |
"exists": true,
|
| 1826 |
+
"bytes": 184945,
|
| 1827 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1828 |
},
|
| 1829 |
"hf_model_data": {
|
| 1830 |
"path": "hf_model:data/episode128_task_model_radar.json",
|
| 1831 |
"exists": true,
|
| 1832 |
+
"bytes": 184945,
|
| 1833 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1834 |
},
|
| 1835 |
"hf_model_docs_data": {
|
| 1836 |
"path": "hf_model:docs/data/episode128_task_model_radar.json",
|
| 1837 |
"exists": true,
|
| 1838 |
+
"bytes": 184945,
|
| 1839 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1840 |
},
|
| 1841 |
"hf_model": {
|
| 1842 |
"path": "hf_model:metrics/episode128_task_model_radar.json",
|
| 1843 |
"exists": true,
|
| 1844 |
+
"bytes": 184945,
|
| 1845 |
+
"sha256": "8d4ef9c4cf1cf334fd41417d40fa0687ceefa964da9f8338c82f8cc6d36a3e76"
|
| 1846 |
}
|
| 1847 |
},
|
| 1848 |
"failures": []
|
|
|
|
| 2098 |
"local": {
|
| 2099 |
"path": "repo:docs/data/task_method_20_result_matrix.json",
|
| 2100 |
"exists": true,
|
| 2101 |
+
"bytes": 128509,
|
| 2102 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2103 |
},
|
| 2104 |
"mirrors": {
|
| 2105 |
"hf_space": {
|
| 2106 |
"path": "hf_space:data/task_method_20_result_matrix.json",
|
| 2107 |
"exists": true,
|
| 2108 |
+
"bytes": 128509,
|
| 2109 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2110 |
},
|
| 2111 |
"hf_artifacts_data": {
|
| 2112 |
"path": "hf_artifacts:data/task_method_20_result_matrix.json",
|
| 2113 |
"exists": true,
|
| 2114 |
+
"bytes": 128509,
|
| 2115 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2116 |
},
|
| 2117 |
"hf_artifacts": {
|
| 2118 |
"path": "hf_artifacts:docs/data/task_method_20_result_matrix.json",
|
| 2119 |
"exists": true,
|
| 2120 |
+
"bytes": 128509,
|
| 2121 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2122 |
},
|
| 2123 |
"hf_model_data": {
|
| 2124 |
"path": "hf_model:data/task_method_20_result_matrix.json",
|
| 2125 |
"exists": true,
|
| 2126 |
+
"bytes": 128509,
|
| 2127 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2128 |
},
|
| 2129 |
"hf_model_docs_data": {
|
| 2130 |
"path": "hf_model:docs/data/task_method_20_result_matrix.json",
|
| 2131 |
"exists": true,
|
| 2132 |
+
"bytes": 128509,
|
| 2133 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2134 |
},
|
| 2135 |
"hf_model": {
|
| 2136 |
"path": "hf_model:metrics/task_method_20_result_matrix.json",
|
| 2137 |
"exists": true,
|
| 2138 |
+
"bytes": 128509,
|
| 2139 |
+
"sha256": "382e538dff284c5e2cf19fe2b3eb014d1b48fb33082bb2ece532ce3de6c1e9bb"
|
| 2140 |
}
|
| 2141 |
},
|
| 2142 |
"failures": []
|
|
|
|
| 2148 |
"path": "repo:docs/data/task_method_20_gap_audit.json",
|
| 2149 |
"exists": true,
|
| 2150 |
"bytes": 8500,
|
| 2151 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2152 |
},
|
| 2153 |
"mirrors": {
|
| 2154 |
"hf_space": {
|
| 2155 |
"path": "hf_space:data/task_method_20_gap_audit.json",
|
| 2156 |
"exists": true,
|
| 2157 |
"bytes": 8500,
|
| 2158 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2159 |
},
|
| 2160 |
"hf_artifacts_data": {
|
| 2161 |
"path": "hf_artifacts:data/task_method_20_gap_audit.json",
|
| 2162 |
"exists": true,
|
| 2163 |
"bytes": 8500,
|
| 2164 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2165 |
},
|
| 2166 |
"hf_artifacts": {
|
| 2167 |
"path": "hf_artifacts:docs/data/task_method_20_gap_audit.json",
|
| 2168 |
"exists": true,
|
| 2169 |
"bytes": 8500,
|
| 2170 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2171 |
},
|
| 2172 |
"hf_model_data": {
|
| 2173 |
"path": "hf_model:data/task_method_20_gap_audit.json",
|
| 2174 |
"exists": true,
|
| 2175 |
"bytes": 8500,
|
| 2176 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2177 |
},
|
| 2178 |
"hf_model_docs_data": {
|
| 2179 |
"path": "hf_model:docs/data/task_method_20_gap_audit.json",
|
| 2180 |
"exists": true,
|
| 2181 |
"bytes": 8500,
|
| 2182 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2183 |
},
|
| 2184 |
"hf_model": {
|
| 2185 |
"path": "hf_model:metrics/task_method_20_gap_audit.json",
|
| 2186 |
"exists": true,
|
| 2187 |
"bytes": 8500,
|
| 2188 |
+
"sha256": "9cfd2ce8c4eb3bbe7e2af3f41df3b3ab74db9db08d9ea2e4f569f612358470dd"
|
| 2189 |
+
}
|
| 2190 |
+
},
|
| 2191 |
+
"failures": []
|
| 2192 |
+
},
|
| 2193 |
+
{
|
| 2194 |
+
"name": "data/task_method_20_source_audit.json",
|
| 2195 |
+
"status": "pass",
|
| 2196 |
+
"local": {
|
| 2197 |
+
"path": "repo:docs/data/task_method_20_source_audit.json",
|
| 2198 |
+
"exists": true,
|
| 2199 |
+
"bytes": 561,
|
| 2200 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2201 |
+
},
|
| 2202 |
+
"mirrors": {
|
| 2203 |
+
"hf_space": {
|
| 2204 |
+
"path": "hf_space:data/task_method_20_source_audit.json",
|
| 2205 |
+
"exists": true,
|
| 2206 |
+
"bytes": 561,
|
| 2207 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2208 |
+
},
|
| 2209 |
+
"hf_artifacts_data": {
|
| 2210 |
+
"path": "hf_artifacts:data/task_method_20_source_audit.json",
|
| 2211 |
+
"exists": true,
|
| 2212 |
+
"bytes": 561,
|
| 2213 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2214 |
+
},
|
| 2215 |
+
"hf_artifacts": {
|
| 2216 |
+
"path": "hf_artifacts:docs/data/task_method_20_source_audit.json",
|
| 2217 |
+
"exists": true,
|
| 2218 |
+
"bytes": 561,
|
| 2219 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2220 |
+
},
|
| 2221 |
+
"hf_model_data": {
|
| 2222 |
+
"path": "hf_model:data/task_method_20_source_audit.json",
|
| 2223 |
+
"exists": true,
|
| 2224 |
+
"bytes": 561,
|
| 2225 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2226 |
+
},
|
| 2227 |
+
"hf_model_docs_data": {
|
| 2228 |
+
"path": "hf_model:docs/data/task_method_20_source_audit.json",
|
| 2229 |
+
"exists": true,
|
| 2230 |
+
"bytes": 561,
|
| 2231 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2232 |
+
},
|
| 2233 |
+
"hf_model": {
|
| 2234 |
+
"path": "hf_model:metrics/task_method_20_source_audit.json",
|
| 2235 |
+
"exists": true,
|
| 2236 |
+
"bytes": 561,
|
| 2237 |
+
"sha256": "c3fd20cf992b70b53063001a8e71556c6f3aa320066d4f67a82554d192a87d88"
|
| 2238 |
}
|
| 2239 |
},
|
| 2240 |
"failures": []
|
|
|
|
| 2294 |
"local": {
|
| 2295 |
"path": "repo:docs/data/unified_task_model_radar.json",
|
| 2296 |
"exists": true,
|
| 2297 |
+
"bytes": 228799,
|
| 2298 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2299 |
},
|
| 2300 |
"mirrors": {
|
| 2301 |
"hf_space": {
|
| 2302 |
"path": "hf_space:data/unified_task_model_radar.json",
|
| 2303 |
"exists": true,
|
| 2304 |
+
"bytes": 228799,
|
| 2305 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2306 |
},
|
| 2307 |
"hf_artifacts_data": {
|
| 2308 |
"path": "hf_artifacts:data/unified_task_model_radar.json",
|
| 2309 |
"exists": true,
|
| 2310 |
+
"bytes": 228799,
|
| 2311 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2312 |
},
|
| 2313 |
"hf_artifacts": {
|
| 2314 |
"path": "hf_artifacts:docs/data/unified_task_model_radar.json",
|
| 2315 |
"exists": true,
|
| 2316 |
+
"bytes": 228799,
|
| 2317 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2318 |
},
|
| 2319 |
"hf_model_data": {
|
| 2320 |
"path": "hf_model:data/unified_task_model_radar.json",
|
| 2321 |
"exists": true,
|
| 2322 |
+
"bytes": 228799,
|
| 2323 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2324 |
},
|
| 2325 |
"hf_model_docs_data": {
|
| 2326 |
"path": "hf_model:docs/data/unified_task_model_radar.json",
|
| 2327 |
"exists": true,
|
| 2328 |
+
"bytes": 228799,
|
| 2329 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2330 |
},
|
| 2331 |
"hf_model": {
|
| 2332 |
"path": "hf_model:metrics/unified_task_model_radar.json",
|
| 2333 |
"exists": true,
|
| 2334 |
+
"bytes": 228799,
|
| 2335 |
+
"sha256": "c9c708f64963dac10e764eaae8e1b14c7161a938afa5ef5723fe59dc4ce764af"
|
| 2336 |
}
|
| 2337 |
},
|
| 2338 |
"failures": []
|
|
|
|
| 2343 |
"local": {
|
| 2344 |
"path": "repo:docs/data/website_integrity.json",
|
| 2345 |
"exists": true,
|
| 2346 |
+
"bytes": 20141,
|
| 2347 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2348 |
},
|
| 2349 |
"mirrors": {
|
| 2350 |
"hf_space": {
|
| 2351 |
"path": "hf_space:data/website_integrity.json",
|
| 2352 |
"exists": true,
|
| 2353 |
+
"bytes": 20141,
|
| 2354 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2355 |
},
|
| 2356 |
"hf_artifacts_data": {
|
| 2357 |
"path": "hf_artifacts:data/website_integrity.json",
|
| 2358 |
"exists": true,
|
| 2359 |
+
"bytes": 20141,
|
| 2360 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2361 |
},
|
| 2362 |
"hf_artifacts": {
|
| 2363 |
"path": "hf_artifacts:docs/data/website_integrity.json",
|
| 2364 |
"exists": true,
|
| 2365 |
+
"bytes": 20141,
|
| 2366 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2367 |
},
|
| 2368 |
"hf_model_data": {
|
| 2369 |
"path": "hf_model:data/website_integrity.json",
|
| 2370 |
"exists": true,
|
| 2371 |
+
"bytes": 20141,
|
| 2372 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2373 |
},
|
| 2374 |
"hf_model_docs_data": {
|
| 2375 |
"path": "hf_model:docs/data/website_integrity.json",
|
| 2376 |
"exists": true,
|
| 2377 |
+
"bytes": 20141,
|
| 2378 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2379 |
},
|
| 2380 |
"hf_model": {
|
| 2381 |
"path": "hf_model:metrics/website_integrity.json",
|
| 2382 |
"exists": true,
|
| 2383 |
+
"bytes": 20141,
|
| 2384 |
+
"sha256": "4e2888d0915c567874428105937e62eeda15d4c1408281c9b453eb9d76a55e92"
|
| 2385 |
}
|
| 2386 |
},
|
| 2387 |
"failures": []
|
|
|
|
| 4283 |
"local": {
|
| 4284 |
"path": "repo:scripts/omni/eval_qwen3_omni_future_task_probes.py",
|
| 4285 |
"exists": true,
|
| 4286 |
+
"bytes": 35340,
|
| 4287 |
+
"sha256": "c1886dd6c10b2a6314459146d5a18d886d5397cbe7604425b09e1085061dc915"
|
| 4288 |
},
|
| 4289 |
"mirrors": {
|
| 4290 |
"hf_artifacts": {
|
| 4291 |
"path": "hf_artifacts:scripts/omni/eval_qwen3_omni_future_task_probes.py",
|
| 4292 |
"exists": true,
|
| 4293 |
+
"bytes": 35340,
|
| 4294 |
+
"sha256": "c1886dd6c10b2a6314459146d5a18d886d5397cbe7604425b09e1085061dc915"
|
| 4295 |
},
|
| 4296 |
"hf_model": {
|
| 4297 |
"path": "hf_model:scripts/omni/eval_qwen3_omni_future_task_probes.py",
|
| 4298 |
"exists": true,
|
| 4299 |
+
"bytes": 35340,
|
| 4300 |
+
"sha256": "c1886dd6c10b2a6314459146d5a18d886d5397cbe7604425b09e1085061dc915"
|
| 4301 |
}
|
| 4302 |
},
|
| 4303 |
"failures": []
|
|
|
|
| 4333 |
"local": {
|
| 4334 |
"path": "repo:scripts/omni/eval_cosmos3_super_future_task_probes.py",
|
| 4335 |
"exists": true,
|
| 4336 |
+
"bytes": 15918,
|
| 4337 |
+
"sha256": "a1e0f23dd12f0d61ffe664964aa12c0ca8b9c6e8618bb1cac017200db4e071eb"
|
| 4338 |
},
|
| 4339 |
"mirrors": {
|
| 4340 |
"hf_artifacts": {
|
| 4341 |
"path": "hf_artifacts:scripts/omni/eval_cosmos3_super_future_task_probes.py",
|
| 4342 |
"exists": true,
|
| 4343 |
+
"bytes": 15918,
|
| 4344 |
+
"sha256": "a1e0f23dd12f0d61ffe664964aa12c0ca8b9c6e8618bb1cac017200db4e071eb"
|
| 4345 |
},
|
| 4346 |
"hf_model": {
|
| 4347 |
"path": "hf_model:scripts/omni/eval_cosmos3_super_future_task_probes.py",
|
| 4348 |
"exists": true,
|
| 4349 |
+
"bytes": 15918,
|
| 4350 |
+
"sha256": "a1e0f23dd12f0d61ffe664964aa12c0ca8b9c6e8618bb1cac017200db4e071eb"
|
| 4351 |
}
|
| 4352 |
},
|
| 4353 |
"failures": []
|
|
|
|
| 4433 |
"local": {
|
| 4434 |
"path": "repo:scripts/omni/merge_qwen3_omni_future_task_probe_shards.py",
|
| 4435 |
"exists": true,
|
| 4436 |
+
"bytes": 5318,
|
| 4437 |
+
"sha256": "0119c3653b11c8b9c32e62efb81c214037656fccbbbe7cb0232d8f450107e15c"
|
| 4438 |
},
|
| 4439 |
"mirrors": {
|
| 4440 |
"hf_artifacts": {
|
| 4441 |
"path": "hf_artifacts:scripts/omni/merge_qwen3_omni_future_task_probe_shards.py",
|
| 4442 |
"exists": true,
|
| 4443 |
+
"bytes": 5318,
|
| 4444 |
+
"sha256": "0119c3653b11c8b9c32e62efb81c214037656fccbbbe7cb0232d8f450107e15c"
|
| 4445 |
},
|
| 4446 |
"hf_model": {
|
| 4447 |
"path": "hf_model:scripts/omni/merge_qwen3_omni_future_task_probe_shards.py",
|
| 4448 |
"exists": true,
|
| 4449 |
+
"bytes": 5318,
|
| 4450 |
+
"sha256": "0119c3653b11c8b9c32e62efb81c214037656fccbbbe7cb0232d8f450107e15c"
|
| 4451 |
}
|
| 4452 |
},
|
| 4453 |
"failures": []
|
|
|
|
| 4458 |
"local": {
|
| 4459 |
"path": "repo:scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py",
|
| 4460 |
"exists": true,
|
| 4461 |
+
"bytes": 5440,
|
| 4462 |
+
"sha256": "7fcb128ae1a0bfcb5c4ba38b86192cbc3eb859fdb659f001aa4b01585873b0a1"
|
| 4463 |
},
|
| 4464 |
"mirrors": {
|
| 4465 |
"hf_artifacts": {
|
| 4466 |
"path": "hf_artifacts:scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py",
|
| 4467 |
"exists": true,
|
| 4468 |
+
"bytes": 5440,
|
| 4469 |
+
"sha256": "7fcb128ae1a0bfcb5c4ba38b86192cbc3eb859fdb659f001aa4b01585873b0a1"
|
| 4470 |
},
|
| 4471 |
"hf_model": {
|
| 4472 |
"path": "hf_model:scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py",
|
| 4473 |
"exists": true,
|
| 4474 |
+
"bytes": 5440,
|
| 4475 |
+
"sha256": "7fcb128ae1a0bfcb5c4ba38b86192cbc3eb859fdb659f001aa4b01585873b0a1"
|
| 4476 |
}
|
| 4477 |
},
|
| 4478 |
"failures": []
|
|
|
|
| 4483 |
"local": {
|
| 4484 |
"path": "repo:scripts/omni/merge_cosmos3_super_future_task_probe_shards.py",
|
| 4485 |
"exists": true,
|
| 4486 |
+
"bytes": 5867,
|
| 4487 |
+
"sha256": "8124b8b427cef69e0da34754d162d3dc7e58bb43ce9c556725ffe2cd49209dff"
|
| 4488 |
},
|
| 4489 |
"mirrors": {
|
| 4490 |
"hf_artifacts": {
|
| 4491 |
"path": "hf_artifacts:scripts/omni/merge_cosmos3_super_future_task_probe_shards.py",
|
| 4492 |
"exists": true,
|
| 4493 |
+
"bytes": 5867,
|
| 4494 |
+
"sha256": "8124b8b427cef69e0da34754d162d3dc7e58bb43ce9c556725ffe2cd49209dff"
|
| 4495 |
},
|
| 4496 |
"hf_model": {
|
| 4497 |
"path": "hf_model:scripts/omni/merge_cosmos3_super_future_task_probe_shards.py",
|
| 4498 |
"exists": true,
|
| 4499 |
+
"bytes": 5867,
|
| 4500 |
+
"sha256": "8124b8b427cef69e0da34754d162d3dc7e58bb43ce9c556725ffe2cd49209dff"
|
| 4501 |
}
|
| 4502 |
},
|
| 4503 |
"failures": []
|
|
|
|
| 4833 |
"local": {
|
| 4834 |
"path": "repo:scripts/omni/score_model_output_probes.py",
|
| 4835 |
"exists": true,
|
| 4836 |
+
"bytes": 10520,
|
| 4837 |
+
"sha256": "741ee733068e87c52c8da2bd15987e2b4538b5e705592182d76c42b5cf34fe96"
|
| 4838 |
},
|
| 4839 |
"mirrors": {
|
| 4840 |
"hf_artifacts": {
|
| 4841 |
"path": "hf_artifacts:scripts/omni/score_model_output_probes.py",
|
| 4842 |
"exists": true,
|
| 4843 |
+
"bytes": 10520,
|
| 4844 |
+
"sha256": "741ee733068e87c52c8da2bd15987e2b4538b5e705592182d76c42b5cf34fe96"
|
| 4845 |
},
|
| 4846 |
"hf_model": {
|
| 4847 |
"path": "hf_model:scripts/omni/score_model_output_probes.py",
|
| 4848 |
"exists": true,
|
| 4849 |
+
"bytes": 10520,
|
| 4850 |
+
"sha256": "741ee733068e87c52c8da2bd15987e2b4538b5e705592182d76c42b5cf34fe96"
|
| 4851 |
}
|
| 4852 |
},
|
| 4853 |
"failures": []
|
|
|
|
| 4858 |
"local": {
|
| 4859 |
"path": "repo:scripts/omni/run_128_task_baselines.py",
|
| 4860 |
"exists": true,
|
| 4861 |
+
"bytes": 74316,
|
| 4862 |
+
"sha256": "164c908bee1d4a6e0db344692833787582e45317b240ef5afbfbdb609a5175e6"
|
| 4863 |
},
|
| 4864 |
"mirrors": {
|
| 4865 |
"hf_artifacts": {
|
| 4866 |
"path": "hf_artifacts:scripts/omni/run_128_task_baselines.py",
|
| 4867 |
"exists": true,
|
| 4868 |
+
"bytes": 74316,
|
| 4869 |
+
"sha256": "164c908bee1d4a6e0db344692833787582e45317b240ef5afbfbdb609a5175e6"
|
| 4870 |
},
|
| 4871 |
"hf_model": {
|
| 4872 |
"path": "hf_model:scripts/omni/run_128_task_baselines.py",
|
| 4873 |
"exists": true,
|
| 4874 |
+
"bytes": 74316,
|
| 4875 |
+
"sha256": "164c908bee1d4a6e0db344692833787582e45317b240ef5afbfbdb609a5175e6"
|
| 4876 |
}
|
| 4877 |
},
|
| 4878 |
"failures": []
|
|
|
|
| 4933 |
"local": {
|
| 4934 |
"path": "repo:scripts/omni/train_cosmos3_super_forward_dynamics_lora.py",
|
| 4935 |
"exists": true,
|
| 4936 |
+
"bytes": 38312,
|
| 4937 |
+
"sha256": "fe00816d1ebe7668b52ff65e8e0472adb937c79feeb4a75cea4e3619a1423c32"
|
| 4938 |
},
|
| 4939 |
"mirrors": {
|
| 4940 |
"hf_artifacts": {
|
| 4941 |
"path": "hf_artifacts:scripts/omni/train_cosmos3_super_forward_dynamics_lora.py",
|
| 4942 |
"exists": true,
|
| 4943 |
+
"bytes": 38312,
|
| 4944 |
+
"sha256": "fe00816d1ebe7668b52ff65e8e0472adb937c79feeb4a75cea4e3619a1423c32"
|
| 4945 |
},
|
| 4946 |
"hf_model": {
|
| 4947 |
"path": "hf_model:scripts/omni/train_cosmos3_super_forward_dynamics_lora.py",
|
| 4948 |
"exists": true,
|
| 4949 |
+
"bytes": 38312,
|
| 4950 |
+
"sha256": "fe00816d1ebe7668b52ff65e8e0472adb937c79feeb4a75cea4e3619a1423c32"
|
| 4951 |
}
|
| 4952 |
},
|
| 4953 |
"failures": []
|
|
|
|
| 4983 |
"local": {
|
| 4984 |
"path": "repo:scripts/build_artifact_index.py",
|
| 4985 |
"exists": true,
|
| 4986 |
+
"bytes": 67105,
|
| 4987 |
+
"sha256": "8fc1a2b5d4a50d49ff5738ec1e5e91088dbfa514c9f0485d3afe708add6d94a1"
|
| 4988 |
},
|
| 4989 |
"mirrors": {
|
| 4990 |
"hf_artifacts": {
|
| 4991 |
"path": "hf_artifacts:scripts/build_artifact_index.py",
|
| 4992 |
"exists": true,
|
| 4993 |
+
"bytes": 67105,
|
| 4994 |
+
"sha256": "8fc1a2b5d4a50d49ff5738ec1e5e91088dbfa514c9f0485d3afe708add6d94a1"
|
| 4995 |
},
|
| 4996 |
"hf_model": {
|
| 4997 |
"path": "hf_model:scripts/build_artifact_index.py",
|
| 4998 |
"exists": true,
|
| 4999 |
+
"bytes": 67105,
|
| 5000 |
+
"sha256": "8fc1a2b5d4a50d49ff5738ec1e5e91088dbfa514c9f0485d3afe708add6d94a1"
|
| 5001 |
}
|
| 5002 |
},
|
| 5003 |
"failures": []
|
|
|
|
| 5083 |
"local": {
|
| 5084 |
"path": "repo:scripts/build_quality_gates.py",
|
| 5085 |
"exists": true,
|
| 5086 |
+
"bytes": 11868,
|
| 5087 |
+
"sha256": "afe0f8b59355e3041fb2715f6eeb80c7bd2210456c4a67c82a97189057b18e27"
|
| 5088 |
},
|
| 5089 |
"mirrors": {
|
| 5090 |
"hf_artifacts": {
|
| 5091 |
"path": "hf_artifacts:scripts/build_quality_gates.py",
|
| 5092 |
"exists": true,
|
| 5093 |
+
"bytes": 11868,
|
| 5094 |
+
"sha256": "afe0f8b59355e3041fb2715f6eeb80c7bd2210456c4a67c82a97189057b18e27"
|
| 5095 |
},
|
| 5096 |
"hf_model": {
|
| 5097 |
"path": "hf_model:scripts/build_quality_gates.py",
|
| 5098 |
"exists": true,
|
| 5099 |
+
"bytes": 11868,
|
| 5100 |
+
"sha256": "afe0f8b59355e3041fb2715f6eeb80c7bd2210456c4a67c82a97189057b18e27"
|
| 5101 |
}
|
| 5102 |
},
|
| 5103 |
"failures": []
|
|
|
|
| 5333 |
"local": {
|
| 5334 |
"path": "repo:scripts/build_unified_task_model_radar.py",
|
| 5335 |
"exists": true,
|
| 5336 |
+
"bytes": 68542,
|
| 5337 |
+
"sha256": "470b4c8acc437114b51d96987cd6324b9bf1d2ca16e9721d7fb00708aa58b383"
|
| 5338 |
},
|
| 5339 |
"mirrors": {
|
| 5340 |
"hf_artifacts": {
|
| 5341 |
"path": "hf_artifacts:scripts/build_unified_task_model_radar.py",
|
| 5342 |
"exists": true,
|
| 5343 |
+
"bytes": 68542,
|
| 5344 |
+
"sha256": "470b4c8acc437114b51d96987cd6324b9bf1d2ca16e9721d7fb00708aa58b383"
|
| 5345 |
},
|
| 5346 |
"hf_model": {
|
| 5347 |
"path": "hf_model:scripts/build_unified_task_model_radar.py",
|
| 5348 |
"exists": true,
|
| 5349 |
+
"bytes": 68542,
|
| 5350 |
+
"sha256": "470b4c8acc437114b51d96987cd6324b9bf1d2ca16e9721d7fb00708aa58b383"
|
| 5351 |
}
|
| 5352 |
},
|
| 5353 |
"failures": []
|
|
|
|
| 5383 |
"local": {
|
| 5384 |
"path": "repo:scripts/verify_live_publication.py",
|
| 5385 |
"exists": true,
|
| 5386 |
+
"bytes": 67647,
|
| 5387 |
+
"sha256": "d2b4af98e6fd8b23fd86cd068f2bbf887e5d69686dd62fe3bfc7e8251a6d75d6"
|
| 5388 |
},
|
| 5389 |
"mirrors": {
|
| 5390 |
"hf_artifacts": {
|
| 5391 |
"path": "hf_artifacts:scripts/verify_live_publication.py",
|
| 5392 |
"exists": true,
|
| 5393 |
+
"bytes": 67647,
|
| 5394 |
+
"sha256": "d2b4af98e6fd8b23fd86cd068f2bbf887e5d69686dd62fe3bfc7e8251a6d75d6"
|
| 5395 |
},
|
| 5396 |
"hf_model": {
|
| 5397 |
"path": "hf_model:scripts/verify_live_publication.py",
|
| 5398 |
"exists": true,
|
| 5399 |
+
"bytes": 67647,
|
| 5400 |
+
"sha256": "d2b4af98e6fd8b23fd86cd068f2bbf887e5d69686dd62fe3bfc7e8251a6d75d6"
|
| 5401 |
}
|
| 5402 |
},
|
| 5403 |
"failures": []
|
|
|
|
| 5408 |
"local": {
|
| 5409 |
"path": "repo:scripts/validate_mirror_parity.py",
|
| 5410 |
"exists": true,
|
| 5411 |
+
"bytes": 35749,
|
| 5412 |
+
"sha256": "0af33f3ff0b85fc2a18122eafad2f0f941750c3751097d1f2c89c52c2d4f5d59"
|
| 5413 |
},
|
| 5414 |
"mirrors": {
|
| 5415 |
"hf_artifacts": {
|
| 5416 |
"path": "hf_artifacts:scripts/validate_mirror_parity.py",
|
| 5417 |
"exists": true,
|
| 5418 |
+
"bytes": 35749,
|
| 5419 |
+
"sha256": "0af33f3ff0b85fc2a18122eafad2f0f941750c3751097d1f2c89c52c2d4f5d59"
|
| 5420 |
},
|
| 5421 |
"hf_model": {
|
| 5422 |
"path": "hf_model:scripts/validate_mirror_parity.py",
|
| 5423 |
"exists": true,
|
| 5424 |
+
"bytes": 35749,
|
| 5425 |
+
"sha256": "0af33f3ff0b85fc2a18122eafad2f0f941750c3751097d1f2c89c52c2d4f5d59"
|
| 5426 |
}
|
| 5427 |
},
|
| 5428 |
"failures": []
|
|
|
|
| 5433 |
"local": {
|
| 5434 |
"path": "repo:scripts/validate_publication_package.py",
|
| 5435 |
"exists": true,
|
| 5436 |
+
"bytes": 20951,
|
| 5437 |
+
"sha256": "f061447af43fcc61a441bb1eab3adf908456b3c167ed1ecb5a548f223213851d"
|
| 5438 |
},
|
| 5439 |
"mirrors": {
|
| 5440 |
"hf_artifacts": {
|
| 5441 |
"path": "hf_artifacts:scripts/validate_publication_package.py",
|
| 5442 |
"exists": true,
|
| 5443 |
+
"bytes": 20951,
|
| 5444 |
+
"sha256": "f061447af43fcc61a441bb1eab3adf908456b3c167ed1ecb5a548f223213851d"
|
| 5445 |
},
|
| 5446 |
"hf_model": {
|
| 5447 |
"path": "hf_model:scripts/validate_publication_package.py",
|
| 5448 |
"exists": true,
|
| 5449 |
+
"bytes": 20951,
|
| 5450 |
+
"sha256": "f061447af43fcc61a441bb1eab3adf908456b3c167ed1ecb5a548f223213851d"
|
| 5451 |
+
}
|
| 5452 |
+
},
|
| 5453 |
+
"failures": []
|
| 5454 |
+
},
|
| 5455 |
+
{
|
| 5456 |
+
"name": "scripts/validate_task_method_matrix_sources.py",
|
| 5457 |
+
"status": "pass",
|
| 5458 |
+
"local": {
|
| 5459 |
+
"path": "repo:scripts/validate_task_method_matrix_sources.py",
|
| 5460 |
+
"exists": true,
|
| 5461 |
+
"bytes": 7877,
|
| 5462 |
+
"sha256": "97edc3f064f77d544eff539bb7f16f8162e58ec581a63b91c473bada080f86ae"
|
| 5463 |
+
},
|
| 5464 |
+
"mirrors": {
|
| 5465 |
+
"hf_artifacts": {
|
| 5466 |
+
"path": "hf_artifacts:scripts/validate_task_method_matrix_sources.py",
|
| 5467 |
+
"exists": true,
|
| 5468 |
+
"bytes": 7877,
|
| 5469 |
+
"sha256": "97edc3f064f77d544eff539bb7f16f8162e58ec581a63b91c473bada080f86ae"
|
| 5470 |
+
},
|
| 5471 |
+
"hf_model": {
|
| 5472 |
+
"path": "hf_model:scripts/validate_task_method_matrix_sources.py",
|
| 5473 |
+
"exists": true,
|
| 5474 |
+
"bytes": 7877,
|
| 5475 |
+
"sha256": "97edc3f064f77d544eff539bb7f16f8162e58ec581a63b91c473bada080f86ae"
|
| 5476 |
}
|
| 5477 |
},
|
| 5478 |
"failures": []
|
|
|
|
| 5583 |
"local": {
|
| 5584 |
"path": "repo:scripts/sync_hf_publish_mirrors.py",
|
| 5585 |
"exists": true,
|
| 5586 |
+
"bytes": 27113,
|
| 5587 |
+
"sha256": "8ad737992ac4f0a7ab640f1c87ab160b377ec9af2ed8a3d4d6d8b114fb7f1466"
|
| 5588 |
},
|
| 5589 |
"mirrors": {
|
| 5590 |
"hf_artifacts": {
|
| 5591 |
"path": "hf_artifacts:scripts/sync_hf_publish_mirrors.py",
|
| 5592 |
"exists": true,
|
| 5593 |
+
"bytes": 27113,
|
| 5594 |
+
"sha256": "8ad737992ac4f0a7ab640f1c87ab160b377ec9af2ed8a3d4d6d8b114fb7f1466"
|
| 5595 |
},
|
| 5596 |
"hf_model": {
|
| 5597 |
"path": "hf_model:scripts/sync_hf_publish_mirrors.py",
|
| 5598 |
"exists": true,
|
| 5599 |
+
"bytes": 27113,
|
| 5600 |
+
"sha256": "8ad737992ac4f0a7ab640f1c87ab160b377ec9af2ed8a3d4d6d8b114fb7f1466"
|
| 5601 |
}
|
| 5602 |
},
|
| 5603 |
"failures": []
|
|
|
|
| 13484 |
"local": {
|
| 13485 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 13486 |
"exists": true,
|
| 13487 |
+
"bytes": 1192,
|
| 13488 |
+
"sha256": "5b4da4ccb4a5c81a2d6d89e586118ff626eaf769a6774500de8f101836c46408"
|
| 13489 |
},
|
| 13490 |
"mirrors": {
|
| 13491 |
"hf_artifacts": {
|
| 13492 |
"path": "hf_artifacts:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 13493 |
"exists": true,
|
| 13494 |
+
"bytes": 1192,
|
| 13495 |
+
"sha256": "5b4da4ccb4a5c81a2d6d89e586118ff626eaf769a6774500de8f101836c46408"
|
| 13496 |
},
|
| 13497 |
"hf_model": {
|
| 13498 |
"path": "hf_model:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 13499 |
"exists": true,
|
| 13500 |
+
"bytes": 1192,
|
| 13501 |
+
"sha256": "5b4da4ccb4a5c81a2d6d89e586118ff626eaf769a6774500de8f101836c46408"
|
| 13502 |
}
|
| 13503 |
},
|
| 13504 |
"failures": []
|
|
|
|
| 13509 |
"local": {
|
| 13510 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 13511 |
"exists": true,
|
| 13512 |
+
"bytes": 4320,
|
| 13513 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 13514 |
},
|
| 13515 |
"mirrors": {
|
| 13516 |
"hf_artifacts": {
|
| 13517 |
"path": "hf_artifacts:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 13518 |
"exists": true,
|
| 13519 |
+
"bytes": 4320,
|
| 13520 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 13521 |
},
|
| 13522 |
"hf_model": {
|
| 13523 |
"path": "hf_model:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 13524 |
"exists": true,
|
| 13525 |
+
"bytes": 4320,
|
| 13526 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 13527 |
}
|
| 13528 |
},
|
| 13529 |
"failures": []
|
|
|
|
| 25525 |
"local": {
|
| 25526 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 25527 |
"exists": true,
|
| 25528 |
+
"bytes": 1192,
|
| 25529 |
+
"sha256": "5b4da4ccb4a5c81a2d6d89e586118ff626eaf769a6774500de8f101836c46408"
|
| 25530 |
},
|
| 25531 |
"mirrors": {
|
| 25532 |
"hf_space": {
|
| 25533 |
"path": "hf_space:results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md",
|
| 25534 |
"exists": true,
|
| 25535 |
+
"bytes": 1192,
|
| 25536 |
+
"sha256": "5b4da4ccb4a5c81a2d6d89e586118ff626eaf769a6774500de8f101836c46408"
|
| 25537 |
}
|
| 25538 |
},
|
| 25539 |
"failures": []
|
|
|
|
| 25544 |
"local": {
|
| 25545 |
"path": "repo:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 25546 |
"exists": true,
|
| 25547 |
+
"bytes": 4320,
|
| 25548 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 25549 |
},
|
| 25550 |
"mirrors": {
|
| 25551 |
"hf_space": {
|
| 25552 |
"path": "hf_space:results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json",
|
| 25553 |
"exists": true,
|
| 25554 |
+
"bytes": 4320,
|
| 25555 |
+
"sha256": "11cff26749bf6ad8b8ee028b18e0b4be5713ed8b5325578caa03be25d894263b"
|
| 25556 |
}
|
| 25557 |
},
|
| 25558 |
"failures": []
|
|
|
|
| 30421 |
"local": {
|
| 30422 |
"path": "repo:QUALITY_GATES.md",
|
| 30423 |
"exists": true,
|
| 30424 |
+
"bytes": 5184,
|
| 30425 |
+
"sha256": "4931d4457c4c5b0978fdf31861b6e3e2da6e24368398cf1756120a32cbff98f0"
|
| 30426 |
},
|
| 30427 |
"mirrors": {
|
| 30428 |
"hf_space": {
|
| 30429 |
"path": "hf_space:QUALITY_GATES.md",
|
| 30430 |
"exists": true,
|
| 30431 |
+
"bytes": 5184,
|
| 30432 |
+
"sha256": "4931d4457c4c5b0978fdf31861b6e3e2da6e24368398cf1756120a32cbff98f0"
|
| 30433 |
},
|
| 30434 |
"hf_artifacts": {
|
| 30435 |
"path": "hf_artifacts:QUALITY_GATES.md",
|
| 30436 |
"exists": true,
|
| 30437 |
+
"bytes": 5184,
|
| 30438 |
+
"sha256": "4931d4457c4c5b0978fdf31861b6e3e2da6e24368398cf1756120a32cbff98f0"
|
| 30439 |
},
|
| 30440 |
"hf_model": {
|
| 30441 |
"path": "hf_model:QUALITY_GATES.md",
|
| 30442 |
"exists": true,
|
| 30443 |
+
"bytes": 5184,
|
| 30444 |
+
"sha256": "4931d4457c4c5b0978fdf31861b6e3e2da6e24368398cf1756120a32cbff98f0"
|
| 30445 |
}
|
| 30446 |
},
|
| 30447 |
"failures": []
|
|
|
|
| 30856 |
"path": "repo:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30857 |
"exists": true,
|
| 30858 |
"bytes": 3417,
|
| 30859 |
+
"sha256": "3afc5db9803b6419ce4f40d6fb0dd5380ae182fb85b4f7b0f6ea6a46ae065c63"
|
| 30860 |
},
|
| 30861 |
"mirrors": {
|
| 30862 |
"hf_space": {
|
| 30863 |
"path": "hf_space:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30864 |
"exists": true,
|
| 30865 |
"bytes": 3417,
|
| 30866 |
+
"sha256": "3afc5db9803b6419ce4f40d6fb0dd5380ae182fb85b4f7b0f6ea6a46ae065c63"
|
| 30867 |
},
|
| 30868 |
"hf_artifacts": {
|
| 30869 |
"path": "hf_artifacts:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30870 |
"exists": true,
|
| 30871 |
"bytes": 3417,
|
| 30872 |
+
"sha256": "3afc5db9803b6419ce4f40d6fb0dd5380ae182fb85b4f7b0f6ea6a46ae065c63"
|
| 30873 |
},
|
| 30874 |
"hf_model": {
|
| 30875 |
"path": "hf_model:TASK_METHOD_20_GAP_AUDIT.md",
|
| 30876 |
"exists": true,
|
| 30877 |
"bytes": 3417,
|
| 30878 |
+
"sha256": "3afc5db9803b6419ce4f40d6fb0dd5380ae182fb85b4f7b0f6ea6a46ae065c63"
|
| 30879 |
}
|
| 30880 |
},
|
| 30881 |
"failures": []
|
docs/data/public_surface_qa.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Public Project Surface",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"scope": "Repo README, GitHub Pages HTML, Hugging Face Space card, artifact dataset card, and model card.",
|
| 6 |
"checks": [
|
| 7 |
{
|
|
@@ -18,7 +18,7 @@
|
|
| 18 |
"website_integrity": {
|
| 19 |
"exists": true,
|
| 20 |
"status": "pass",
|
| 21 |
-
"generated_at_utc": "2026-06-
|
| 22 |
},
|
| 23 |
"rendered_site_check": {
|
| 24 |
"exists": true,
|
|
@@ -28,27 +28,27 @@
|
|
| 28 |
"task_surface_integrity": {
|
| 29 |
"exists": true,
|
| 30 |
"status": "pass",
|
| 31 |
-
"generated_at_utc": "2026-06-
|
| 32 |
},
|
| 33 |
"source_alignment": {
|
| 34 |
"exists": true,
|
| 35 |
"status": "pass",
|
| 36 |
-
"generated_at_utc": "2026-06-
|
| 37 |
},
|
| 38 |
"scale_up_status": {
|
| 39 |
"exists": true,
|
| 40 |
"status": "pass",
|
| 41 |
-
"generated_at_utc": "2026-06-
|
| 42 |
},
|
| 43 |
"publication_package": {
|
| 44 |
"exists": true,
|
| 45 |
"status": "pass",
|
| 46 |
-
"generated_at_utc": "2026-06-
|
| 47 |
},
|
| 48 |
"mirror_parity": {
|
| 49 |
"exists": true,
|
| 50 |
"status": "pass",
|
| 51 |
-
"generated_at_utc": "2026-06-
|
| 52 |
}
|
| 53 |
},
|
| 54 |
"failures": {}
|
|
@@ -111,7 +111,7 @@
|
|
| 111 |
"https://huggingface.co/spaces/cy0307/ropedia-xperience-10m-task-suite": 11,
|
| 112 |
"https://huggingface.co/datasets/cy0307/ropedia-xperience-10m-task-suite-artifacts": 11,
|
| 113 |
"https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines": 14,
|
| 114 |
-
"https://huggingface.co/cy0307/ropedia-xperience-10m-weights-results":
|
| 115 |
"https://huggingface.co/datasets/ropedia-ai/xperience-10m": 38,
|
| 116 |
"https://ropedia.com/dataset": 5
|
| 117 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Public Project Surface",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:48:08+00:00",
|
| 5 |
"scope": "Repo README, GitHub Pages HTML, Hugging Face Space card, artifact dataset card, and model card.",
|
| 6 |
"checks": [
|
| 7 |
{
|
|
|
|
| 18 |
"website_integrity": {
|
| 19 |
"exists": true,
|
| 20 |
"status": "pass",
|
| 21 |
+
"generated_at_utc": "2026-06-20T20:41:45+00:00"
|
| 22 |
},
|
| 23 |
"rendered_site_check": {
|
| 24 |
"exists": true,
|
|
|
|
| 28 |
"task_surface_integrity": {
|
| 29 |
"exists": true,
|
| 30 |
"status": "pass",
|
| 31 |
+
"generated_at_utc": "2026-06-20T19:55:17+00:00"
|
| 32 |
},
|
| 33 |
"source_alignment": {
|
| 34 |
"exists": true,
|
| 35 |
"status": "pass",
|
| 36 |
+
"generated_at_utc": "2026-06-20T19:55:18+00:00"
|
| 37 |
},
|
| 38 |
"scale_up_status": {
|
| 39 |
"exists": true,
|
| 40 |
"status": "pass",
|
| 41 |
+
"generated_at_utc": "2026-06-20T19:55:26+00:00"
|
| 42 |
},
|
| 43 |
"publication_package": {
|
| 44 |
"exists": true,
|
| 45 |
"status": "pass",
|
| 46 |
+
"generated_at_utc": "2026-06-20T20:42:41+00:00"
|
| 47 |
},
|
| 48 |
"mirror_parity": {
|
| 49 |
"exists": true,
|
| 50 |
"status": "pass",
|
| 51 |
+
"generated_at_utc": "2026-06-20T20:47:51+00:00"
|
| 52 |
}
|
| 53 |
},
|
| 54 |
"failures": {}
|
|
|
|
| 111 |
"https://huggingface.co/spaces/cy0307/ropedia-xperience-10m-task-suite": 11,
|
| 112 |
"https://huggingface.co/datasets/cy0307/ropedia-xperience-10m-task-suite-artifacts": 11,
|
| 113 |
"https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines": 14,
|
| 114 |
+
"https://huggingface.co/cy0307/ropedia-xperience-10m-weights-results": 6,
|
| 115 |
"https://huggingface.co/datasets/ropedia-ai/xperience-10m": 38,
|
| 116 |
"https://ropedia.com/dataset": 5
|
| 117 |
}
|
docs/data/publication_audit.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
-
"generated_at_utc": "2026-06-
|
| 4 |
"checks": [
|
| 5 |
{
|
| 6 |
"name": "required_publication_assets_present",
|
|
@@ -59,6 +59,7 @@
|
|
| 59 |
"RENDERED_SITE_CHECK.md": true,
|
| 60 |
"EVALUATION_PROTOCOL.md": true,
|
| 61 |
"TASK_SUITE_20.md": true,
|
|
|
|
| 62 |
"XPERIENCE10M_128_EPISODE_FEATURE_INDEX.md": true,
|
| 63 |
"FIGURE_INDEX.md": true,
|
| 64 |
"SOURCE_ALIGNMENT_AUDIT.md": true,
|
|
@@ -106,6 +107,7 @@
|
|
| 106 |
"docs/data/episode128_task_model_radar.json": true,
|
| 107 |
"docs/data/task_method_20_result_matrix.json": true,
|
| 108 |
"docs/data/task_method_20_gap_audit.json": true,
|
|
|
|
| 109 |
"docs/data/task_suite_enhancement_128.json": true,
|
| 110 |
"docs/data/xperience10m_128_episode_feature_index.json": true,
|
| 111 |
"docs/assets/modalities/video.jpg": true,
|
|
@@ -150,6 +152,7 @@
|
|
| 150 |
"scripts/build_unified_task_suite.py": true,
|
| 151 |
"scripts/build_unified_task_model_radar.py": true,
|
| 152 |
"scripts/build_task_method_20_gap_audit.py": true,
|
|
|
|
| 153 |
"scripts/build_figure_index.py": true,
|
| 154 |
"scripts/build_quality_gates.py": true,
|
| 155 |
"scripts/build_public_surface_qa.py": true,
|
|
@@ -226,8 +229,8 @@
|
|
| 226 |
"github_repo": {
|
| 227 |
"root": "repo",
|
| 228 |
"exists": true,
|
| 229 |
-
"file_count":
|
| 230 |
-
"text_file_count":
|
| 231 |
"largest_file": {
|
| 232 |
"path": "results/omni_finetune/a100_128_metadata_task_baselines_20260616_v2/interaction_text_prediction/confusion_matrix.csv",
|
| 233 |
"bytes": 73057076
|
|
@@ -237,8 +240,8 @@
|
|
| 237 |
"hf_space_bundle": {
|
| 238 |
"root": "hf_publish/space",
|
| 239 |
"exists": true,
|
| 240 |
-
"file_count":
|
| 241 |
-
"text_file_count":
|
| 242 |
"largest_file": {
|
| 243 |
"path": "results/omni_finetune/xperience10m_qwen3_omni_v6_sensor_target_probes_a100_20260619T000000Z/modality_reconstruction/predictions.jsonl",
|
| 244 |
"bytes": 10221085
|
|
@@ -248,8 +251,8 @@
|
|
| 248 |
"hf_artifact_bundle": {
|
| 249 |
"root": "hf_publish/artifacts",
|
| 250 |
"exists": true,
|
| 251 |
-
"file_count":
|
| 252 |
-
"text_file_count":
|
| 253 |
"largest_file": {
|
| 254 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 255 |
"bytes": 135591061
|
|
@@ -259,8 +262,8 @@
|
|
| 259 |
"hf_model_bundle": {
|
| 260 |
"root": "hf_publish/model",
|
| 261 |
"exists": true,
|
| 262 |
-
"file_count":
|
| 263 |
-
"text_file_count":
|
| 264 |
"largest_file": {
|
| 265 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 266 |
"bytes": 135591061
|
|
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:49:00+00:00",
|
| 4 |
"checks": [
|
| 5 |
{
|
| 6 |
"name": "required_publication_assets_present",
|
|
|
|
| 59 |
"RENDERED_SITE_CHECK.md": true,
|
| 60 |
"EVALUATION_PROTOCOL.md": true,
|
| 61 |
"TASK_SUITE_20.md": true,
|
| 62 |
+
"TASK_METHOD_20_SOURCE_AUDIT.md": true,
|
| 63 |
"XPERIENCE10M_128_EPISODE_FEATURE_INDEX.md": true,
|
| 64 |
"FIGURE_INDEX.md": true,
|
| 65 |
"SOURCE_ALIGNMENT_AUDIT.md": true,
|
|
|
|
| 107 |
"docs/data/episode128_task_model_radar.json": true,
|
| 108 |
"docs/data/task_method_20_result_matrix.json": true,
|
| 109 |
"docs/data/task_method_20_gap_audit.json": true,
|
| 110 |
+
"docs/data/task_method_20_source_audit.json": true,
|
| 111 |
"docs/data/task_suite_enhancement_128.json": true,
|
| 112 |
"docs/data/xperience10m_128_episode_feature_index.json": true,
|
| 113 |
"docs/assets/modalities/video.jpg": true,
|
|
|
|
| 152 |
"scripts/build_unified_task_suite.py": true,
|
| 153 |
"scripts/build_unified_task_model_radar.py": true,
|
| 154 |
"scripts/build_task_method_20_gap_audit.py": true,
|
| 155 |
+
"scripts/validate_task_method_matrix_sources.py": true,
|
| 156 |
"scripts/build_figure_index.py": true,
|
| 157 |
"scripts/build_quality_gates.py": true,
|
| 158 |
"scripts/build_public_surface_qa.py": true,
|
|
|
|
| 229 |
"github_repo": {
|
| 230 |
"root": "repo",
|
| 231 |
"exists": true,
|
| 232 |
+
"file_count": 1513,
|
| 233 |
+
"text_file_count": 1252,
|
| 234 |
"largest_file": {
|
| 235 |
"path": "results/omni_finetune/a100_128_metadata_task_baselines_20260616_v2/interaction_text_prediction/confusion_matrix.csv",
|
| 236 |
"bytes": 73057076
|
|
|
|
| 240 |
"hf_space_bundle": {
|
| 241 |
"root": "hf_publish/space",
|
| 242 |
"exists": true,
|
| 243 |
+
"file_count": 558,
|
| 244 |
+
"text_file_count": 411,
|
| 245 |
"largest_file": {
|
| 246 |
"path": "results/omni_finetune/xperience10m_qwen3_omni_v6_sensor_target_probes_a100_20260619T000000Z/modality_reconstruction/predictions.jsonl",
|
| 247 |
"bytes": 10221085
|
|
|
|
| 251 |
"hf_artifact_bundle": {
|
| 252 |
"root": "hf_publish/artifacts",
|
| 253 |
"exists": true,
|
| 254 |
+
"file_count": 4477,
|
| 255 |
+
"text_file_count": 1271,
|
| 256 |
"largest_file": {
|
| 257 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 258 |
"bytes": 135591061
|
|
|
|
| 262 |
"hf_model_bundle": {
|
| 263 |
"root": "hf_publish/model",
|
| 264 |
"exists": true,
|
| 265 |
+
"file_count": 5228,
|
| 266 |
+
"text_file_count": 1440,
|
| 267 |
"largest_file": {
|
| 268 |
"path": "results/omni_finetune/xperience10m_128ep_dense_multiscale_hierarchical_v1_20260608/dense_multiscale_windows.jsonl",
|
| 269 |
"bytes": 135591061
|
docs/data/quality_gates.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Release Checks",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"rule": "A release is current when the automated reports pass and the live GitHub/Hugging Face mirrors are verified after publishing.",
|
| 6 |
"automated_gates": [
|
| 7 |
{
|
|
@@ -76,6 +76,18 @@
|
|
| 76 |
"status": "pass"
|
| 77 |
}
|
| 78 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
{
|
| 80 |
"id": "figure_index",
|
| 81 |
"title": "Figure index",
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Ropedia Xperience-10M Release Checks",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:48:18+00:00",
|
| 5 |
"rule": "A release is current when the automated reports pass and the live GitHub/Hugging Face mirrors are verified after publishing.",
|
| 6 |
"automated_gates": [
|
| 7 |
{
|
|
|
|
| 76 |
"status": "pass"
|
| 77 |
}
|
| 78 |
},
|
| 79 |
+
{
|
| 80 |
+
"id": "task_method_source_audit",
|
| 81 |
+
"title": "Task-method source audit",
|
| 82 |
+
"command": "python scripts/validate_task_method_matrix_sources.py",
|
| 83 |
+
"report": "docs/data/task_method_20_source_audit.json",
|
| 84 |
+
"blocks_if": "A scored 20-task matrix cell points to a JSON metric source that does not contain the same metric value.",
|
| 85 |
+
"shows": "Public 20-task scores remain traceable to their task-specific metric artifacts.",
|
| 86 |
+
"current_report": {
|
| 87 |
+
"exists": true,
|
| 88 |
+
"status": "pass"
|
| 89 |
+
}
|
| 90 |
+
},
|
| 91 |
{
|
| 92 |
"id": "figure_index",
|
| 93 |
"title": "Figure index",
|
docs/data/single_episode_task_model_radar.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Single-Episode 20-Task Radar",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"description": "Minimal and Neural MLP baselines on the one public sample episode, both scored on all 20 task contracts.",
|
| 6 |
"task_count": 20,
|
| 7 |
"method_count": 2,
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Single-Episode 20-Task Radar",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:38:21+00:00",
|
| 5 |
"description": "Minimal and Neural MLP baselines on the one public sample episode, both scored on all 20 task contracts.",
|
| 6 |
"task_count": 20,
|
| 7 |
"method_count": 2,
|
docs/data/task_method_20_gap_audit.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"generated_at_utc": "2026-06-
|
| 3 |
"immediate_actions": [
|
| 4 |
{
|
| 5 |
"artifact": "docs/data/task_method_20_gap_audit.json",
|
|
|
|
| 1 |
{
|
| 2 |
+
"generated_at_utc": "2026-06-20T20:38:59+00:00",
|
| 3 |
"immediate_actions": [
|
| 4 |
{
|
| 5 |
"artifact": "docs/data/task_method_20_gap_audit.json",
|
docs/data/task_method_20_result_matrix.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Task Method 20-Result Matrix",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"task_count": 20,
|
| 6 |
"method_count": 9,
|
| 7 |
"method_task_record_count": 180,
|
|
@@ -1980,7 +1980,7 @@
|
|
| 1980 |
"raw_text": "0.6286",
|
| 1981 |
"normalized_score": 0.6286317274823326,
|
| 1982 |
"metric_key": "temporal_order_f1",
|
| 1983 |
-
"source": "results/omni_finetune/
|
| 1984 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1985 |
"reason": null
|
| 1986 |
},
|
|
@@ -2142,7 +2142,7 @@
|
|
| 2142 |
"raw_text": "0.3727",
|
| 2143 |
"normalized_score": 0.37271645981034185,
|
| 2144 |
"metric_key": "misalignment_detection_f1",
|
| 2145 |
-
"source": "results/omni_finetune/
|
| 2146 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2147 |
"reason": null
|
| 2148 |
},
|
|
@@ -2466,7 +2466,7 @@
|
|
| 2466 |
"raw_text": "0.0000",
|
| 2467 |
"normalized_score": 0.0,
|
| 2468 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 2469 |
-
"source": "results/omni_finetune/
|
| 2470 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2471 |
"reason": null
|
| 2472 |
},
|
|
@@ -2610,7 +2610,7 @@
|
|
| 2610 |
"raw_text": "0.4319",
|
| 2611 |
"normalized_score": 0.4318674027510605,
|
| 2612 |
"metric_key": "macro_f1",
|
| 2613 |
-
"source": "results/omni_finetune/
|
| 2614 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2615 |
"reason": null
|
| 2616 |
},
|
|
@@ -2952,7 +2952,7 @@
|
|
| 2952 |
"raw_text": "0.0009",
|
| 2953 |
"normalized_score": 0.0009279881217520415,
|
| 2954 |
"metric_key": "object_set_forecast_micro_f1",
|
| 2955 |
-
"source": "results/omni_finetune/
|
| 2956 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2957 |
"reason": null
|
| 2958 |
},
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Task Method 20-Result Matrix",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:38:21+00:00",
|
| 5 |
"task_count": 20,
|
| 6 |
"method_count": 9,
|
| 7 |
"method_task_record_count": 180,
|
|
|
|
| 1980 |
"raw_text": "0.6286",
|
| 1981 |
"normalized_score": 0.6286317274823326,
|
| 1982 |
"metric_key": "temporal_order_f1",
|
| 1983 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 1984 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1985 |
"reason": null
|
| 1986 |
},
|
|
|
|
| 2142 |
"raw_text": "0.3727",
|
| 2143 |
"normalized_score": 0.37271645981034185,
|
| 2144 |
"metric_key": "misalignment_detection_f1",
|
| 2145 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 2146 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2147 |
"reason": null
|
| 2148 |
},
|
|
|
|
| 2466 |
"raw_text": "0.0000",
|
| 2467 |
"normalized_score": 0.0,
|
| 2468 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 2469 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 2470 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2471 |
"reason": null
|
| 2472 |
},
|
|
|
|
| 2610 |
"raw_text": "0.4319",
|
| 2611 |
"normalized_score": 0.4318674027510605,
|
| 2612 |
"metric_key": "macro_f1",
|
| 2613 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 2614 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2615 |
"reason": null
|
| 2616 |
},
|
|
|
|
| 2952 |
"raw_text": "0.0009",
|
| 2953 |
"normalized_score": 0.0009279881217520415,
|
| 2954 |
"metric_key": "object_set_forecast_micro_f1",
|
| 2955 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 2956 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2957 |
"reason": null
|
| 2958 |
},
|
docs/data/task_method_20_source_audit.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"checked_json_metric_count": 180,
|
| 3 |
+
"failure_count": 0,
|
| 4 |
+
"failures": [],
|
| 5 |
+
"generated_at_utc": "2026-06-20T20:48:41+00:00",
|
| 6 |
+
"method_task_record_count": 180,
|
| 7 |
+
"rule": "Every scored row that declares a JSON metric source must have the same numeric value under that row's metric_key.",
|
| 8 |
+
"scored_method_task_count": 180,
|
| 9 |
+
"skipped_record_count": 0,
|
| 10 |
+
"skipped_records": [],
|
| 11 |
+
"source_matrix": "docs/data/task_method_20_result_matrix.json",
|
| 12 |
+
"status": "pass",
|
| 13 |
+
"status_counts": {
|
| 14 |
+
"checked": 180
|
| 15 |
+
},
|
| 16 |
+
"title": "Task Method 20 Matrix Source Audit"
|
| 17 |
+
}
|
docs/data/unified_task_model_radar.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "Unified 20-Task Model Radar",
|
| 3 |
"status": "pass",
|
| 4 |
-
"generated_at_utc": "2026-06-
|
| 5 |
"task_count": 20,
|
| 6 |
"method_count": 9,
|
| 7 |
"method_task_record_count": 180,
|
|
@@ -1396,7 +1396,7 @@
|
|
| 1396 |
"cosmos3_super_reasoner": {
|
| 1397 |
"raw": 0.6286317274823326,
|
| 1398 |
"metric_key": "temporal_order_f1",
|
| 1399 |
-
"source": "results/omni_finetune/
|
| 1400 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1401 |
"status": "scored",
|
| 1402 |
"reason": null,
|
|
@@ -1507,7 +1507,7 @@
|
|
| 1507 |
"cosmos3_super_reasoner": {
|
| 1508 |
"raw": 0.37271645981034185,
|
| 1509 |
"metric_key": "misalignment_detection_f1",
|
| 1510 |
-
"source": "results/omni_finetune/
|
| 1511 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1512 |
"status": "scored",
|
| 1513 |
"reason": null,
|
|
@@ -1729,7 +1729,7 @@
|
|
| 1729 |
"cosmos3_super_reasoner": {
|
| 1730 |
"raw": 0.0,
|
| 1731 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1732 |
-
"source": "results/omni_finetune/
|
| 1733 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1734 |
"status": "scored",
|
| 1735 |
"reason": null,
|
|
@@ -1829,7 +1829,7 @@
|
|
| 1829 |
"qwen3_omni_v6_lora": {
|
| 1830 |
"raw": 0.4318674027510605,
|
| 1831 |
"metric_key": "macro_f1",
|
| 1832 |
-
"source": "results/omni_finetune/
|
| 1833 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1834 |
"status": "scored",
|
| 1835 |
"reason": null,
|
|
@@ -2062,7 +2062,7 @@
|
|
| 2062 |
"cosmos3_super_reasoner": {
|
| 2063 |
"raw": 0.0009279881217520415,
|
| 2064 |
"metric_key": "object_set_forecast_micro_f1",
|
| 2065 |
-
"source": "results/omni_finetune/
|
| 2066 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2067 |
"status": "scored",
|
| 2068 |
"reason": null,
|
|
@@ -4278,7 +4278,7 @@
|
|
| 4278 |
"raw_text": "0.6286",
|
| 4279 |
"normalized_score": 0.6286317274823326,
|
| 4280 |
"metric_key": "temporal_order_f1",
|
| 4281 |
-
"source": "results/omni_finetune/
|
| 4282 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4283 |
"reason": null
|
| 4284 |
},
|
|
@@ -4440,7 +4440,7 @@
|
|
| 4440 |
"raw_text": "0.3727",
|
| 4441 |
"normalized_score": 0.37271645981034185,
|
| 4442 |
"metric_key": "misalignment_detection_f1",
|
| 4443 |
-
"source": "results/omni_finetune/
|
| 4444 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4445 |
"reason": null
|
| 4446 |
},
|
|
@@ -4764,7 +4764,7 @@
|
|
| 4764 |
"raw_text": "0.0000",
|
| 4765 |
"normalized_score": 0.0,
|
| 4766 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 4767 |
-
"source": "results/omni_finetune/
|
| 4768 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4769 |
"reason": null
|
| 4770 |
},
|
|
@@ -4908,7 +4908,7 @@
|
|
| 4908 |
"raw_text": "0.4319",
|
| 4909 |
"normalized_score": 0.4318674027510605,
|
| 4910 |
"metric_key": "macro_f1",
|
| 4911 |
-
"source": "results/omni_finetune/
|
| 4912 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4913 |
"reason": null
|
| 4914 |
},
|
|
@@ -5250,7 +5250,7 @@
|
|
| 5250 |
"raw_text": "0.0009",
|
| 5251 |
"normalized_score": 0.0009279881217520415,
|
| 5252 |
"metric_key": "object_set_forecast_micro_f1",
|
| 5253 |
-
"source": "results/omni_finetune/
|
| 5254 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 5255 |
"reason": null
|
| 5256 |
},
|
|
|
|
| 1 |
{
|
| 2 |
"title": "Unified 20-Task Model Radar",
|
| 3 |
"status": "pass",
|
| 4 |
+
"generated_at_utc": "2026-06-20T20:38:21+00:00",
|
| 5 |
"task_count": 20,
|
| 6 |
"method_count": 9,
|
| 7 |
"method_task_record_count": 180,
|
|
|
|
| 1396 |
"cosmos3_super_reasoner": {
|
| 1397 |
"raw": 0.6286317274823326,
|
| 1398 |
"metric_key": "temporal_order_f1",
|
| 1399 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 1400 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1401 |
"status": "scored",
|
| 1402 |
"reason": null,
|
|
|
|
| 1507 |
"cosmos3_super_reasoner": {
|
| 1508 |
"raw": 0.37271645981034185,
|
| 1509 |
"metric_key": "misalignment_detection_f1",
|
| 1510 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 1511 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1512 |
"status": "scored",
|
| 1513 |
"reason": null,
|
|
|
|
| 1729 |
"cosmos3_super_reasoner": {
|
| 1730 |
"raw": 0.0,
|
| 1731 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 1732 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 1733 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1734 |
"status": "scored",
|
| 1735 |
"reason": null,
|
|
|
|
| 1829 |
"qwen3_omni_v6_lora": {
|
| 1830 |
"raw": 0.4318674027510605,
|
| 1831 |
"metric_key": "macro_f1",
|
| 1832 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 1833 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 1834 |
"status": "scored",
|
| 1835 |
"reason": null,
|
|
|
|
| 2062 |
"cosmos3_super_reasoner": {
|
| 2063 |
"raw": 0.0009279881217520415,
|
| 2064 |
"metric_key": "object_set_forecast_micro_f1",
|
| 2065 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 2066 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 2067 |
"status": "scored",
|
| 2068 |
"reason": null,
|
|
|
|
| 4278 |
"raw_text": "0.6286",
|
| 4279 |
"normalized_score": 0.6286317274823326,
|
| 4280 |
"metric_key": "temporal_order_f1",
|
| 4281 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/temporal_order/metrics.json",
|
| 4282 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4283 |
"reason": null
|
| 4284 |
},
|
|
|
|
| 4440 |
"raw_text": "0.3727",
|
| 4441 |
"normalized_score": 0.37271645981034185,
|
| 4442 |
"metric_key": "misalignment_detection_f1",
|
| 4443 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/misalignment_detection/metrics.json",
|
| 4444 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4445 |
"reason": null
|
| 4446 |
},
|
|
|
|
| 4764 |
"raw_text": "0.0000",
|
| 4765 |
"normalized_score": 0.0,
|
| 4766 |
"metric_key": "next_subtask_forecast_macro_f1",
|
| 4767 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/next_subtask_forecast/metrics.json",
|
| 4768 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4769 |
"reason": null
|
| 4770 |
},
|
|
|
|
| 4908 |
"raw_text": "0.4319",
|
| 4909 |
"normalized_score": 0.4318674027510605,
|
| 4910 |
"metric_key": "macro_f1",
|
| 4911 |
+
"source": "results/omni_finetune/xperience10m_qwen3_omni_v6_interaction_text_task15_a100_20260620T010305Z/interaction_text_prediction/metrics.json",
|
| 4912 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 4913 |
"reason": null
|
| 4914 |
},
|
|
|
|
| 5250 |
"raw_text": "0.0009",
|
| 5251 |
"normalized_score": 0.0009279881217520415,
|
| 5252 |
"metric_key": "object_set_forecast_micro_f1",
|
| 5253 |
+
"source": "results/omni_finetune/xperience10m_cosmos3_super_future_task_probes_a100_textonly_v1_20260620/object_set_forecast/metrics.json",
|
| 5254 |
"scope": "multi_episode_128_partial_model_overlay",
|
| 5255 |
"reason": null
|
| 5256 |
},
|
docs/data/website_integrity.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
-
"generated_at_utc": "2026-06-
|
| 4 |
"docs_root": "docs",
|
| 5 |
"site_base": "/ropedia-xperience-10m-task-suite/",
|
| 6 |
"summary": {
|
| 7 |
"html_pages": 4,
|
| 8 |
"local_references": 213,
|
| 9 |
"external_reference_count": 152,
|
| 10 |
-
"json_files":
|
| 11 |
"image_assets_referenced": 28,
|
| 12 |
"failure_count": 0
|
| 13 |
},
|
|
@@ -301,7 +301,7 @@
|
|
| 301 |
},
|
| 302 |
{
|
| 303 |
"path": "data/artifact_index.json",
|
| 304 |
-
"bytes":
|
| 305 |
"top_level_type": "dict"
|
| 306 |
},
|
| 307 |
{
|
|
@@ -316,7 +316,7 @@
|
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"path": "data/episode128_task_model_radar.json",
|
| 319 |
-
"bytes":
|
| 320 |
"top_level_type": "dict"
|
| 321 |
},
|
| 322 |
{
|
|
@@ -491,7 +491,12 @@
|
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"path": "data/task_method_20_result_matrix.json",
|
| 494 |
-
"bytes":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 495 |
"top_level_type": "dict"
|
| 496 |
},
|
| 497 |
{
|
|
@@ -526,7 +531,7 @@
|
|
| 526 |
},
|
| 527 |
{
|
| 528 |
"path": "data/unified_task_model_radar.json",
|
| 529 |
-
"bytes":
|
| 530 |
"top_level_type": "dict"
|
| 531 |
},
|
| 532 |
{
|
|
|
|
| 1 |
{
|
| 2 |
"status": "pass",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:41:45+00:00",
|
| 4 |
"docs_root": "docs",
|
| 5 |
"site_base": "/ropedia-xperience-10m-task-suite/",
|
| 6 |
"summary": {
|
| 7 |
"html_pages": 4,
|
| 8 |
"local_references": 213,
|
| 9 |
"external_reference_count": 152,
|
| 10 |
+
"json_files": 51,
|
| 11 |
"image_assets_referenced": 28,
|
| 12 |
"failure_count": 0
|
| 13 |
},
|
|
|
|
| 301 |
},
|
| 302 |
{
|
| 303 |
"path": "data/artifact_index.json",
|
| 304 |
+
"bytes": 122823,
|
| 305 |
"top_level_type": "dict"
|
| 306 |
},
|
| 307 |
{
|
|
|
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"path": "data/episode128_task_model_radar.json",
|
| 319 |
+
"bytes": 184945,
|
| 320 |
"top_level_type": "dict"
|
| 321 |
},
|
| 322 |
{
|
|
|
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"path": "data/task_method_20_result_matrix.json",
|
| 494 |
+
"bytes": 128509,
|
| 495 |
+
"top_level_type": "dict"
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"path": "data/task_method_20_source_audit.json",
|
| 499 |
+
"bytes": 561,
|
| 500 |
"top_level_type": "dict"
|
| 501 |
},
|
| 502 |
{
|
|
|
|
| 531 |
},
|
| 532 |
{
|
| 533 |
"path": "data/unified_task_model_radar.json",
|
| 534 |
+
"bytes": 228799,
|
| 535 |
"top_level_type": "dict"
|
| 536 |
},
|
| 537 |
{
|
results/omni_finetune/model_output_probe_readiness/RUN_REPORT.md
CHANGED
|
@@ -1,15 +1,11 @@
|
|
| 1 |
# Model Output Probe Readiness
|
| 2 |
|
| 3 |
-
Generated: `2026-06-
|
| 4 |
|
| 5 |
-
|
| 6 |
-
completion. It is retained as provenance for the probe-planning step, but the
|
| 7 |
-
current public matrix is now complete at `180/180` scored method-task records.
|
| 8 |
-
Use `docs/data/task_method_20_result_matrix.json` as the authoritative current
|
| 9 |
-
coverage source.
|
| 10 |
|
| 11 |
-
| Method | ID |
|
| 12 |
| --- | --- | --- | --- | --- | --- |
|
| 13 |
-
| Cosmos3-Nano Future Window | cosmos3_nano_future_window | 20/20 | superseded_by_completed_matrix | train:
|
| 14 |
-
| Cosmos3-Super Reasoner | cosmos3_super_reasoner | 20/20 | superseded_by_completed_matrix | train:
|
| 15 |
-
| Qwen3-Omni v6 LoRA | qwen3_omni_v6_lora | 20/20 | superseded_by_completed_matrix | train:
|
|
|
|
| 1 |
# Model Output Probe Readiness
|
| 2 |
|
| 3 |
+
Generated: `2026-06-20T20:38:59+00:00`
|
| 4 |
|
| 5 |
+
The 20-task matrix is already complete, so this readiness report is superseded for the current release. It remains a guardrail for future replacement model-output probes and does not assign new task scores.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
+
| Method | ID | Matrix scores | Status | Split files | Next step |
|
| 8 |
| --- | --- | --- | --- | --- | --- |
|
| 9 |
+
| Cosmos3-Nano Future Window | cosmos3_nano_future_window | 20/20 | superseded_by_completed_matrix | train: missing; validation: missing; test: missing | No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts. |
|
| 10 |
+
| Cosmos3-Super Reasoner | cosmos3_super_reasoner | 20/20 | superseded_by_completed_matrix | train: missing; validation: missing; test: present | No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts. |
|
| 11 |
+
| Qwen3-Omni v6 LoRA | qwen3_omni_v6_lora | 20/20 | superseded_by_completed_matrix | train: missing; validation: missing; test: present | No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts. |
|
results/omni_finetune/model_output_probe_readiness/model_output_probe_readiness.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
| 1 |
{
|
| 2 |
-
"
|
|
|
|
| 3 |
"methods": {
|
| 4 |
"cosmos3_nano_future_window": {
|
| 5 |
"label": "Cosmos3-Nano Future Window",
|
| 6 |
-
"current_matrix_scored_task_count": 20,
|
| 7 |
-
"current_matrix_scoreless_task_count": 0,
|
| 8 |
"matrix_scored_task_count": 20,
|
| 9 |
"matrix_scoreless_task_count": 0,
|
| 10 |
-
"next_step": "
|
| 11 |
"ready_for_all_task_probe": false,
|
| 12 |
"required_splits": [
|
| 13 |
"train",
|
|
@@ -42,11 +41,9 @@
|
|
| 42 |
},
|
| 43 |
"cosmos3_super_reasoner": {
|
| 44 |
"label": "Cosmos3-Super Reasoner",
|
| 45 |
-
"current_matrix_scored_task_count": 20,
|
| 46 |
-
"current_matrix_scoreless_task_count": 0,
|
| 47 |
"matrix_scored_task_count": 20,
|
| 48 |
"matrix_scoreless_task_count": 0,
|
| 49 |
-
"next_step": "
|
| 50 |
"ready_for_all_task_probe": false,
|
| 51 |
"required_splits": [
|
| 52 |
"train",
|
|
@@ -82,9 +79,7 @@
|
|
| 82 |
"label": "Qwen3-Omni v6 LoRA",
|
| 83 |
"matrix_scored_task_count": 20,
|
| 84 |
"matrix_scoreless_task_count": 0,
|
| 85 |
-
"
|
| 86 |
-
"current_matrix_scoreless_task_count": 0,
|
| 87 |
-
"next_step": "Use docs/data/task_method_20_result_matrix.json as the authoritative current coverage source.",
|
| 88 |
"ready_for_all_task_probe": false,
|
| 89 |
"required_splits": [
|
| 90 |
"train",
|
|
@@ -117,11 +112,10 @@
|
|
| 117 |
"status": "superseded_by_completed_matrix"
|
| 118 |
}
|
| 119 |
},
|
| 120 |
-
"ready_method_count":
|
| 121 |
-
"scope": "This artifact is retained as a
|
| 122 |
-
"score_policy": "
|
| 123 |
"source_matrix": "docs/data/task_method_20_result_matrix.json",
|
| 124 |
"status": "pass",
|
| 125 |
-
"
|
| 126 |
-
"title": "Model Output Probe Readiness (superseded by completed 180-result matrix)"
|
| 127 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"completion_state": "completed_matrix",
|
| 3 |
+
"generated_at_utc": "2026-06-20T20:38:59+00:00",
|
| 4 |
"methods": {
|
| 5 |
"cosmos3_nano_future_window": {
|
| 6 |
"label": "Cosmos3-Nano Future Window",
|
|
|
|
|
|
|
| 7 |
"matrix_scored_task_count": 20,
|
| 8 |
"matrix_scoreless_task_count": 0,
|
| 9 |
+
"next_step": "No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts.",
|
| 10 |
"ready_for_all_task_probe": false,
|
| 11 |
"required_splits": [
|
| 12 |
"train",
|
|
|
|
| 41 |
},
|
| 42 |
"cosmos3_super_reasoner": {
|
| 43 |
"label": "Cosmos3-Super Reasoner",
|
|
|
|
|
|
|
| 44 |
"matrix_scored_task_count": 20,
|
| 45 |
"matrix_scoreless_task_count": 0,
|
| 46 |
+
"next_step": "No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts.",
|
| 47 |
"ready_for_all_task_probe": false,
|
| 48 |
"required_splits": [
|
| 49 |
"train",
|
|
|
|
| 79 |
"label": "Qwen3-Omni v6 LoRA",
|
| 80 |
"matrix_scored_task_count": 20,
|
| 81 |
"matrix_scoreless_task_count": 0,
|
| 82 |
+
"next_step": "No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts.",
|
|
|
|
|
|
|
| 83 |
"ready_for_all_task_probe": false,
|
| 84 |
"required_splits": [
|
| 85 |
"train",
|
|
|
|
| 112 |
"status": "superseded_by_completed_matrix"
|
| 113 |
}
|
| 114 |
},
|
| 115 |
+
"ready_method_count": 0,
|
| 116 |
+
"scope": "The current matrix is already complete. This artifact is retained as a guardrail for future replacement model-output probes and does not create or infer numeric scores.",
|
| 117 |
+
"score_policy": "The current matrix has zero scoreless cells. Future replacement scores must still come from task-specific held-out artifacts.",
|
| 118 |
"source_matrix": "docs/data/task_method_20_result_matrix.json",
|
| 119 |
"status": "pass",
|
| 120 |
+
"title": "Model Output Probe Readiness"
|
|
|
|
| 121 |
}
|
scripts/build_artifact_index.py
CHANGED
|
@@ -573,6 +573,22 @@ ARTIFACTS = [
|
|
| 573 |
"surface": "repo_hf",
|
| 574 |
"shows": "Reader-facing ledger confirming 180/180 scored method-task cells and listing the six compact-proxy records separately.",
|
| 575 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 576 |
{
|
| 577 |
"id": "unified_task_model_radar_chart",
|
| 578 |
"title": "Unified 20-task model radar",
|
|
@@ -613,6 +629,14 @@ ARTIFACTS = [
|
|
| 613 |
"surface": "repo_hf",
|
| 614 |
"shows": "Regenerates the public completion/proxy audit from the 9-method by 20-task matrix without inventing unsupported scores.",
|
| 615 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 616 |
{
|
| 617 |
"id": "all_task_model_scoring_waiter",
|
| 618 |
"title": "All-task model scoring guarded waiter",
|
|
|
|
| 573 |
"surface": "repo_hf",
|
| 574 |
"shows": "Reader-facing ledger confirming 180/180 scored method-task cells and listing the six compact-proxy records separately.",
|
| 575 |
},
|
| 576 |
+
{
|
| 577 |
+
"id": "task_method_20_source_audit_json",
|
| 578 |
+
"title": "Task-method 20-result source audit JSON",
|
| 579 |
+
"path": "docs/data/task_method_20_source_audit.json",
|
| 580 |
+
"kind": "website_data",
|
| 581 |
+
"surface": "website_hf",
|
| 582 |
+
"shows": "Machine-readable check that scored JSON-backed matrix cells match their declared metric source values.",
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"id": "task_method_20_source_audit",
|
| 586 |
+
"title": "Task-method 20-result source audit",
|
| 587 |
+
"path": "TASK_METHOD_20_SOURCE_AUDIT.md",
|
| 588 |
+
"kind": "evaluation_protocol",
|
| 589 |
+
"surface": "repo_hf",
|
| 590 |
+
"shows": "Reader-facing source-value audit for the 180-result matrix.",
|
| 591 |
+
},
|
| 592 |
{
|
| 593 |
"id": "unified_task_model_radar_chart",
|
| 594 |
"title": "Unified 20-task model radar",
|
|
|
|
| 629 |
"surface": "repo_hf",
|
| 630 |
"shows": "Regenerates the public completion/proxy audit from the 9-method by 20-task matrix without inventing unsupported scores.",
|
| 631 |
},
|
| 632 |
+
{
|
| 633 |
+
"id": "task_method_20_source_audit_validator",
|
| 634 |
+
"title": "Task-method source-audit validator",
|
| 635 |
+
"path": "scripts/validate_task_method_matrix_sources.py",
|
| 636 |
+
"kind": "publication_workflow",
|
| 637 |
+
"surface": "repo_hf",
|
| 638 |
+
"shows": "Fails release checks if a scored matrix row disagrees with its JSON metric source.",
|
| 639 |
+
},
|
| 640 |
{
|
| 641 |
"id": "all_task_model_scoring_waiter",
|
| 642 |
"title": "All-task model scoring guarded waiter",
|
scripts/build_quality_gates.py
CHANGED
|
@@ -67,6 +67,14 @@ GATES = [
|
|
| 67 |
"blocks_if": "Windowing, split policy, leakage controls, task metrics, or current limitations are not explicit.",
|
| 68 |
"shows": "The task evaluation protocol is generated from committed metric artifacts.",
|
| 69 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
{
|
| 71 |
"id": "figure_index",
|
| 72 |
"title": "Figure index",
|
|
@@ -220,6 +228,7 @@ def markdown(payload: dict) -> str:
|
|
| 220 |
"python scripts/validate_scope_claims.py",
|
| 221 |
"python scripts/validate_source_alignment.py",
|
| 222 |
"python scripts/build_evaluation_protocol.py",
|
|
|
|
| 223 |
"python scripts/build_brand_assets.py",
|
| 224 |
"python scripts/build_figure_index.py",
|
| 225 |
"python scripts/validate_website_integrity.py",
|
|
|
|
| 67 |
"blocks_if": "Windowing, split policy, leakage controls, task metrics, or current limitations are not explicit.",
|
| 68 |
"shows": "The task evaluation protocol is generated from committed metric artifacts.",
|
| 69 |
},
|
| 70 |
+
{
|
| 71 |
+
"id": "task_method_source_audit",
|
| 72 |
+
"title": "Task-method source audit",
|
| 73 |
+
"command": "python scripts/validate_task_method_matrix_sources.py",
|
| 74 |
+
"report": "docs/data/task_method_20_source_audit.json",
|
| 75 |
+
"blocks_if": "A scored 20-task matrix cell points to a JSON metric source that does not contain the same metric value.",
|
| 76 |
+
"shows": "Public 20-task scores remain traceable to their task-specific metric artifacts.",
|
| 77 |
+
},
|
| 78 |
{
|
| 79 |
"id": "figure_index",
|
| 80 |
"title": "Figure index",
|
|
|
|
| 228 |
"python scripts/validate_scope_claims.py",
|
| 229 |
"python scripts/validate_source_alignment.py",
|
| 230 |
"python scripts/build_evaluation_protocol.py",
|
| 231 |
+
"python scripts/validate_task_method_matrix_sources.py",
|
| 232 |
"python scripts/build_brand_assets.py",
|
| 233 |
"python scripts/build_figure_index.py",
|
| 234 |
"python scripts/validate_website_integrity.py",
|
scripts/build_unified_task_model_radar.py
CHANGED
|
@@ -414,6 +414,10 @@ FOUNDATION_METRIC_SOURCE_OVERRIDES = {
|
|
| 414 |
("qwen3_omni_v6_lora", "action_object_relation"): QWEN_ACTION_OBJECT_METRICS_PATH,
|
| 415 |
("cosmos3_super_reasoner", "action_object_relation"): COSMOS_SUPER_ACTION_OBJECT_METRICS_PATH,
|
| 416 |
("cosmos3_super_reasoner", "caption_grounding"): COSMOS_SUPER_CAPTION_GROUNDING_METRICS_PATH,
|
|
|
|
|
|
|
|
|
|
|
|
|
| 417 |
("qwen3_omni_v6_lora", "caption_grounding"): QWEN_FUTURE_TASK_METRIC_PATHS["caption_grounding"],
|
| 418 |
("qwen3_omni_v6_lora", "cross_modal_retrieval"): QWEN_FUTURE_TASK_METRIC_PATHS["cross_modal_retrieval"],
|
| 419 |
("qwen3_omni_v6_lora", "temporal_order"): QWEN_FUTURE_TASK_METRIC_PATHS["temporal_order"],
|
|
@@ -426,6 +430,7 @@ FOUNDATION_METRIC_SOURCE_OVERRIDES = {
|
|
| 426 |
("qwen3_omni_v6_lora", "hand_trajectory_forecast"): QWEN_FUTURE_TASK_METRIC_PATHS["hand_trajectory_forecast"],
|
| 427 |
("qwen3_omni_v6_lora", "modality_reconstruction"): QWEN_FUTURE_TASK_METRIC_PATHS["modality_reconstruction"],
|
| 428 |
("qwen3_omni_v6_lora", "imu_to_hand_pose"): QWEN_FUTURE_TASK_METRIC_PATHS["imu_to_hand_pose"],
|
|
|
|
| 429 |
("cosmos3_nano_future_window", "long_horizon_next_action"): COSMOS_NANO_LONG_HORIZON_METRICS_PATH,
|
| 430 |
("cosmos3_nano_future_window", "next_subtask_forecast"): COSMOS_NANO_NEXT_SUBTASK_METRICS_PATH,
|
| 431 |
("cosmos3_nano_future_window", "modality_reconstruction"): COSMOS_NANO_MODALITY_RECONSTRUCTION_METRICS_PATH,
|
|
|
|
| 414 |
("qwen3_omni_v6_lora", "action_object_relation"): QWEN_ACTION_OBJECT_METRICS_PATH,
|
| 415 |
("cosmos3_super_reasoner", "action_object_relation"): COSMOS_SUPER_ACTION_OBJECT_METRICS_PATH,
|
| 416 |
("cosmos3_super_reasoner", "caption_grounding"): COSMOS_SUPER_CAPTION_GROUNDING_METRICS_PATH,
|
| 417 |
+
("cosmos3_super_reasoner", "temporal_order"): COSMOS_SUPER_FUTURE_TASK_METRIC_PATHS["temporal_order"],
|
| 418 |
+
("cosmos3_super_reasoner", "misalignment_detection"): COSMOS_SUPER_FUTURE_TASK_METRIC_PATHS["misalignment_detection"],
|
| 419 |
+
("cosmos3_super_reasoner", "next_subtask_forecast"): COSMOS_SUPER_FUTURE_TASK_METRIC_PATHS["next_subtask_forecast"],
|
| 420 |
+
("cosmos3_super_reasoner", "object_set_forecast"): COSMOS_SUPER_FUTURE_TASK_METRIC_PATHS["object_set_forecast"],
|
| 421 |
("qwen3_omni_v6_lora", "caption_grounding"): QWEN_FUTURE_TASK_METRIC_PATHS["caption_grounding"],
|
| 422 |
("qwen3_omni_v6_lora", "cross_modal_retrieval"): QWEN_FUTURE_TASK_METRIC_PATHS["cross_modal_retrieval"],
|
| 423 |
("qwen3_omni_v6_lora", "temporal_order"): QWEN_FUTURE_TASK_METRIC_PATHS["temporal_order"],
|
|
|
|
| 430 |
("qwen3_omni_v6_lora", "hand_trajectory_forecast"): QWEN_FUTURE_TASK_METRIC_PATHS["hand_trajectory_forecast"],
|
| 431 |
("qwen3_omni_v6_lora", "modality_reconstruction"): QWEN_FUTURE_TASK_METRIC_PATHS["modality_reconstruction"],
|
| 432 |
("qwen3_omni_v6_lora", "imu_to_hand_pose"): QWEN_FUTURE_TASK_METRIC_PATHS["imu_to_hand_pose"],
|
| 433 |
+
("qwen3_omni_v6_lora", "interaction_text_prediction"): QWEN_FUTURE_TASK_METRIC_PATHS["interaction_text_prediction"],
|
| 434 |
("cosmos3_nano_future_window", "long_horizon_next_action"): COSMOS_NANO_LONG_HORIZON_METRICS_PATH,
|
| 435 |
("cosmos3_nano_future_window", "next_subtask_forecast"): COSMOS_NANO_NEXT_SUBTASK_METRICS_PATH,
|
| 436 |
("cosmos3_nano_future_window", "modality_reconstruction"): COSMOS_NANO_MODALITY_RECONSTRUCTION_METRICS_PATH,
|
scripts/omni/eval_cosmos3_super_future_task_probes.py
CHANGED
|
@@ -31,6 +31,7 @@ from eval_qwen3_omni_future_task_probes import (
|
|
| 31 |
score_task as qwen_score_task,
|
| 32 |
select_eval_indices,
|
| 33 |
select_tasks,
|
|
|
|
| 34 |
task_target_value,
|
| 35 |
time_to_transition_map,
|
| 36 |
write_json,
|
|
@@ -212,9 +213,14 @@ def main() -> int:
|
|
| 212 |
samples = load_jsonl(args.dataset_jsonl)
|
| 213 |
future_map = future_index_map(samples, args.future_frames)
|
| 214 |
transition_targets = time_to_transition_map(samples)
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 218 |
|
| 219 |
write_json(args.output_dir / "server_info.json", server_info(args))
|
| 220 |
append_jsonl(
|
|
@@ -224,7 +230,9 @@ def main() -> int:
|
|
| 224 |
"timestamp": time.time(),
|
| 225 |
"run_id": args.run_id,
|
| 226 |
"tasks": selected_tasks,
|
| 227 |
-
"
|
|
|
|
|
|
|
| 228 |
"sample_offset": args.sample_offset,
|
| 229 |
"sample_stride": args.sample_stride,
|
| 230 |
"future_frames": args.future_frames,
|
|
@@ -246,9 +254,10 @@ def main() -> int:
|
|
| 246 |
for task_id in selected_tasks:
|
| 247 |
spec = TASK_SPECS[task_id]
|
| 248 |
partial_path = args.output_dir / task_id / "predictions.partial.jsonl"
|
| 249 |
-
|
|
|
|
| 250 |
sample = samples[sample_idx]
|
| 251 |
-
future_sample = samples[future_map[sample_idx]]
|
| 252 |
pred_id = prediction_id(task_id, sample)
|
| 253 |
if args.resume and pred_id in partial_by_task[task_id]:
|
| 254 |
continue
|
|
@@ -301,7 +310,7 @@ def main() -> int:
|
|
| 301 |
"timestamp": time.time(),
|
| 302 |
"task_id": task_id,
|
| 303 |
"sample_index": local_pos,
|
| 304 |
-
"num_eval_samples": len(
|
| 305 |
"completed_samples_for_task": len(partial_by_task[task_id]),
|
| 306 |
"sample_id": sample.get("id"),
|
| 307 |
"seconds": round(time.time() - started, 3),
|
|
@@ -310,7 +319,7 @@ def main() -> int:
|
|
| 310 |
|
| 311 |
task_metrics = {}
|
| 312 |
for task_id in selected_tasks:
|
| 313 |
-
rows = [partial_by_task[task_id][prediction_id(task_id, samples[idx])] for idx in
|
| 314 |
task_metrics[task_id] = score_task(task_id, TASK_SPECS[task_id], rows, args.output_dir, args)
|
| 315 |
|
| 316 |
display_name = model_display_name(args)
|
|
|
|
| 31 |
score_task as qwen_score_task,
|
| 32 |
select_eval_indices,
|
| 33 |
select_tasks,
|
| 34 |
+
task_requires_future_sample,
|
| 35 |
task_target_value,
|
| 36 |
time_to_transition_map,
|
| 37 |
write_json,
|
|
|
|
| 213 |
samples = load_jsonl(args.dataset_jsonl)
|
| 214 |
future_map = future_index_map(samples, args.future_frames)
|
| 215 |
transition_targets = time_to_transition_map(samples)
|
| 216 |
+
base_eval_indices = select_eval_indices(samples, args)
|
| 217 |
+
eval_indices_by_task = {
|
| 218 |
+
task_id: [idx for idx in base_eval_indices if (not task_requires_future_sample(task_id) or idx in future_map)]
|
| 219 |
+
for task_id in selected_tasks
|
| 220 |
+
}
|
| 221 |
+
empty_tasks = [task_id for task_id, indices in eval_indices_by_task.items() if not indices]
|
| 222 |
+
if empty_tasks:
|
| 223 |
+
raise ValueError(f"No evaluation samples selected for tasks: {', '.join(empty_tasks)}")
|
| 224 |
|
| 225 |
write_json(args.output_dir / "server_info.json", server_info(args))
|
| 226 |
append_jsonl(
|
|
|
|
| 230 |
"timestamp": time.time(),
|
| 231 |
"run_id": args.run_id,
|
| 232 |
"tasks": selected_tasks,
|
| 233 |
+
"num_base_eval_samples": len(base_eval_indices),
|
| 234 |
+
"num_eval_samples_by_task": {task_id: len(indices) for task_id, indices in eval_indices_by_task.items()},
|
| 235 |
+
"num_eval_samples_with_future": sum(1 for idx in base_eval_indices if idx in future_map),
|
| 236 |
"sample_offset": args.sample_offset,
|
| 237 |
"sample_stride": args.sample_stride,
|
| 238 |
"future_frames": args.future_frames,
|
|
|
|
| 254 |
for task_id in selected_tasks:
|
| 255 |
spec = TASK_SPECS[task_id]
|
| 256 |
partial_path = args.output_dir / task_id / "predictions.partial.jsonl"
|
| 257 |
+
task_eval_indices = eval_indices_by_task[task_id]
|
| 258 |
+
for local_pos, sample_idx in enumerate(task_eval_indices, start=1):
|
| 259 |
sample = samples[sample_idx]
|
| 260 |
+
future_sample = samples[future_map[sample_idx]] if task_requires_future_sample(task_id) else sample
|
| 261 |
pred_id = prediction_id(task_id, sample)
|
| 262 |
if args.resume and pred_id in partial_by_task[task_id]:
|
| 263 |
continue
|
|
|
|
| 310 |
"timestamp": time.time(),
|
| 311 |
"task_id": task_id,
|
| 312 |
"sample_index": local_pos,
|
| 313 |
+
"num_eval_samples": len(task_eval_indices),
|
| 314 |
"completed_samples_for_task": len(partial_by_task[task_id]),
|
| 315 |
"sample_id": sample.get("id"),
|
| 316 |
"seconds": round(time.time() - started, 3),
|
|
|
|
| 319 |
|
| 320 |
task_metrics = {}
|
| 321 |
for task_id in selected_tasks:
|
| 322 |
+
rows = [partial_by_task[task_id][prediction_id(task_id, samples[idx])] for idx in eval_indices_by_task[task_id]]
|
| 323 |
task_metrics[task_id] = score_task(task_id, TASK_SPECS[task_id], rows, args.output_dir, args)
|
| 324 |
|
| 325 |
display_name = model_display_name(args)
|
scripts/omni/eval_qwen3_omni_future_task_probes.py
CHANGED
|
@@ -142,6 +142,13 @@ TASK_SPECS: OrderedDict[str, dict[str, Any]] = OrderedDict(
|
|
| 142 |
),
|
| 143 |
]
|
| 144 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
|
| 146 |
|
| 147 |
SYSTEM_PROMPT = (
|
|
@@ -591,6 +598,10 @@ def task_target_value(
|
|
| 591 |
return task_target(future_sample, spec)
|
| 592 |
|
| 593 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 594 |
def object_set_metrics(rows: list[dict[str, Any]]) -> dict[str, float]:
|
| 595 |
tp = fp = fn = exact = 0
|
| 596 |
for row in rows:
|
|
@@ -736,9 +747,14 @@ def main() -> int:
|
|
| 736 |
samples = load_jsonl(args.dataset_jsonl)
|
| 737 |
future_map = future_index_map(samples, args.future_frames)
|
| 738 |
transition_targets = time_to_transition_map(samples)
|
| 739 |
-
|
| 740 |
-
|
| 741 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 742 |
|
| 743 |
append_jsonl(
|
| 744 |
args.progress_jsonl,
|
|
@@ -747,7 +763,9 @@ def main() -> int:
|
|
| 747 |
"timestamp": time.time(),
|
| 748 |
"run_id": args.run_id,
|
| 749 |
"tasks": selected_tasks,
|
| 750 |
-
"
|
|
|
|
|
|
|
| 751 |
"sample_offset": args.sample_offset,
|
| 752 |
"sample_stride": args.sample_stride,
|
| 753 |
},
|
|
@@ -766,9 +784,10 @@ def main() -> int:
|
|
| 766 |
for task_id in selected_tasks:
|
| 767 |
spec = TASK_SPECS[task_id]
|
| 768 |
partial_path = args.output_dir / task_id / "predictions.partial.jsonl"
|
| 769 |
-
|
|
|
|
| 770 |
sample = samples[sample_idx]
|
| 771 |
-
future_sample = samples[future_map[sample_idx]]
|
| 772 |
pred_id = prediction_id(task_id, sample)
|
| 773 |
if pred_id in partial_by_task[task_id]:
|
| 774 |
continue
|
|
@@ -808,7 +827,7 @@ def main() -> int:
|
|
| 808 |
"timestamp": time.time(),
|
| 809 |
"task_id": task_id,
|
| 810 |
"sample_index": local_pos,
|
| 811 |
-
"num_eval_samples": len(
|
| 812 |
"completed_samples_for_task": len(partial_by_task[task_id]),
|
| 813 |
"sample_id": sample.get("id"),
|
| 814 |
"seconds": round(time.time() - started, 3),
|
|
@@ -817,7 +836,7 @@ def main() -> int:
|
|
| 817 |
|
| 818 |
task_metrics = {}
|
| 819 |
for task_id in selected_tasks:
|
| 820 |
-
rows = [partial_by_task[task_id][prediction_id(task_id, samples[idx])] for idx in
|
| 821 |
task_metrics[task_id] = score_task(task_id, TASK_SPECS[task_id], rows, args.output_dir, args)
|
| 822 |
|
| 823 |
summary = {
|
|
|
|
| 142 |
),
|
| 143 |
]
|
| 144 |
)
|
| 145 |
+
TASKS_REQUIRING_FUTURE_SAMPLE = {
|
| 146 |
+
"temporal_order",
|
| 147 |
+
"misalignment_detection",
|
| 148 |
+
"long_horizon_next_action",
|
| 149 |
+
"next_subtask_forecast",
|
| 150 |
+
"object_set_forecast",
|
| 151 |
+
}
|
| 152 |
|
| 153 |
|
| 154 |
SYSTEM_PROMPT = (
|
|
|
|
| 598 |
return task_target(future_sample, spec)
|
| 599 |
|
| 600 |
|
| 601 |
+
def task_requires_future_sample(task_id: str) -> bool:
|
| 602 |
+
return task_id in TASKS_REQUIRING_FUTURE_SAMPLE
|
| 603 |
+
|
| 604 |
+
|
| 605 |
def object_set_metrics(rows: list[dict[str, Any]]) -> dict[str, float]:
|
| 606 |
tp = fp = fn = exact = 0
|
| 607 |
for row in rows:
|
|
|
|
| 747 |
samples = load_jsonl(args.dataset_jsonl)
|
| 748 |
future_map = future_index_map(samples, args.future_frames)
|
| 749 |
transition_targets = time_to_transition_map(samples)
|
| 750 |
+
base_eval_indices = select_eval_indices(samples, args)
|
| 751 |
+
eval_indices_by_task = {
|
| 752 |
+
task_id: [idx for idx in base_eval_indices if (not task_requires_future_sample(task_id) or idx in future_map)]
|
| 753 |
+
for task_id in selected_tasks
|
| 754 |
+
}
|
| 755 |
+
empty_tasks = [task_id for task_id, indices in eval_indices_by_task.items() if not indices]
|
| 756 |
+
if empty_tasks:
|
| 757 |
+
raise ValueError(f"No evaluation samples selected for tasks: {', '.join(empty_tasks)}")
|
| 758 |
|
| 759 |
append_jsonl(
|
| 760 |
args.progress_jsonl,
|
|
|
|
| 763 |
"timestamp": time.time(),
|
| 764 |
"run_id": args.run_id,
|
| 765 |
"tasks": selected_tasks,
|
| 766 |
+
"num_base_eval_samples": len(base_eval_indices),
|
| 767 |
+
"num_eval_samples_by_task": {task_id: len(indices) for task_id, indices in eval_indices_by_task.items()},
|
| 768 |
+
"num_eval_samples_with_future": sum(1 for idx in base_eval_indices if idx in future_map),
|
| 769 |
"sample_offset": args.sample_offset,
|
| 770 |
"sample_stride": args.sample_stride,
|
| 771 |
},
|
|
|
|
| 784 |
for task_id in selected_tasks:
|
| 785 |
spec = TASK_SPECS[task_id]
|
| 786 |
partial_path = args.output_dir / task_id / "predictions.partial.jsonl"
|
| 787 |
+
task_eval_indices = eval_indices_by_task[task_id]
|
| 788 |
+
for local_pos, sample_idx in enumerate(task_eval_indices, start=1):
|
| 789 |
sample = samples[sample_idx]
|
| 790 |
+
future_sample = samples[future_map[sample_idx]] if task_requires_future_sample(task_id) else sample
|
| 791 |
pred_id = prediction_id(task_id, sample)
|
| 792 |
if pred_id in partial_by_task[task_id]:
|
| 793 |
continue
|
|
|
|
| 827 |
"timestamp": time.time(),
|
| 828 |
"task_id": task_id,
|
| 829 |
"sample_index": local_pos,
|
| 830 |
+
"num_eval_samples": len(task_eval_indices),
|
| 831 |
"completed_samples_for_task": len(partial_by_task[task_id]),
|
| 832 |
"sample_id": sample.get("id"),
|
| 833 |
"seconds": round(time.time() - started, 3),
|
|
|
|
| 836 |
|
| 837 |
task_metrics = {}
|
| 838 |
for task_id in selected_tasks:
|
| 839 |
+
rows = [partial_by_task[task_id][prediction_id(task_id, samples[idx])] for idx in eval_indices_by_task[task_id]]
|
| 840 |
task_metrics[task_id] = score_task(task_id, TASK_SPECS[task_id], rows, args.output_dir, args)
|
| 841 |
|
| 842 |
summary = {
|
scripts/omni/merge_cosmos3_super_future_task_probe_shards.py
CHANGED
|
@@ -56,13 +56,27 @@ def main() -> int:
|
|
| 56 |
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 57 |
task_metrics: dict[str, dict[str, Any]] = {}
|
| 58 |
first_metrics: dict[str, Any] | None = None
|
|
|
|
| 59 |
|
| 60 |
for task_id, spec in TASK_SPECS.items():
|
| 61 |
rows_by_id: dict[str, dict[str, Any]] = {}
|
|
|
|
| 62 |
for shard_dir in args.shard_dir:
|
| 63 |
for row in read_jsonl(shard_dir / task_id / "predictions.jsonl"):
|
| 64 |
key = str(row.get("prediction_id") or f"{task_id}::{row.get('id')}")
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
shard_metrics = read_json(shard_dir / task_id / "metrics.json")
|
| 67 |
if shard_metrics and first_metrics is None:
|
| 68 |
first_metrics = shard_metrics
|
|
@@ -90,6 +104,9 @@ def main() -> int:
|
|
| 90 |
"status": "pass",
|
| 91 |
"run_id": args.run_id,
|
| 92 |
"shard_dirs": [str(path) for path in args.shard_dir],
|
|
|
|
|
|
|
|
|
|
| 93 |
"tasks": {
|
| 94 |
task_id: {
|
| 95 |
"task_number": metrics["task_number"],
|
|
|
|
| 56 |
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 57 |
task_metrics: dict[str, dict[str, Any]] = {}
|
| 58 |
first_metrics: dict[str, Any] | None = None
|
| 59 |
+
duplicate_predictions: list[dict[str, Any]] = []
|
| 60 |
|
| 61 |
for task_id, spec in TASK_SPECS.items():
|
| 62 |
rows_by_id: dict[str, dict[str, Any]] = {}
|
| 63 |
+
row_sources: dict[str, str] = {}
|
| 64 |
for shard_dir in args.shard_dir:
|
| 65 |
for row in read_jsonl(shard_dir / task_id / "predictions.jsonl"):
|
| 66 |
key = str(row.get("prediction_id") or f"{task_id}::{row.get('id')}")
|
| 67 |
+
if key in rows_by_id:
|
| 68 |
+
duplicate_predictions.append(
|
| 69 |
+
{
|
| 70 |
+
"task_id": task_id,
|
| 71 |
+
"prediction_id": key,
|
| 72 |
+
"kept_shard": row_sources.get(key),
|
| 73 |
+
"duplicate_shard": str(shard_dir),
|
| 74 |
+
"conflict": rows_by_id[key] != row,
|
| 75 |
+
}
|
| 76 |
+
)
|
| 77 |
+
continue
|
| 78 |
+
rows_by_id[key] = row
|
| 79 |
+
row_sources[key] = str(shard_dir)
|
| 80 |
shard_metrics = read_json(shard_dir / task_id / "metrics.json")
|
| 81 |
if shard_metrics and first_metrics is None:
|
| 82 |
first_metrics = shard_metrics
|
|
|
|
| 104 |
"status": "pass",
|
| 105 |
"run_id": args.run_id,
|
| 106 |
"shard_dirs": [str(path) for path in args.shard_dir],
|
| 107 |
+
"duplicate_prediction_count": len(duplicate_predictions),
|
| 108 |
+
"duplicate_prediction_conflict_count": sum(1 for row in duplicate_predictions if row["conflict"]),
|
| 109 |
+
"duplicate_predictions": duplicate_predictions[:50],
|
| 110 |
"tasks": {
|
| 111 |
task_id: {
|
| 112 |
"task_number": metrics["task_number"],
|
scripts/omni/merge_qwen3_omni_future_task_probe_shards.py
CHANGED
|
@@ -54,13 +54,27 @@ def main() -> int:
|
|
| 54 |
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 55 |
task_metrics: dict[str, dict[str, Any]] = {}
|
| 56 |
first_metrics: dict[str, Any] | None = None
|
|
|
|
| 57 |
|
| 58 |
for task_id, spec in TASK_SPECS.items():
|
| 59 |
rows_by_id: dict[str, dict[str, Any]] = {}
|
|
|
|
| 60 |
for shard_dir in args.shard_dir:
|
| 61 |
for row in read_jsonl(shard_dir / task_id / "predictions.jsonl"):
|
| 62 |
key = str(row.get("prediction_id") or f"{task_id}::{row.get('id')}")
|
| 63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
shard_metrics = read_json(shard_dir / task_id / "metrics.json")
|
| 65 |
if shard_metrics and first_metrics is None:
|
| 66 |
first_metrics = shard_metrics
|
|
@@ -82,6 +96,9 @@ def main() -> int:
|
|
| 82 |
"status": "pass",
|
| 83 |
"run_id": args.run_id,
|
| 84 |
"shard_dirs": [str(path) for path in args.shard_dir],
|
|
|
|
|
|
|
|
|
|
| 85 |
"tasks": {
|
| 86 |
task_id: {
|
| 87 |
"task_number": metrics["task_number"],
|
|
|
|
| 54 |
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 55 |
task_metrics: dict[str, dict[str, Any]] = {}
|
| 56 |
first_metrics: dict[str, Any] | None = None
|
| 57 |
+
duplicate_predictions: list[dict[str, Any]] = []
|
| 58 |
|
| 59 |
for task_id, spec in TASK_SPECS.items():
|
| 60 |
rows_by_id: dict[str, dict[str, Any]] = {}
|
| 61 |
+
row_sources: dict[str, str] = {}
|
| 62 |
for shard_dir in args.shard_dir:
|
| 63 |
for row in read_jsonl(shard_dir / task_id / "predictions.jsonl"):
|
| 64 |
key = str(row.get("prediction_id") or f"{task_id}::{row.get('id')}")
|
| 65 |
+
if key in rows_by_id:
|
| 66 |
+
duplicate_predictions.append(
|
| 67 |
+
{
|
| 68 |
+
"task_id": task_id,
|
| 69 |
+
"prediction_id": key,
|
| 70 |
+
"kept_shard": row_sources.get(key),
|
| 71 |
+
"duplicate_shard": str(shard_dir),
|
| 72 |
+
"conflict": rows_by_id[key] != row,
|
| 73 |
+
}
|
| 74 |
+
)
|
| 75 |
+
continue
|
| 76 |
+
rows_by_id[key] = row
|
| 77 |
+
row_sources[key] = str(shard_dir)
|
| 78 |
shard_metrics = read_json(shard_dir / task_id / "metrics.json")
|
| 79 |
if shard_metrics and first_metrics is None:
|
| 80 |
first_metrics = shard_metrics
|
|
|
|
| 96 |
"status": "pass",
|
| 97 |
"run_id": args.run_id,
|
| 98 |
"shard_dirs": [str(path) for path in args.shard_dir],
|
| 99 |
+
"duplicate_prediction_count": len(duplicate_predictions),
|
| 100 |
+
"duplicate_prediction_conflict_count": sum(1 for row in duplicate_predictions if row["conflict"]),
|
| 101 |
+
"duplicate_predictions": duplicate_predictions[:50],
|
| 102 |
"tasks": {
|
| 103 |
task_id: {
|
| 104 |
"task_number": metrics["task_number"],
|
scripts/omni/merge_qwen3_omni_retrieval_task_probe_shards.py
CHANGED
|
@@ -55,13 +55,27 @@ def main() -> int:
|
|
| 55 |
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 56 |
task_metrics: dict[str, dict[str, Any]] = {}
|
| 57 |
first_metrics: dict[str, Any] | None = None
|
|
|
|
| 58 |
|
| 59 |
for task_id, spec in TASK_SPECS.items():
|
| 60 |
rows_by_id: dict[str, dict[str, Any]] = {}
|
|
|
|
| 61 |
for shard_dir in args.shard_dir:
|
| 62 |
for row in read_jsonl(shard_dir / task_id / "predictions.jsonl"):
|
| 63 |
key = str(row.get("prediction_id") or f"{task_id}::{row.get('id')}")
|
| 64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
shard_metrics = read_json(shard_dir / task_id / "metrics.json")
|
| 66 |
if shard_metrics and first_metrics is None:
|
| 67 |
first_metrics = shard_metrics
|
|
@@ -86,6 +100,9 @@ def main() -> int:
|
|
| 86 |
"status": "pass",
|
| 87 |
"run_id": args.run_id,
|
| 88 |
"shard_dirs": [str(path) for path in args.shard_dir],
|
|
|
|
|
|
|
|
|
|
| 89 |
"tasks": {
|
| 90 |
task_id: {
|
| 91 |
"task_number": metrics["task_number"],
|
|
|
|
| 55 |
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 56 |
task_metrics: dict[str, dict[str, Any]] = {}
|
| 57 |
first_metrics: dict[str, Any] | None = None
|
| 58 |
+
duplicate_predictions: list[dict[str, Any]] = []
|
| 59 |
|
| 60 |
for task_id, spec in TASK_SPECS.items():
|
| 61 |
rows_by_id: dict[str, dict[str, Any]] = {}
|
| 62 |
+
row_sources: dict[str, str] = {}
|
| 63 |
for shard_dir in args.shard_dir:
|
| 64 |
for row in read_jsonl(shard_dir / task_id / "predictions.jsonl"):
|
| 65 |
key = str(row.get("prediction_id") or f"{task_id}::{row.get('id')}")
|
| 66 |
+
if key in rows_by_id:
|
| 67 |
+
duplicate_predictions.append(
|
| 68 |
+
{
|
| 69 |
+
"task_id": task_id,
|
| 70 |
+
"prediction_id": key,
|
| 71 |
+
"kept_shard": row_sources.get(key),
|
| 72 |
+
"duplicate_shard": str(shard_dir),
|
| 73 |
+
"conflict": rows_by_id[key] != row,
|
| 74 |
+
}
|
| 75 |
+
)
|
| 76 |
+
continue
|
| 77 |
+
rows_by_id[key] = row
|
| 78 |
+
row_sources[key] = str(shard_dir)
|
| 79 |
shard_metrics = read_json(shard_dir / task_id / "metrics.json")
|
| 80 |
if shard_metrics and first_metrics is None:
|
| 81 |
first_metrics = shard_metrics
|
|
|
|
| 100 |
"status": "pass",
|
| 101 |
"run_id": args.run_id,
|
| 102 |
"shard_dirs": [str(path) for path in args.shard_dir],
|
| 103 |
+
"duplicate_prediction_count": len(duplicate_predictions),
|
| 104 |
+
"duplicate_prediction_conflict_count": sum(1 for row in duplicate_predictions if row["conflict"]),
|
| 105 |
+
"duplicate_predictions": duplicate_predictions[:50],
|
| 106 |
"tasks": {
|
| 107 |
task_id: {
|
| 108 |
"task_number": metrics["task_number"],
|
scripts/omni/run_128_task_baselines.py
CHANGED
|
@@ -133,7 +133,7 @@ def parse_args() -> argparse.Namespace:
|
|
| 133 |
default=256,
|
| 134 |
help="Use centroid classification instead of dense softmax when the train label space is larger than this.",
|
| 135 |
)
|
| 136 |
-
parser.add_argument("--include-neural", action=
|
| 137 |
parser.add_argument("--neural-epochs", type=int, default=35)
|
| 138 |
parser.add_argument("--neural-hidden-dim", type=int, default=128)
|
| 139 |
parser.add_argument("--neural-batch-size", type=int, default=256)
|
|
@@ -335,8 +335,6 @@ def row_text_features(row: dict[str, Any], episode: dict[str, Any] | None) -> st
|
|
| 335 |
parts.extend([
|
| 336 |
"main_task:",
|
| 337 |
norm(episode.get("main_task")),
|
| 338 |
-
"episode_split:",
|
| 339 |
-
norm(episode.get("split")),
|
| 340 |
])
|
| 341 |
media = row.get("media") or {}
|
| 342 |
parts.extend([
|
|
|
|
| 133 |
default=256,
|
| 134 |
help="Use centroid classification instead of dense softmax when the train label space is larger than this.",
|
| 135 |
)
|
| 136 |
+
parser.add_argument("--include-neural", action=argparse.BooleanOptionalAction, default=True)
|
| 137 |
parser.add_argument("--neural-epochs", type=int, default=35)
|
| 138 |
parser.add_argument("--neural-hidden-dim", type=int, default=128)
|
| 139 |
parser.add_argument("--neural-batch-size", type=int, default=256)
|
|
|
|
| 335 |
parts.extend([
|
| 336 |
"main_task:",
|
| 337 |
norm(episode.get("main_task")),
|
|
|
|
|
|
|
| 338 |
])
|
| 339 |
media = row.get("media") or {}
|
| 340 |
parts.extend([
|
scripts/omni/score_model_output_probes.py
CHANGED
|
@@ -130,6 +130,7 @@ def records_for_method(matrix: dict, method_id: str) -> list[dict]:
|
|
| 130 |
def build_readiness(workspace: Path, matrix: dict, overrides: dict[str, dict[str, list[str]]]) -> dict:
|
| 131 |
methods = {}
|
| 132 |
source_hints = DEFAULT_PREDICTION_HINTS.copy()
|
|
|
|
| 133 |
for method, split_map in overrides.items():
|
| 134 |
target = source_hints.setdefault(method, {name: [] for name in REQUIRED_SPLITS})
|
| 135 |
for split, paths in split_map.items():
|
|
@@ -144,6 +145,16 @@ def build_readiness(workspace: Path, matrix: dict, overrides: dict[str, dict[str
|
|
| 144 |
scored = [row for row in method_records if row.get("scored")]
|
| 145 |
missing = [row for row in method_records if not row.get("scored")]
|
| 146 |
ready_for_all_task_probe = all(split_status[split]["exists"] for split in REQUIRED_SPLITS)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
methods[method_id] = {
|
| 148 |
"label": next((series["label"] for series in matrix["series"] if series["id"] == method_id), method_id),
|
| 149 |
"matrix_scored_task_count": len(scored),
|
|
@@ -151,27 +162,32 @@ def build_readiness(workspace: Path, matrix: dict, overrides: dict[str, dict[str
|
|
| 151 |
"required_splits": list(REQUIRED_SPLITS),
|
| 152 |
"split_status": split_status,
|
| 153 |
"ready_for_all_task_probe": ready_for_all_task_probe,
|
| 154 |
-
"status":
|
| 155 |
"scoreless_task_ids": [row["task_id"] for row in missing],
|
| 156 |
-
"next_step":
|
| 157 |
-
"Run the all-task probe scorer against train/validation/test outputs."
|
| 158 |
-
if ready_for_all_task_probe
|
| 159 |
-
else "Collect or generate train, validation, and test prediction JSONL files first."
|
| 160 |
-
),
|
| 161 |
}
|
| 162 |
|
| 163 |
ready_methods = [method for method, item in methods.items() if item["ready_for_all_task_probe"]]
|
|
|
|
| 164 |
return {
|
| 165 |
"title": "Model Output Probe Readiness",
|
| 166 |
"status": "pass",
|
|
|
|
| 167 |
"generated_at_utc": datetime.now(timezone.utc).isoformat(timespec="seconds"),
|
| 168 |
"source_matrix": "docs/data/task_method_20_result_matrix.json",
|
| 169 |
"scope": (
|
| 170 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
"to all 20 task contracts. It does not create or infer numeric scores."
|
| 172 |
),
|
| 173 |
"score_policy": (
|
| 174 |
-
"
|
|
|
|
|
|
|
|
|
|
| 175 |
"emits the task target and the metric is computed against held-out labels."
|
| 176 |
),
|
| 177 |
"ready_method_count": len(ready_methods),
|
|
@@ -205,13 +221,21 @@ def write_report(output_dir: Path, payload: dict) -> None:
|
|
| 205 |
+ " |"
|
| 206 |
)
|
| 207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 208 |
report = f"""# Model Output Probe Readiness
|
| 209 |
|
| 210 |
Generated: `{payload['generated_at_utc']}`
|
| 211 |
|
| 212 |
-
|
| 213 |
-
needed to extend them to every 20-task contract. It is readiness evidence only;
|
| 214 |
-
it does not assign new task scores.
|
| 215 |
|
| 216 |
| Method | ID | Matrix scores | Status | Split files | Next step |
|
| 217 |
| --- | --- | --- | --- | --- | --- |
|
|
|
|
| 130 |
def build_readiness(workspace: Path, matrix: dict, overrides: dict[str, dict[str, list[str]]]) -> dict:
|
| 131 |
methods = {}
|
| 132 |
source_hints = DEFAULT_PREDICTION_HINTS.copy()
|
| 133 |
+
matrix_complete = matrix.get("scored_method_task_count") == matrix.get("method_task_record_count")
|
| 134 |
for method, split_map in overrides.items():
|
| 135 |
target = source_hints.setdefault(method, {name: [] for name in REQUIRED_SPLITS})
|
| 136 |
for split, paths in split_map.items():
|
|
|
|
| 145 |
scored = [row for row in method_records if row.get("scored")]
|
| 146 |
missing = [row for row in method_records if not row.get("scored")]
|
| 147 |
ready_for_all_task_probe = all(split_status[split]["exists"] for split in REQUIRED_SPLITS)
|
| 148 |
+
if matrix_complete and not missing:
|
| 149 |
+
method_status = "superseded_by_completed_matrix"
|
| 150 |
+
next_step = "No gap-filling action is required for the current 20-task matrix; use this script only for future replacement artifacts."
|
| 151 |
+
else:
|
| 152 |
+
method_status = "ready" if ready_for_all_task_probe else "missing_required_model_outputs"
|
| 153 |
+
next_step = (
|
| 154 |
+
"Run the all-task probe scorer against train/validation/test outputs."
|
| 155 |
+
if ready_for_all_task_probe
|
| 156 |
+
else "Collect or generate train, validation, and test prediction JSONL files first."
|
| 157 |
+
)
|
| 158 |
methods[method_id] = {
|
| 159 |
"label": next((series["label"] for series in matrix["series"] if series["id"] == method_id), method_id),
|
| 160 |
"matrix_scored_task_count": len(scored),
|
|
|
|
| 162 |
"required_splits": list(REQUIRED_SPLITS),
|
| 163 |
"split_status": split_status,
|
| 164 |
"ready_for_all_task_probe": ready_for_all_task_probe,
|
| 165 |
+
"status": method_status,
|
| 166 |
"scoreless_task_ids": [row["task_id"] for row in missing],
|
| 167 |
+
"next_step": next_step,
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
}
|
| 169 |
|
| 170 |
ready_methods = [method for method, item in methods.items() if item["ready_for_all_task_probe"]]
|
| 171 |
+
completion_state = "completed_matrix" if matrix_complete else "readiness_check"
|
| 172 |
return {
|
| 173 |
"title": "Model Output Probe Readiness",
|
| 174 |
"status": "pass",
|
| 175 |
+
"completion_state": completion_state,
|
| 176 |
"generated_at_utc": datetime.now(timezone.utc).isoformat(timespec="seconds"),
|
| 177 |
"source_matrix": "docs/data/task_method_20_result_matrix.json",
|
| 178 |
"scope": (
|
| 179 |
+
"The current matrix is already complete. This artifact is retained as a "
|
| 180 |
+
"guardrail for future replacement model-output probes and does not create "
|
| 181 |
+
"or infer numeric scores."
|
| 182 |
+
if matrix_complete
|
| 183 |
+
else "This artifact checks readiness for extending verified model branches "
|
| 184 |
"to all 20 task contracts. It does not create or infer numeric scores."
|
| 185 |
),
|
| 186 |
"score_policy": (
|
| 187 |
+
"The current matrix has zero scoreless cells. Future replacement scores "
|
| 188 |
+
"must still come from task-specific held-out artifacts."
|
| 189 |
+
if matrix_complete
|
| 190 |
+
else "A scoreless Qwen3/Cosmos cell can become numeric only after the branch "
|
| 191 |
"emits the task target and the metric is computed against held-out labels."
|
| 192 |
),
|
| 193 |
"ready_method_count": len(ready_methods),
|
|
|
|
| 221 |
+ " |"
|
| 222 |
)
|
| 223 |
|
| 224 |
+
intro = (
|
| 225 |
+
"The 20-task matrix is already complete, so this readiness report is "
|
| 226 |
+
"superseded for the current release. It remains a guardrail for future "
|
| 227 |
+
"replacement model-output probes and does not assign new task scores."
|
| 228 |
+
if payload.get("completion_state") == "completed_matrix"
|
| 229 |
+
else "This report checks whether verified model branches have the prediction files\n"
|
| 230 |
+
"needed to extend them to every 20-task contract. It is readiness evidence only;\n"
|
| 231 |
+
"it does not assign new task scores."
|
| 232 |
+
)
|
| 233 |
+
|
| 234 |
report = f"""# Model Output Probe Readiness
|
| 235 |
|
| 236 |
Generated: `{payload['generated_at_utc']}`
|
| 237 |
|
| 238 |
+
{intro}
|
|
|
|
|
|
|
| 239 |
|
| 240 |
| Method | ID | Matrix scores | Status | Split files | Next step |
|
| 241 |
| --- | --- | --- | --- | --- | --- |
|
scripts/omni/train_cosmos3_super_forward_dynamics_lora.py
CHANGED
|
@@ -884,7 +884,8 @@ def main() -> int:
|
|
| 884 |
if accelerator.is_main_process:
|
| 885 |
write_json(output_dir / "training_metadata.json", payload)
|
| 886 |
write_report(output_dir, payload)
|
| 887 |
-
|
|
|
|
| 888 |
|
| 889 |
if accelerator.is_main_process:
|
| 890 |
print(json.dumps({"status": status, "output_dir": str(output_dir), "adapter_dir": str(adapter_dir) if adapter_dir else None}, indent=2))
|
|
|
|
| 884 |
if accelerator.is_main_process:
|
| 885 |
write_json(output_dir / "training_metadata.json", payload)
|
| 886 |
write_report(output_dir, payload)
|
| 887 |
+
final_event = "complete" if status in {"complete", "dry_run_complete"} else "finalized_failed"
|
| 888 |
+
append_jsonl(progress_path, {"event": final_event, "timestamp": time.time(), "status": status})
|
| 889 |
|
| 890 |
if accelerator.is_main_process:
|
| 891 |
print(json.dumps({"status": status, "output_dir": str(output_dir), "adapter_dir": str(adapter_dir) if adapter_dir else None}, indent=2))
|
scripts/sync_hf_publish_mirrors.py
CHANGED
|
@@ -56,7 +56,8 @@ links to tasks 13-20. The unified radar chart is published as
|
|
| 56 |
`docs/data/unified_task_model_radar.json`; the 9-method by 20-task completion
|
| 57 |
matrix is complete at `180/180` scored method-task records and is published in
|
| 58 |
`docs/data/task_method_20_result_matrix.json`, with the explicit audit in
|
| 59 |
-
`docs/data/task_method_20_gap_audit.json`
|
|
|
|
| 60 |
the one-episode baselines and selected 128-episode methods are published as
|
| 61 |
`docs/assets/charts/single_episode_task_model_radar.svg` and
|
| 62 |
`docs/assets/charts/episode128_task_model_radar.svg`.
|
|
@@ -219,7 +220,8 @@ def ensure_tier2_card_links(hf_root: Path, *, dry_run: bool) -> list[str]:
|
|
| 219 |
"20-task completion matrix is complete at `180/180` scored\n"
|
| 220 |
"method-task records and is published in\n"
|
| 221 |
"`docs/data/task_method_20_result_matrix.json`, with the explicit\n"
|
| 222 |
-
"audit in `docs/data/task_method_20_gap_audit.json`
|
|
|
|
| 223 |
"`docs/assets/charts/single_episode_task_model_radar.svg` and\n"
|
| 224 |
"`docs/assets/charts/episode128_task_model_radar.svg`.\n",
|
| 225 |
)
|
|
@@ -232,7 +234,8 @@ def ensure_tier2_card_links(hf_root: Path, *, dry_run: bool) -> list[str]:
|
|
| 232 |
"`docs/data/unified_task_model_radar.json`; the 9-method by 20-task\n"
|
| 233 |
"completion matrix is complete at `180/180` scored method-task records\n"
|
| 234 |
"and is published in `docs/data/task_method_20_result_matrix.json`,\n"
|
| 235 |
-
"with the explicit audit in `docs/data/task_method_20_gap_audit.json`
|
|
|
|
| 236 |
)
|
| 237 |
if "completion matrix is in `docs/data/task_method_20_result_matrix.json`" in text:
|
| 238 |
text = text.replace(
|
|
@@ -240,7 +243,8 @@ def ensure_tier2_card_links(hf_root: Path, *, dry_run: bool) -> list[str]:
|
|
| 240 |
"with the explicit\ngap audit in `docs/data/task_method_20_gap_audit.json`.",
|
| 241 |
"completion matrix is complete at `180/180` scored method-task records "
|
| 242 |
"and is published in `docs/data/task_method_20_result_matrix.json`, "
|
| 243 |
-
"with the explicit\naudit in `docs/data/task_method_20_gap_audit.json`
|
|
|
|
| 244 |
)
|
| 245 |
if (
|
| 246 |
"docs/data/task_method_20_result_matrix.json" in text
|
|
@@ -251,6 +255,15 @@ def ensure_tier2_card_links(hf_root: Path, *, dry_run: bool) -> list[str]:
|
|
| 251 |
"`docs/data/task_method_20_result_matrix.json`, with the explicit\n"
|
| 252 |
"gap audit in `docs/data/task_method_20_gap_audit.json`.",
|
| 253 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 254 |
if (
|
| 255 |
"docs/data/task_method_20_result_matrix.json" in text
|
| 256 |
and "docs/assets/charts/single_episode_task_model_radar.svg" not in text
|
|
|
|
| 56 |
`docs/data/unified_task_model_radar.json`; the 9-method by 20-task completion
|
| 57 |
matrix is complete at `180/180` scored method-task records and is published in
|
| 58 |
`docs/data/task_method_20_result_matrix.json`, with the explicit audit in
|
| 59 |
+
`docs/data/task_method_20_gap_audit.json` and source-value audit in
|
| 60 |
+
`docs/data/task_method_20_source_audit.json`. Split radars for
|
| 61 |
the one-episode baselines and selected 128-episode methods are published as
|
| 62 |
`docs/assets/charts/single_episode_task_model_radar.svg` and
|
| 63 |
`docs/assets/charts/episode128_task_model_radar.svg`.
|
|
|
|
| 220 |
"20-task completion matrix is complete at `180/180` scored\n"
|
| 221 |
"method-task records and is published in\n"
|
| 222 |
"`docs/data/task_method_20_result_matrix.json`, with the explicit\n"
|
| 223 |
+
"audit in `docs/data/task_method_20_gap_audit.json` and source-value\n"
|
| 224 |
+
"audit in `docs/data/task_method_20_source_audit.json`. Split radars are in\n"
|
| 225 |
"`docs/assets/charts/single_episode_task_model_radar.svg` and\n"
|
| 226 |
"`docs/assets/charts/episode128_task_model_radar.svg`.\n",
|
| 227 |
)
|
|
|
|
| 234 |
"`docs/data/unified_task_model_radar.json`; the 9-method by 20-task\n"
|
| 235 |
"completion matrix is complete at `180/180` scored method-task records\n"
|
| 236 |
"and is published in `docs/data/task_method_20_result_matrix.json`,\n"
|
| 237 |
+
"with the explicit audit in `docs/data/task_method_20_gap_audit.json`\n"
|
| 238 |
+
"and source-value audit in `docs/data/task_method_20_source_audit.json`.",
|
| 239 |
)
|
| 240 |
if "completion matrix is in `docs/data/task_method_20_result_matrix.json`" in text:
|
| 241 |
text = text.replace(
|
|
|
|
| 243 |
"with the explicit\ngap audit in `docs/data/task_method_20_gap_audit.json`.",
|
| 244 |
"completion matrix is complete at `180/180` scored method-task records "
|
| 245 |
"and is published in `docs/data/task_method_20_result_matrix.json`, "
|
| 246 |
+
"with the explicit\naudit in `docs/data/task_method_20_gap_audit.json` "
|
| 247 |
+
"and source-value audit in `docs/data/task_method_20_source_audit.json`.",
|
| 248 |
)
|
| 249 |
if (
|
| 250 |
"docs/data/task_method_20_result_matrix.json" in text
|
|
|
|
| 255 |
"`docs/data/task_method_20_result_matrix.json`, with the explicit\n"
|
| 256 |
"gap audit in `docs/data/task_method_20_gap_audit.json`.",
|
| 257 |
)
|
| 258 |
+
if (
|
| 259 |
+
"docs/data/task_method_20_gap_audit.json" in text
|
| 260 |
+
and "docs/data/task_method_20_source_audit.json" not in text
|
| 261 |
+
):
|
| 262 |
+
text = text.replace(
|
| 263 |
+
"`docs/data/task_method_20_gap_audit.json`.",
|
| 264 |
+
"`docs/data/task_method_20_gap_audit.json` and source-value audit in\n"
|
| 265 |
+
"`docs/data/task_method_20_source_audit.json`.",
|
| 266 |
+
)
|
| 267 |
if (
|
| 268 |
"docs/data/task_method_20_result_matrix.json" in text
|
| 269 |
and "docs/assets/charts/single_episode_task_model_radar.svg" not in text
|
scripts/validate_mirror_parity.py
CHANGED
|
@@ -85,6 +85,7 @@ DATA_FILES = [
|
|
| 85 |
"task_walkthroughs.json",
|
| 86 |
"task_method_20_result_matrix.json",
|
| 87 |
"task_method_20_gap_audit.json",
|
|
|
|
| 88 |
"tier2_task_suite.json",
|
| 89 |
"unified_task_model_radar.json",
|
| 90 |
"website_integrity.json",
|
|
@@ -196,6 +197,7 @@ SCRIPT_FILES = [
|
|
| 196 |
"verify_live_publication.py",
|
| 197 |
"validate_mirror_parity.py",
|
| 198 |
"validate_publication_package.py",
|
|
|
|
| 199 |
"validate_scope_claims.py",
|
| 200 |
"validate_source_alignment.py",
|
| 201 |
"validate_task_surface.py",
|
|
|
|
| 85 |
"task_walkthroughs.json",
|
| 86 |
"task_method_20_result_matrix.json",
|
| 87 |
"task_method_20_gap_audit.json",
|
| 88 |
+
"task_method_20_source_audit.json",
|
| 89 |
"tier2_task_suite.json",
|
| 90 |
"unified_task_model_radar.json",
|
| 91 |
"website_integrity.json",
|
|
|
|
| 197 |
"verify_live_publication.py",
|
| 198 |
"validate_mirror_parity.py",
|
| 199 |
"validate_publication_package.py",
|
| 200 |
+
"validate_task_method_matrix_sources.py",
|
| 201 |
"validate_scope_claims.py",
|
| 202 |
"validate_source_alignment.py",
|
| 203 |
"validate_task_surface.py",
|
scripts/validate_publication_package.py
CHANGED
|
@@ -276,6 +276,7 @@ def required_assets(root: Path) -> dict[str, bool]:
|
|
| 276 |
"RENDERED_SITE_CHECK.md",
|
| 277 |
"EVALUATION_PROTOCOL.md",
|
| 278 |
"TASK_SUITE_20.md",
|
|
|
|
| 279 |
"XPERIENCE10M_128_EPISODE_FEATURE_INDEX.md",
|
| 280 |
"FIGURE_INDEX.md",
|
| 281 |
"SOURCE_ALIGNMENT_AUDIT.md",
|
|
@@ -323,6 +324,7 @@ def required_assets(root: Path) -> dict[str, bool]:
|
|
| 323 |
"docs/data/episode128_task_model_radar.json",
|
| 324 |
"docs/data/task_method_20_result_matrix.json",
|
| 325 |
"docs/data/task_method_20_gap_audit.json",
|
|
|
|
| 326 |
"docs/data/task_suite_enhancement_128.json",
|
| 327 |
"docs/data/xperience10m_128_episode_feature_index.json",
|
| 328 |
"docs/assets/modalities/video.jpg",
|
|
@@ -367,6 +369,7 @@ def required_assets(root: Path) -> dict[str, bool]:
|
|
| 367 |
"scripts/build_unified_task_suite.py",
|
| 368 |
"scripts/build_unified_task_model_radar.py",
|
| 369 |
"scripts/build_task_method_20_gap_audit.py",
|
|
|
|
| 370 |
"scripts/build_figure_index.py",
|
| 371 |
"scripts/build_quality_gates.py",
|
| 372 |
"scripts/build_public_surface_qa.py",
|
|
|
|
| 276 |
"RENDERED_SITE_CHECK.md",
|
| 277 |
"EVALUATION_PROTOCOL.md",
|
| 278 |
"TASK_SUITE_20.md",
|
| 279 |
+
"TASK_METHOD_20_SOURCE_AUDIT.md",
|
| 280 |
"XPERIENCE10M_128_EPISODE_FEATURE_INDEX.md",
|
| 281 |
"FIGURE_INDEX.md",
|
| 282 |
"SOURCE_ALIGNMENT_AUDIT.md",
|
|
|
|
| 324 |
"docs/data/episode128_task_model_radar.json",
|
| 325 |
"docs/data/task_method_20_result_matrix.json",
|
| 326 |
"docs/data/task_method_20_gap_audit.json",
|
| 327 |
+
"docs/data/task_method_20_source_audit.json",
|
| 328 |
"docs/data/task_suite_enhancement_128.json",
|
| 329 |
"docs/data/xperience10m_128_episode_feature_index.json",
|
| 330 |
"docs/assets/modalities/video.jpg",
|
|
|
|
| 369 |
"scripts/build_unified_task_suite.py",
|
| 370 |
"scripts/build_unified_task_model_radar.py",
|
| 371 |
"scripts/build_task_method_20_gap_audit.py",
|
| 372 |
+
"scripts/validate_task_method_matrix_sources.py",
|
| 373 |
"scripts/build_figure_index.py",
|
| 374 |
"scripts/build_quality_gates.py",
|
| 375 |
"scripts/build_public_surface_qa.py",
|
scripts/validate_task_method_matrix_sources.py
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Validate that scored matrix rows agree with their JSON metric sources."""
|
| 3 |
+
|
| 4 |
+
from __future__ import annotations
|
| 5 |
+
|
| 6 |
+
import argparse
|
| 7 |
+
import json
|
| 8 |
+
import math
|
| 9 |
+
from datetime import datetime, timezone
|
| 10 |
+
from pathlib import Path
|
| 11 |
+
from typing import Any
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 15 |
+
DEFAULT_MATRIX = ROOT / "docs/data/task_method_20_result_matrix.json"
|
| 16 |
+
DEFAULT_OUTPUT_JSON = ROOT / "docs/data/task_method_20_source_audit.json"
|
| 17 |
+
DEFAULT_OUTPUT_MD = ROOT / "TASK_METHOD_20_SOURCE_AUDIT.md"
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def parse_args() -> argparse.Namespace:
|
| 21 |
+
parser = argparse.ArgumentParser(description=__doc__)
|
| 22 |
+
parser.add_argument("--matrix-json", type=Path, default=DEFAULT_MATRIX)
|
| 23 |
+
parser.add_argument("--output", type=Path, default=DEFAULT_OUTPUT_JSON)
|
| 24 |
+
parser.add_argument("--markdown-output", type=Path, default=DEFAULT_OUTPUT_MD)
|
| 25 |
+
parser.add_argument("--relative-tolerance", type=float, default=1e-9)
|
| 26 |
+
parser.add_argument("--absolute-tolerance", type=float, default=1e-12)
|
| 27 |
+
return parser.parse_args()
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def read_json(path: Path) -> Any:
|
| 31 |
+
return json.loads(path.read_text(encoding="utf-8"))
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def rel(path: Path) -> str:
|
| 35 |
+
try:
|
| 36 |
+
return path.relative_to(ROOT).as_posix()
|
| 37 |
+
except ValueError:
|
| 38 |
+
return path.as_posix()
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
def resolve_source(source: str) -> Path:
|
| 42 |
+
path = Path(source)
|
| 43 |
+
return path if path.is_absolute() else ROOT / path
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def numeric(value: Any) -> float | None:
|
| 47 |
+
if isinstance(value, bool) or not isinstance(value, (int, float)):
|
| 48 |
+
return None
|
| 49 |
+
return float(value)
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def check_record(record: dict[str, Any], args: argparse.Namespace) -> tuple[str, dict[str, Any] | None]:
|
| 53 |
+
source = record.get("source")
|
| 54 |
+
metric_key = record.get("metric_key")
|
| 55 |
+
raw = numeric(record.get("raw"))
|
| 56 |
+
base = {
|
| 57 |
+
"task_id": record.get("task_id"),
|
| 58 |
+
"task_number": record.get("task_number"),
|
| 59 |
+
"series_id": record.get("series_id"),
|
| 60 |
+
"method": record.get("method"),
|
| 61 |
+
"metric_key": metric_key,
|
| 62 |
+
"source": source,
|
| 63 |
+
"raw": record.get("raw"),
|
| 64 |
+
}
|
| 65 |
+
if not record.get("scored"):
|
| 66 |
+
return "unscored", None
|
| 67 |
+
if raw is None or not metric_key or not source:
|
| 68 |
+
return "skipped_non_numeric_or_missing_source", base
|
| 69 |
+
|
| 70 |
+
source_path = resolve_source(str(source))
|
| 71 |
+
if not source_path.exists():
|
| 72 |
+
return "missing_source", {**base, "resolved_source": rel(source_path)}
|
| 73 |
+
if source_path.suffix.lower() != ".json":
|
| 74 |
+
return "skipped_non_json_source", base
|
| 75 |
+
|
| 76 |
+
try:
|
| 77 |
+
payload = read_json(source_path)
|
| 78 |
+
except json.JSONDecodeError as exc:
|
| 79 |
+
return "invalid_json_source", {**base, "resolved_source": rel(source_path), "error": str(exc)}
|
| 80 |
+
source_key = str(metric_key)
|
| 81 |
+
source_value = numeric(payload.get(source_key)) if isinstance(payload, dict) else None
|
| 82 |
+
if source_value is None and isinstance(payload, dict):
|
| 83 |
+
primary_metric = payload.get("primary_metric")
|
| 84 |
+
primary_score = numeric(payload.get("primary_score"))
|
| 85 |
+
if primary_score is not None and (primary_metric in {metric_key, None} or str(primary_metric or "") == str(metric_key)):
|
| 86 |
+
source_key = "primary_score"
|
| 87 |
+
source_value = primary_score
|
| 88 |
+
elif primary_score is not None and "primary_score" in payload:
|
| 89 |
+
source_key = "primary_score"
|
| 90 |
+
source_value = primary_score
|
| 91 |
+
if source_value is None:
|
| 92 |
+
return "missing_metric_key", {
|
| 93 |
+
**base,
|
| 94 |
+
"resolved_source": rel(source_path),
|
| 95 |
+
"available_numeric_keys": sorted(
|
| 96 |
+
key for key, value in payload.items() if numeric(value) is not None
|
| 97 |
+
)
|
| 98 |
+
if isinstance(payload, dict)
|
| 99 |
+
else [],
|
| 100 |
+
}
|
| 101 |
+
if not math.isclose(raw, source_value, rel_tol=args.relative_tolerance, abs_tol=args.absolute_tolerance):
|
| 102 |
+
return "value_mismatch", {
|
| 103 |
+
**base,
|
| 104 |
+
"resolved_source": rel(source_path),
|
| 105 |
+
"source_value": source_value,
|
| 106 |
+
"delta": raw - source_value,
|
| 107 |
+
}
|
| 108 |
+
return "checked", {**base, "resolved_source": rel(source_path), "source_key": source_key, "source_value": source_value}
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
def build_report(args: argparse.Namespace) -> dict[str, Any]:
|
| 112 |
+
matrix = read_json(args.matrix_json)
|
| 113 |
+
records = matrix.get("records", [])
|
| 114 |
+
checked: list[dict[str, Any]] = []
|
| 115 |
+
skipped: list[dict[str, Any]] = []
|
| 116 |
+
failures: list[dict[str, Any]] = []
|
| 117 |
+
status_counts: dict[str, int] = {}
|
| 118 |
+
|
| 119 |
+
for record in records:
|
| 120 |
+
status, detail = check_record(record, args)
|
| 121 |
+
status_counts[status] = status_counts.get(status, 0) + 1
|
| 122 |
+
if detail is None:
|
| 123 |
+
continue
|
| 124 |
+
detail = {"status": status, **detail}
|
| 125 |
+
if status == "checked":
|
| 126 |
+
checked.append(detail)
|
| 127 |
+
elif status.startswith("skipped"):
|
| 128 |
+
skipped.append(detail)
|
| 129 |
+
else:
|
| 130 |
+
failures.append(detail)
|
| 131 |
+
|
| 132 |
+
return {
|
| 133 |
+
"title": "Task Method 20 Matrix Source Audit",
|
| 134 |
+
"status": "pass" if not failures else "fail",
|
| 135 |
+
"generated_at_utc": datetime.now(timezone.utc).isoformat(timespec="seconds"),
|
| 136 |
+
"source_matrix": rel(args.matrix_json),
|
| 137 |
+
"method_task_record_count": matrix.get("method_task_record_count"),
|
| 138 |
+
"scored_method_task_count": matrix.get("scored_method_task_count"),
|
| 139 |
+
"checked_json_metric_count": len(checked),
|
| 140 |
+
"skipped_record_count": len(skipped),
|
| 141 |
+
"failure_count": len(failures),
|
| 142 |
+
"status_counts": dict(sorted(status_counts.items())),
|
| 143 |
+
"failures": failures,
|
| 144 |
+
"skipped_records": skipped[:100],
|
| 145 |
+
"rule": (
|
| 146 |
+
"Every scored row that declares a JSON metric source must have the same "
|
| 147 |
+
"numeric value under that row's metric_key."
|
| 148 |
+
),
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
+
|
| 152 |
+
def write_markdown(path: Path, report: dict[str, Any]) -> None:
|
| 153 |
+
failures = report["failures"]
|
| 154 |
+
lines = [
|
| 155 |
+
"# Task Method 20 Matrix Source Audit",
|
| 156 |
+
"",
|
| 157 |
+
f"Generated: `{report['generated_at_utc']}`",
|
| 158 |
+
"",
|
| 159 |
+
f"Status: **{report['status']}**",
|
| 160 |
+
"",
|
| 161 |
+
report["rule"],
|
| 162 |
+
"",
|
| 163 |
+
"## Summary",
|
| 164 |
+
"",
|
| 165 |
+
f"- Source matrix: `{report['source_matrix']}`",
|
| 166 |
+
f"- Scored rows: `{report['scored_method_task_count']}/{report['method_task_record_count']}`",
|
| 167 |
+
f"- JSON metric rows checked: `{report['checked_json_metric_count']}`",
|
| 168 |
+
f"- Skipped non-JSON/non-numeric rows: `{report['skipped_record_count']}`",
|
| 169 |
+
f"- Failures: `{report['failure_count']}`",
|
| 170 |
+
"",
|
| 171 |
+
]
|
| 172 |
+
if failures:
|
| 173 |
+
lines.extend([
|
| 174 |
+
"## Failures",
|
| 175 |
+
"",
|
| 176 |
+
"| Method | Task | Metric | Matrix value | Source value | Source |",
|
| 177 |
+
"| --- | --- | --- | ---: | ---: | --- |",
|
| 178 |
+
])
|
| 179 |
+
for row in failures:
|
| 180 |
+
lines.append(
|
| 181 |
+
"| "
|
| 182 |
+
+ " | ".join(
|
| 183 |
+
[
|
| 184 |
+
str(row.get("series_id")),
|
| 185 |
+
str(row.get("task_id")),
|
| 186 |
+
str(row.get("metric_key")),
|
| 187 |
+
str(row.get("raw")),
|
| 188 |
+
str(row.get("source_value")),
|
| 189 |
+
str(row.get("source")),
|
| 190 |
+
]
|
| 191 |
+
)
|
| 192 |
+
+ " |"
|
| 193 |
+
)
|
| 194 |
+
else:
|
| 195 |
+
lines.append("No JSON source/value mismatches were found.")
|
| 196 |
+
path.write_text("\n".join(lines) + "\n", encoding="utf-8")
|
| 197 |
+
|
| 198 |
+
|
| 199 |
+
def main() -> int:
|
| 200 |
+
args = parse_args()
|
| 201 |
+
report = build_report(args)
|
| 202 |
+
args.output.parent.mkdir(parents=True, exist_ok=True)
|
| 203 |
+
args.output.write_text(json.dumps(report, indent=2, sort_keys=True) + "\n", encoding="utf-8")
|
| 204 |
+
write_markdown(args.markdown_output, report)
|
| 205 |
+
print(f"{report['status'].upper()}: wrote {args.output}")
|
| 206 |
+
print(f"{report['status'].upper()}: wrote {args.markdown_output}")
|
| 207 |
+
return 0 if report["status"] == "pass" else 1
|
| 208 |
+
|
| 209 |
+
|
| 210 |
+
if __name__ == "__main__":
|
| 211 |
+
raise SystemExit(main())
|
scripts/verify_live_publication.py
CHANGED
|
@@ -108,6 +108,17 @@ HASH_GROUPS = [
|
|
| 108 |
"hf_model": "https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines/resolve/main/metrics/task_method_20_gap_audit.json",
|
| 109 |
},
|
| 110 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
{
|
| 112 |
"id": "public_reader_map_json",
|
| 113 |
"title": "Public reader map JSON",
|
|
|
|
| 108 |
"hf_model": "https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines/resolve/main/metrics/task_method_20_gap_audit.json",
|
| 109 |
},
|
| 110 |
},
|
| 111 |
+
{
|
| 112 |
+
"id": "task_method_20_source_audit_json",
|
| 113 |
+
"title": "Task-method 20-result source audit JSON",
|
| 114 |
+
"local_path": "docs/data/task_method_20_source_audit.json",
|
| 115 |
+
"urls": {
|
| 116 |
+
"github_pages": "https://chaoyue0307.github.io/ropedia-xperience-10m-task-suite/data/task_method_20_source_audit.json",
|
| 117 |
+
"hf_space": "https://huggingface.co/spaces/cy0307/ropedia-xperience-10m-task-suite/raw/main/data/task_method_20_source_audit.json",
|
| 118 |
+
"hf_artifacts": "https://huggingface.co/datasets/cy0307/ropedia-xperience-10m-task-suite-artifacts/resolve/main/docs/data/task_method_20_source_audit.json",
|
| 119 |
+
"hf_model": "https://huggingface.co/cy0307/ropedia-xperience-10m-task-baselines/resolve/main/metrics/task_method_20_source_audit.json",
|
| 120 |
+
},
|
| 121 |
+
},
|
| 122 |
{
|
| 123 |
"id": "public_reader_map_json",
|
| 124 |
"title": "Public reader map JSON",
|