text
stringlengths
0
1.87k
the built-in open() function does.
"""
if "b" not in mode:
encoding = io.text_encoding(encoding)
> return io.open(self, mode, buffering, encoding, errors, newline)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E FileNotFoundError: [Errno 2] No such file or directory: '/root/reservoir_report.json'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
________ test_information_tensor_matches_independent_knn_recomputation _________
def test_information_tensor_matches_independent_knn_recomputation() -> None:
reference = independent_information_reference()
> submitted = submitted_information()["mi_nats"]
^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:896:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submitted_information() -> dict[str, np.ndarray]:
path = ROOT / "lagged_information.npz"
> assert path.is_file(), "missing /root/lagged_information.npz"
E AssertionError: missing /root/lagged_information.npz
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/lagged_information.npz').is_file
test_outputs.py:558: AssertionError
_________________ test_peak_arrays_rankings_and_memory_metrics _________________
def test_peak_arrays_rankings_and_memory_metrics() -> None:
forecast_reference = independent_forecast_reference()
information_reference = independent_information_reference()
> submitted = submitted_information()
^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:909:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submitted_information() -> dict[str, np.ndarray]:
path = ROOT / "lagged_information.npz"
> assert path.is_file(), "missing /root/lagged_information.npz"
E AssertionError: missing /root/lagged_information.npz
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/lagged_information.npz').is_file
test_outputs.py:558: AssertionError
_ test_conditional_information_matches_independent_frenzel_pompe_recomputation _
def test_conditional_information_matches_independent_frenzel_pompe_recomputation() -> None:
reference = independent_conditional_information_reference()
> submitted = submitted_conditional_information()["cmi_nats"]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:981:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submitted_conditional_information() -> dict[str, np.ndarray]:
path = ROOT / "conditional_information.npz"
> assert path.is_file(), "missing /root/conditional_information.npz"
E AssertionError: missing /root/conditional_information.npz
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/conditional_information.npz').is_file
test_outputs.py:574: AssertionError
________________ test_conditional_peaks_and_predictive_summary _________________
def test_conditional_peaks_and_predictive_summary() -> None:
reference = independent_conditional_information_reference()
> submitted = submitted_conditional_information()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:993:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submitted_conditional_information() -> dict[str, np.ndarray]:
path = ROOT / "conditional_information.npz"
> assert path.is_file(), "missing /root/conditional_information.npz"
E AssertionError: missing /root/conditional_information.npz
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/conditional_information.npz').is_file
test_outputs.py:574: AssertionError
________________ test_hidden_adversarial_lag_and_overlap_probes ________________
def test_hidden_adversarial_lag_and_overlap_probes() -> None:
reference = independent_information_reference()
> submitted = submitted_information()["mi_nats"]
^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:1045:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _