File size: 1,688 Bytes
0b28a2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://huggingface.co/datasets/ulamai/SOTA-Math/raw/main/schema/showcase.schema.json",
  "title": "Ulam.ai SOTA Math showcase record",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "schema_version",
    "problem_id",
    "stream",
    "source_record_index",
    "title",
    "domain",
    "task_type",
    "difficulty",
    "prompt",
    "inspiration",
    "rationale",
    "expected_output",
    "research_status",
    "rl_ready",
    "milestones",
    "verification",
    "quality_signals",
    "license"
  ],
  "properties": {
    "schema_version": {"const": "1.0.0"},
    "problem_id": {"type": "string", "minLength": 1},
    "stream": {
      "enum": ["erdos_variant", "aim_ag_rl", "counterexample_variant"]
    },
    "source_record_index": {"type": "integer", "minimum": 1},
    "title": {"type": "string", "minLength": 1},
    "domain": {"type": "string", "minLength": 1},
    "task_type": {"type": "string", "minLength": 1},
    "difficulty": {"type": "string", "minLength": 1},
    "prompt": {"type": "string", "minLength": 1},
    "inspiration": {"type": "string", "minLength": 1},
    "rationale": {"type": "string", "minLength": 1},
    "expected_output": {"type": "string", "minLength": 1},
    "research_status": {"type": "string", "minLength": 1},
    "rl_ready": {"type": "boolean"},
    "milestones": {"type": "array", "items": {"type": "string"}},
    "verification": {"type": "string", "minLength": 1},
    "quality_signals": {
      "type": "array",
      "minItems": 1,
      "items": {"type": "string", "minLength": 1}
    },
    "license": {"const": "MIT"}
  }
}