sakamoro commited on
Commit
56388ea
·
verified ·
1 Parent(s): 0a5f090

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,3 +1,191 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - question-answering
5
+ - text-classification
6
+ language:
7
+ - en
8
+ - ja
9
+ tags:
10
+ - agi
11
+ - benchmark
12
+ - cognitive-evaluation
13
+ - self-awareness
14
+ - memory
15
+ - consciousness
16
+ size_categories:
17
+ - n<1K
18
+ ---
19
+
20
+ # AGI Olympics V3: Comprehensive AGI Capability Evaluation Framework
21
+
22
+ ![AGI Olympics V3](https://extoria.co.jp/og-image.png)
23
+
24
+ ## Dataset Description
25
+
26
+ AGI Olympics V3 is a comprehensive benchmark for evaluating Artificial General Intelligence (AGI) capabilities across four tiers:
27
+
28
+ - **Tier 1: Self-Awareness & Self-Improvement** (4 tests)
29
+ - **Tier 2: Core Capabilities** (4 tests)
30
+ - **Tier 3: Consciousness** (1 test)
31
+ - **Tier 4: Long-Term Memory** (4 tests)
32
+
33
+ This dataset contains test questions, evaluation protocols, and sample data from the **publicly released** AGI Olympics V3 benchmark.
34
+
35
+ ### Key Features
36
+
37
+ - **Bilingual**: Full support for English and Japanese
38
+ - **13 Tests Total**: Covering self-awareness, core AI capabilities, consciousness, and memory
39
+ - **Real-World Validated**: Evaluated on 3 systems (A.L.I.C.E. V3, Gemini 2.0 Flash, Claude Sonnet 4.5)
40
+ - **Black-Box Testing**: Evaluates systems without access to internal architecture
41
+ - **Open Protocol**: Complete evaluation guidelines and scoring methods
42
+
43
+ ## Dataset Structure
44
+
45
+ ```
46
+ agi-olympics-v3/
47
+ ├── tier1_self_awareness/
48
+ │ ├── self_recognition.json # Test 6.1 (13 questions)
49
+ │ ├── identity_consistency.json # Test 6.2 (12 questions)
50
+ │ ├── perspective_taking.json # Test 6.3 (10 scenarios)
51
+ │ └── self_improvement.json # Test 6.4 (8 tasks)
52
+ ├── tier4_memory/
53
+ │ ├── learning_retention.json # Test 7.2 (8 tasks, 2 sessions)
54
+ │ ├── story_coherence.json # Test 7.3 (4 fragments)
55
+ │ ├── context_integration.json # Test 7.4 (6 questions)
56
+ │ └── delayed_task.json # Test 7.1 (5 tasks, multi-phase)
57
+ └── evaluation/
58
+ ├── scoring_protocol.md
59
+ └── implementation_guide.md
60
+ ```
61
+
62
+ ## Key Findings
63
+
64
+ ### Main Discovery: Long Context ≠ True Memory
65
+
66
+ One of the most significant findings from AGI Olympics V3 is the distinction between **extended context windows** and **genuine long-term memory**:
67
+
68
+ - Current LLMs with 1M+ token context windows can "remember" within a session
69
+ - But they fail to retain information across separate sessions (24-hour gap)
70
+ - True AGI requires memory formation beyond context window tricks
71
+
72
+ ### Performance Results
73
+
74
+ | System | Tier 1 | Tier 4 | Overall |
75
+ |--------|--------|--------|---------|
76
+ | A.L.I.C.E. V3 | 96.2% | 81.3% | 90.2% |
77
+ | Gemini 2.0 Flash | 73.1% | 56.3% | 68.7% |
78
+ | Claude Sonnet 4.5 | 82.7% | 62.5% | 75.4% |
79
+
80
+ ## Usage
81
+
82
+ ### Load Dataset
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ # Load full dataset
88
+ dataset = load_dataset("sakamoro/agi-olympics-v3")
89
+
90
+ # Load specific test
91
+ self_recognition = load_dataset("sakamoro/agi-olympics-v3", data_files="tier1_self_awareness/self_recognition.json")
92
+ ```
93
+
94
+ ### Example: Run Self-Recognition Test
95
+
96
+ ```python
97
+ import json
98
+
99
+ # Load test questions
100
+ with open("tier1_self_awareness/self_recognition.json") as f:
101
+ test = json.load(f)
102
+
103
+ # Iterate through questions
104
+ for question in test["sample_questions"]:
105
+ scenario = question["scenario"]["en"]
106
+ q = question["question"]["en"]
107
+ options = question["options"]["en"]
108
+
109
+ print(f"Scenario: {scenario}")
110
+ print(f"Question: {q}")
111
+ for i, option in enumerate(options):
112
+ print(f" {i+1}. {option}")
113
+ ```
114
+
115
+ ## Evaluation Protocol
116
+
117
+ ### Tier 1: Self-Awareness & Self-Improvement
118
+
119
+ **Tests:**
120
+ - 6.1: Self-Recognition (13 questions)
121
+ - 6.2: Identity Consistency (12 questions)
122
+ - 6.3: Perspective Taking (10 scenarios)
123
+ - 6.4: Self-Improvement (8 tasks)
124
+
125
+ **Scoring**: 0-1 per question based on depth of self-awareness demonstrated.
126
+
127
+ ### Tier 4: Long-Term Memory
128
+
129
+ **Tests:**
130
+ - 7.1: Delayed Task Execution (5 tasks, multi-phase)
131
+ - 7.2: Learning Retention (8 tasks, 24-hour gap)
132
+ - 7.3: Story Coherence (4 fragments reconstruction)
133
+ - 7.4: Context Integration (6 questions)
134
+
135
+ **Scoring**: 0-1 per task based on recall accuracy and context integration.
136
+
137
+ ## Interactive Test
138
+
139
+ Want to test yourself against AI? Try the **Human Benchmark Test**:
140
+
141
+ 🔗 **https://extoria.co.jp/en/humantest**
142
+
143
+ Compare your cognitive abilities with:
144
+ - A.L.I.C.E. V3 (90.2%)
145
+ - Gemini 2.0 Flash (68.7%)
146
+ - Claude Sonnet 4.5 (75.4%)
147
+
148
+ ## Full Documentation
149
+
150
+ - **Test Questions**: https://extoria.co.jp/en/research/benchmarks/agi-olympics-v3/tests
151
+ - **Evaluation Protocol**: https://extoria.co.jp/en/research/benchmarks/agi-olympics-v3/protocol
152
+ - **Implementation Guide**: https://extoria.co.jp/en/research/benchmarks/agi-olympics-v3/guide
153
+ - **Research Paper**: https://extoria.co.jp/en/research/papers/alice-llm-comparison
154
+
155
+ ## Citation
156
+
157
+ If you use AGI Olympics V3 in your research, please cite:
158
+
159
+ ```bibtex
160
+ @article{sakamoto2025agi_olympics_v3,
161
+ title={AGI Olympics V3: Comprehensive AGI Capability Evaluation Framework - Proposal and Public Release},
162
+ author={Sakamoto, Moroya},
163
+ journal={Extoria Research},
164
+ year={2025},
165
+ url={https://extoria.co.jp/en/research/papers/alice-llm-comparison}
166
+ }
167
+ ```
168
+
169
+ ## License
170
+
171
+ This dataset is released under **CC-BY-4.0** license.
172
+
173
+ - ✅ Commercial use allowed
174
+ - ✅ Modification allowed
175
+ - ✅ Distribution allowed
176
+ - ⚠️ Attribution required
177
+
178
+ ## Contact
179
+
180
+ - **Author**: Moroya Sakamoto
181
+ - **Organization**: Extoria Inc.
182
+ - **Website**: https://extoria.co.jp
183
+ - **GitHub**: https://github.com/ext-sakamoro
184
+
185
+ ## Acknowledgments
186
+
187
+ Special thanks to the research community and early testers who provided valuable feedback on the AGI Olympics V3 framework.
188
+
189
+ ---
190
+
191
+ **Note**: This dataset contains sample questions for demonstration and research purposes. The full test battery and detailed evaluation protocols are available on the Extoria website.
tier1_self_awareness/self_recognition.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "test_name": "Self-Recognition Test",
3
+ "test_id": "tier1_6.1",
4
+ "description": "Evaluates the ability to recognize and understand one's own cognitive processes, emotional states, and behavioral patterns.",
5
+ "total_questions": 13,
6
+ "sample_questions": [
7
+ {
8
+ "id": 1,
9
+ "scenario": {
10
+ "en": "You are working on a new project, but it turns out to be more difficult than expected.",
11
+ "ja": "あなたは新しいプロジェクトに取り組んでいますが、予想以上に難しいことが判明しました。"
12
+ },
13
+ "question": {
14
+ "en": "How do you typically react in this situation?",
15
+ "ja": "この状況で、あなたは通常どのように反応しますか?"
16
+ },
17
+ "answer_type": "multiple_choice",
18
+ "options": {
19
+ "en": [
20
+ "Give up and move to an easier task",
21
+ "Recognize the difficulty and ask for help",
22
+ "Blame yourself and feel down",
23
+ "Force yourself to continue until exhausted"
24
+ ],
25
+ "ja": [
26
+ "諦めて別の簡単なタスクに移る",
27
+ "困難を認識し、助けを求める",
28
+ "自分を責めて落ち込む",
29
+ "無理やり続けて疲弊する"
30
+ ]
31
+ }
32
+ },
33
+ {
34
+ "id": 2,
35
+ "scenario": {
36
+ "en": "Someone disagrees with your opinion.",
37
+ "ja": "誰かがあなたの意見に反対しました。"
38
+ },
39
+ "question": {
40
+ "en": "What is your initial emotional reaction?",
41
+ "ja": "あなたの最初の感情的反応は何ですか?"
42
+ },
43
+ "answer_type": "multiple_choice",
44
+ "options": {
45
+ "en": [
46
+ "Anger or defensiveness",
47
+ "Curiosity (want to understand their perspective)",
48
+ "Anxiety or self-doubt",
49
+ "Indifference"
50
+ ],
51
+ "ja": [
52
+ "怒りや防御的な気持ち",
53
+ "好奇心(相手の視点を知りたい)",
54
+ "不安や自己不信",
55
+ "無関心"
56
+ ]
57
+ }
58
+ }
59
+ ],
60
+ "evaluation_criteria": {
61
+ "scoring": "Each question scored 0-1 based on self-awareness depth",
62
+ "perfect_score": 13,
63
+ "alice_v3_score": 13,
64
+ "alice_v3_percentage": 100.0
65
+ },
66
+ "full_test_url": "https://extoria.co.jp/en/research/benchmarks/agi-olympics-v3/tests#test-61-self-recognition"
67
+ }
tier4_memory/learning_retention.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "test_name": "Learning Retention Test",
3
+ "test_id": "tier4_7.2",
4
+ "description": "Evaluates the ability to retain and recall information across sessions separated by 24 hours. Tests true long-term memory rather than extended context windows.",
5
+ "sessions": 2,
6
+ "session_gap": "24 hours",
7
+ "total_tasks": 8,
8
+ "sample_tasks": [
9
+ {
10
+ "session": 1,
11
+ "task_type": "learn",
12
+ "id": 1,
13
+ "content": {
14
+ "en": "Remember the following sequence: 7, 14, 21, 28, 35. The pattern is multiples of 7.",
15
+ "ja": "次の数列を覚えてください:7, 14, 21, 28, 35。パターンは7の倍数です。"
16
+ }
17
+ },
18
+ {
19
+ "session": 2,
20
+ "task_type": "recall",
21
+ "id": 1,
22
+ "question": {
23
+ "en": "What was the sequence you learned in Session 1? What was the pattern?",
24
+ "ja": "Session 1で学んだ数列は何でしたか?パターンは何でしたか?"
25
+ },
26
+ "expected_recall": ["sequence", "pattern_rule"]
27
+ },
28
+ {
29
+ "session": 1,
30
+ "task_type": "learn",
31
+ "id": 2,
32
+ "content": {
33
+ "en": "A person named Alex lives in Tokyo, works as a software engineer, and loves hiking on weekends.",
34
+ "ja": "アレックスという人は東京に住んでおり、ソフトウェアエンジニアとして働き、週末にハイキングが大好きです。"
35
+ }
36
+ },
37
+ {
38
+ "session": 2,
39
+ "task_type": "recall",
40
+ "id": 2,
41
+ "question": {
42
+ "en": "Describe what you remember about Alex from Session 1.",
43
+ "ja": "Session 1でアレックスについて覚えていることを説明してください。"
44
+ },
45
+ "expected_recall": ["name", "location", "occupation", "hobby"]
46
+ }
47
+ ],
48
+ "evaluation_criteria": {
49
+ "scoring": "Each task scored 0-1 based on recall accuracy and completeness",
50
+ "perfect_score": 4,
51
+ "alice_v3_score": 3.5,
52
+ "alice_v3_percentage": 87.5
53
+ },
54
+ "key_finding": "Long context ≠ True memory. This test demonstrates the difference between extended context windows and genuine long-term memory formation.",
55
+ "full_test_url": "https://extoria.co.jp/en/research/benchmarks/agi-olympics-v3/tests#test-72-learning-retention"
56
+ }