diff --git a/tests/test_leaderboard_artifacts.py b/tests/test_leaderboard_artifacts.py index b82e97f..b964960 100644 --- a/tests/test_leaderboard_artifacts.py +++ b/tests/test_leaderboard_artifacts.py @@ -3,6 +3,7 @@ import json import math from pathlib import Path +import re import struct @@ -191,6 +192,20 @@ def assert_no_absolute_artifact_paths(value: object) -> None: assert 'id="finalLeaderboard"' in website assert 'id="inferenceSettings"' in website assert "not a shared numeric compute scale" in website + assert 'id="loopScore"' in website + assert 'id="loopNote"' in website + assert "loopScore.textContent=t.score" in website + assert "updateTaskContent(t)" in website + task_block = re.search( + r"var TASKS=\[(.*?)\];\n var ti=", + website, + re.DOTALL, + ) + assert task_block is not None + assert task_block.group(1).count('score:"') == 9 + assert task_block.group(1).count('note:"') == 9 + assert task_block.group(1).count('files:"') == 9 + assert task_block.group(1).count('metric:"') == 9 assert 'fetch("assets/article_suite.json")' in website assert json.loads(WEBSITE_DATA.read_text()) == payload diff --git a/website/README.md b/website/README.md index 22f26a2..764e2e4 100644 --- a/website/README.md +++ b/website/README.md @@ -17,10 +17,12 @@ a full humanoid. Composed from the project's own six pencil illustrations with A Page content follows the repo README: an interactive six-stage pipeline (heuristic policies → VLA training, simulation → real world → more hardware → 2.0) whose first stage embeds an -interactive improvement-loop diagram on the MuJoCo Ant (assets/ant.png), an environments diagram -(simulation frameworks: Genesis, Isaac Sim, RoboCasa, MuJoCo · real-world operation), article-suite -results with task and final leaderboard images, and the research background. GenesisBench 1.0 — -language intelligence → physical intelligence; 2.0 — world intelligence. +interactive improvement loop and navigator across all nine article-derived tasks. The selected +task updates its environment artwork, starter description, experiment snippets, scoring-suite +summary, and task links. The page also includes an environments diagram (simulation frameworks: +Genesis, Isaac Sim, RoboCasa, MuJoCo · real-world operation), native HTML article-suite +leaderboards, and the research background. GenesisBench 1.0 — language intelligence → physical +intelligence; 2.0 — world intelligence. The website copies `leaderboard/article_suite.json` to `website/assets/article_suite.json` and renders both plots as responsive native diff --git a/website/index.html b/website/index.html index 60f799b..6c22c69 100644 --- a/website/index.html +++ b/website/index.html @@ -423,7 +423,7 @@

Heuristic policies in simulation

+ 03Compare scores