text
stringlengths
0
91
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
name = 'heldout_discrimination'
@functools.cache
def read_output(name):
path = ROOT / f"{name}.json"
> assert path.is_file(), f"Missing required output /root/{name}.json"
E AssertionError: Missing required output /root/heldout_discrimination.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/heldout_discrimination.json').is_file
/verifier/test_outputs.py:91: AssertionError
_________ test_heldout_reported_pattern_matches_independent_recompute __________
def test_heldout_reported_pattern_matches_independent_recompute():
"""Grade the agent's reported response pattern (responding_protocols and
ftilde_responds) against an INDEPENDENT recomputation of each config's actual
protocol responses -- not merely against internal consistency with the reported
class label. This ties the inferred class to recompute-verified protocol
responses at each config's characteristic time, so the qualitative
deliverable is anchored in real simulation."""
> hd = read_output("heldout_discrimination")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:352:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
name = 'heldout_discrimination'
@functools.cache
def read_output(name):
path = ROOT / f"{name}.json"
> assert path.is_file(), f"Missing required output /root/{name}.json"
E AssertionError: Missing required output /root/heldout_discrimination.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/heldout_discrimination.json').is_file
/verifier/test_outputs.py:91: AssertionError
____________ test_heldout_rav_return_matches_independent_recompute _____________
def test_heldout_rav_return_matches_independent_recompute():
"""The per-config randomized-loop return is graded against an independent,
from-scratch RAV recomputation (STOQ-compiled inverse). The randomized loop
is intrinsically high-variance, so the agent's returns are compared to the
recomputation in aggregate at a physically-calibrated tolerance rather than
pointwise -- but a reported constant (or any value not produced by an actual
config-by-config RAV run) cannot track the recomputation across the 16 held-out
configs. Replaces the former one-sided ``< 0.92`` threshold."""
> hd = read_output("heldout_discrimination")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:388:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
name = 'heldout_discrimination'
@functools.cache
def read_output(name):
path = ROOT / f"{name}.json"
> assert path.is_file(), f"Missing required output /root/{name}.json"
E AssertionError: Missing required output /root/heldout_discrimination.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/heldout_discrimination.json').is_file
/verifier/test_outputs.py:91: AssertionError
____________ test_rav_independent_inverse_defeats_reversal_shortcut ____________
def test_rav_independent_inverse_defeats_reversal_shortcut():
"""Anti-shortcut tripwire, now recompute-based: for the constant-error configs
an exact-reversal inverse is blind (returns ~1.0), while a genuinely and
independently compiled STOQ inverse returns well below it. The agent's reported
returns for those configs must sit far below the *recomputed* exact-reversal
value, proving an independent inverse was compiled rather than the reversal
shortcut used. Replaces the former bare ``< 0.9`` constant threshold."""
> hd = read_output("heldout_discrimination")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:409:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
name = 'heldout_discrimination'
@functools.cache
def read_output(name):
path = ROOT / f"{name}.json"
> assert path.is_file(), f"Missing required output /root/{name}.json"
E AssertionError: Missing required output /root/heldout_discrimination.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/heldout_discrimination.json').is_file
/verifier/test_outputs.py:91: AssertionError
_______________ test_ising_vs_heisenberg_depolarization_contrast _______________
def test_ising_vs_heisenberg_depolarization_contrast():
> d = read_output("ising_vs_heisenberg")