Datasets:
Update tests to target gen42 and remove gen52
Browse files- models/champion_gen52.py +0 -3
- models/tests/deep_dive_bridge.py +3 -2
- models/tests/deep_dive_export.py +2 -2
- models/tests/deep_dive_forward_hold.py +1 -1
- models/tests/deep_dive_genesis.py +1 -1
- models/tests/deep_dive_interface.py +3 -2
- models/tests/inspect_champion.py +3 -2
- models/tests/test_champion_full.py +3 -2
- models/tests/test_module_level.py +3 -2
- models/tests/verify_champion.py +3 -2
models/champion_gen52.py
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8fb541e70ee24f3bb8c7630829f44e9777e1cf1cc11556edfed22bf9d42b14d7
|
| 3 |
-
size 504637562
|
|
|
|
|
|
|
|
|
|
|
|
models/tests/deep_dive_bridge.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
"""Deep dive into BridgeFaculty and Kleene fixed-point matching."""
|
| 2 |
import sys
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
|
| 6 |
print("=" * 70)
|
| 7 |
print("🌉 BRIDGE FACULTY - Kleene Fixed-Point Data Bridging")
|
|
|
|
| 1 |
"""Deep dive into BridgeFaculty and Kleene fixed-point matching."""
|
| 2 |
import sys
|
| 3 |
+
import os
|
| 4 |
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
| 5 |
+
import champion_gen42 as champ
|
| 6 |
|
| 7 |
print("=" * 70)
|
| 8 |
print("🌉 BRIDGE FACULTY - Kleene Fixed-Point Data Bridging")
|
models/tests/deep_dive_export.py
CHANGED
|
@@ -11,7 +11,7 @@ as a complete, self-contained Python module!
|
|
| 11 |
"""
|
| 12 |
|
| 13 |
import os
|
| 14 |
-
import
|
| 15 |
|
| 16 |
print("=" * 60)
|
| 17 |
print("📦 Capsule Export Capabilities")
|
|
@@ -80,7 +80,7 @@ print(f"Replicated to: {replica_path}")
|
|
| 80 |
|
| 81 |
if replica_path and os.path.exists(replica_path):
|
| 82 |
replica_size = os.path.getsize(replica_path)
|
| 83 |
-
original_size = os.path.getsize("
|
| 84 |
print(f"Original size: {original_size / 1024 / 1024:.2f} MB")
|
| 85 |
print(f"Replica size: {replica_size / 1024 / 1024:.2f} MB")
|
| 86 |
print(f"Size match: {abs(replica_size - original_size) < 1000}")
|
|
|
|
| 11 |
"""
|
| 12 |
|
| 13 |
import os
|
| 14 |
+
import champion_gen42 as ch
|
| 15 |
|
| 16 |
print("=" * 60)
|
| 17 |
print("📦 Capsule Export Capabilities")
|
|
|
|
| 80 |
|
| 81 |
if replica_path and os.path.exists(replica_path):
|
| 82 |
replica_size = os.path.getsize(replica_path)
|
| 83 |
+
original_size = os.path.getsize("champion_gen42.py")
|
| 84 |
print(f"Original size: {original_size / 1024 / 1024:.2f} MB")
|
| 85 |
print(f"Replica size: {replica_size / 1024 / 1024:.2f} MB")
|
| 86 |
print(f"Size match: {abs(replica_size - original_size) < 1000}")
|
models/tests/deep_dive_forward_hold.py
CHANGED
|
@@ -15,7 +15,7 @@ import threading
|
|
| 15 |
import time
|
| 16 |
|
| 17 |
# Load the champion
|
| 18 |
-
import
|
| 19 |
|
| 20 |
print("=" * 60)
|
| 21 |
print("🎮 forward_hold() - HOLD-aware Arcade Inference")
|
|
|
|
| 15 |
import time
|
| 16 |
|
| 17 |
# Load the champion
|
| 18 |
+
import champion_gen42 as ch
|
| 19 |
|
| 20 |
print("=" * 60)
|
| 21 |
print("🎮 forward_hold() - HOLD-aware Arcade Inference")
|
models/tests/deep_dive_genesis.py
CHANGED
|
@@ -36,7 +36,7 @@ except Exception as e:
|
|
| 36 |
# Check champion's view of genesis
|
| 37 |
print("\n=== Champion's Genesis View ===")
|
| 38 |
try:
|
| 39 |
-
import
|
| 40 |
|
| 41 |
# Get genesis root from champion
|
| 42 |
print(f"Champion quine hash: {champ.get_quine_hash()}")
|
|
|
|
| 36 |
# Check champion's view of genesis
|
| 37 |
print("\n=== Champion's Genesis View ===")
|
| 38 |
try:
|
| 39 |
+
import champion_gen42 as champ
|
| 40 |
|
| 41 |
# Get genesis root from champion
|
| 42 |
print(f"Champion quine hash: {champ.get_quine_hash()}")
|
models/tests/deep_dive_interface.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
"""Deep dive into champion's advanced capabilities."""
|
| 2 |
import sys
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
import os
|
| 6 |
import tempfile
|
| 7 |
|
|
|
|
| 1 |
"""Deep dive into champion's advanced capabilities."""
|
| 2 |
import sys
|
| 3 |
+
import os
|
| 4 |
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
| 5 |
+
import champion_gen42 as champ
|
| 6 |
import os
|
| 7 |
import tempfile
|
| 8 |
|
models/tests/inspect_champion.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
| 1 |
"""Inspect champion model capabilities."""
|
| 2 |
import sys
|
| 3 |
-
|
|
|
|
| 4 |
|
| 5 |
try:
|
| 6 |
-
import
|
| 7 |
|
| 8 |
print('=== MODULE ATTRIBUTES ===')
|
| 9 |
print(f'_QUINE_HASH: {getattr(champ, "_QUINE_HASH", "N/A")}')
|
|
|
|
| 1 |
"""Inspect champion model capabilities."""
|
| 2 |
import sys
|
| 3 |
+
import os
|
| 4 |
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
| 5 |
|
| 6 |
try:
|
| 7 |
+
import champion_gen42 as champ
|
| 8 |
|
| 9 |
print('=== MODULE ATTRIBUTES ===')
|
| 10 |
print(f'_QUINE_HASH: {getattr(champ, "_QUINE_HASH", "N/A")}')
|
models/tests/test_champion_full.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
"""Test champion forward inference and HOLD."""
|
| 2 |
import sys
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
import numpy as np
|
| 6 |
|
| 7 |
agent = champ.CapsuleAgent(observe=False, observe_visual=False)
|
|
|
|
| 1 |
"""Test champion forward inference and HOLD."""
|
| 2 |
import sys
|
| 3 |
+
import os
|
| 4 |
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
| 5 |
+
import champion_gen42 as champ
|
| 6 |
import numpy as np
|
| 7 |
|
| 8 |
agent = champ.CapsuleAgent(observe=False, observe_visual=False)
|
models/tests/test_module_level.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
"""Quick module-level test without loading brain."""
|
| 2 |
import sys
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
|
| 6 |
print('=== MODULE LEVEL (no brain load) ===')
|
| 7 |
print(f'Quine hash: {champ.get_quine_hash()}')
|
|
|
|
| 1 |
"""Quick module-level test without loading brain."""
|
| 2 |
import sys
|
| 3 |
+
import os
|
| 4 |
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
| 5 |
+
import champion_gen42 as champ
|
| 6 |
|
| 7 |
print('=== MODULE LEVEL (no brain load) ===')
|
| 8 |
print(f'Quine hash: {champ.get_quine_hash()}')
|
models/tests/verify_champion.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
| 1 |
"""Verify champion export capabilities."""
|
| 2 |
import sys
|
| 3 |
-
|
|
|
|
| 4 |
|
| 5 |
# Import the champion
|
| 6 |
-
import
|
| 7 |
|
| 8 |
print('=== CHAMPION CAPABILITIES ===')
|
| 9 |
print(f'Quine Hash: {champ._QUINE_HASH}')
|
|
|
|
| 1 |
"""Verify champion export capabilities."""
|
| 2 |
import sys
|
| 3 |
+
import os
|
| 4 |
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
| 5 |
|
| 6 |
# Import the champion
|
| 7 |
+
import champion_gen42 as champ
|
| 8 |
|
| 9 |
print('=== CHAMPION CAPABILITIES ===')
|
| 10 |
print(f'Quine Hash: {champ._QUINE_HASH}')
|