Finalize v0.1.0 publication metadata
Browse filesMark the manifest as published_public and update the dataset card from release-candidate wording after successful public verification.
- MANIFEST.json +6 -6
- README.md +1 -1
- scripts/validate_release.py +2 -2
MANIFEST.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"content_set_sha256": "
|
| 3 |
"counts": {
|
| 4 |
"aim_ag_tasks": 10,
|
| 5 |
"counterexample_variants": 5,
|
|
@@ -30,9 +30,9 @@
|
|
| 30 |
"sha256": "a53ab93ec6e79882123529477dfe827e002773f56da0c5b2edb390d94dceb337"
|
| 31 |
},
|
| 32 |
{
|
| 33 |
-
"bytes":
|
| 34 |
"path": "README.md",
|
| 35 |
-
"sha256": "
|
| 36 |
},
|
| 37 |
{
|
| 38 |
"bytes": 6,
|
|
@@ -335,13 +335,13 @@
|
|
| 335 |
"sha256": "e6f7db847ef3e575475cc61f2cd605d36f18e2f75f3ecf9017e087171aec0648"
|
| 336 |
},
|
| 337 |
{
|
| 338 |
-
"bytes":
|
| 339 |
"path": "scripts/validate_release.py",
|
| 340 |
-
"sha256": "
|
| 341 |
}
|
| 342 |
],
|
| 343 |
"license": "MIT",
|
| 344 |
-
"publication_status": "
|
| 345 |
"release_date": "2026-08-26",
|
| 346 |
"release_name": "SOTA Math: Ulam.ai Research Problem Showcase",
|
| 347 |
"release_version": "0.1.0",
|
|
|
|
| 1 |
{
|
| 2 |
+
"content_set_sha256": "91f86d4ac5142aacadcf02196a75077da07ceba85fc16505b9d38a39998eb909",
|
| 3 |
"counts": {
|
| 4 |
"aim_ag_tasks": 10,
|
| 5 |
"counterexample_variants": 5,
|
|
|
|
| 30 |
"sha256": "a53ab93ec6e79882123529477dfe827e002773f56da0c5b2edb390d94dceb337"
|
| 31 |
},
|
| 32 |
{
|
| 33 |
+
"bytes": 8484,
|
| 34 |
"path": "README.md",
|
| 35 |
+
"sha256": "f1a9b36d4d25ef4cbca7a7a5dfa459705c54672541d5f62c82a457fad890e679"
|
| 36 |
},
|
| 37 |
{
|
| 38 |
"bytes": 6,
|
|
|
|
| 335 |
"sha256": "e6f7db847ef3e575475cc61f2cd605d36f18e2f75f3ecf9017e087171aec0648"
|
| 336 |
},
|
| 337 |
{
|
| 338 |
+
"bytes": 18912,
|
| 339 |
"path": "scripts/validate_release.py",
|
| 340 |
+
"sha256": "46c02846cb6ef5367afb660bdcb70f8ad36d7958af59472f0a2aa01f4341c881"
|
| 341 |
}
|
| 342 |
],
|
| 343 |
"license": "MIT",
|
| 344 |
+
"publication_status": "published_public",
|
| 345 |
"release_date": "2026-08-26",
|
| 346 |
"release_name": "SOTA Math: Ulam.ai Research Problem Showcase",
|
| 347 |
"release_version": "0.1.0",
|
README.md
CHANGED
|
@@ -59,7 +59,7 @@ configs:
|
|
| 59 |
|
| 60 |
# SOTA Math: Ulam.ai Research Problem Showcase
|
| 61 |
|
| 62 |
-
This release
|
| 63 |
|
| 64 |
- 5 new problems inspired by Erdős problems;
|
| 65 |
- all 10 problems in the AIM-AG research sample, with milestone-based RL task definitions; and
|
|
|
|
| 59 |
|
| 60 |
# SOTA Math: Ulam.ai Research Problem Showcase
|
| 61 |
|
| 62 |
+
This public release contains 20 internally authored, research-grade mathematics tasks selected to demonstrate the style of problem design and evaluation developed at [ulam.ai](https://ulam.ai):
|
| 63 |
|
| 64 |
- 5 new problems inspired by Erdős problems;
|
| 65 |
- all 10 problems in the AIM-AG research sample, with milestone-based RL task definitions; and
|
scripts/validate_release.py
CHANGED
|
@@ -368,8 +368,8 @@ def check_sensitive_strings() -> None:
|
|
| 368 |
|
| 369 |
def check_manifest() -> None:
|
| 370 |
manifest = read_json(ROOT / "MANIFEST.json")
|
| 371 |
-
if manifest.get("publication_status") != "
|
| 372 |
-
fail("Manifest publication status is not
|
| 373 |
listed = manifest.get("files", [])
|
| 374 |
for item in listed:
|
| 375 |
path = ROOT / item["path"]
|
|
|
|
| 368 |
|
| 369 |
def check_manifest() -> None:
|
| 370 |
manifest = read_json(ROOT / "MANIFEST.json")
|
| 371 |
+
if manifest.get("publication_status") != "published_public":
|
| 372 |
+
fail("Manifest publication status is not published_public")
|
| 373 |
listed = manifest.get("files", [])
|
| 374 |
for item in listed:
|
| 375 |
path = ROOT / item["path"]
|