PySR / pysr /sklearn_monkeypatch.py
pre-commit-ci[bot]
[pre-commit.ci] pre-commit autoupdate (#537)
75c23d4 unverified
raw
history blame
336 Bytes
# Here, we monkey patch scikit-learn until this
# issue is fixed: https://github.com/scikit-learn/scikit-learn/issues/25922
from sklearn.utils import validation
def _ensure_no_complex_data(*args, **kwargs): ...
try:
validation._ensure_no_complex_data = _ensure_no_complex_data
except AttributeError: # pragma: no cover
...