Skip to content

Build on python 3.12 #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Sep 8, 2024
Merged
Prev Previous commit
Next Next commit
fix import issue
  • Loading branch information
xadupre committed Jun 20, 2024
commit a352dae946056af2563e26546c330b2259c97f59
6 changes: 5 additions & 1 deletion mlinsights/mlbatch/pipeline_cache.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from sklearn.base import clone
from sklearn.pipeline import Pipeline, _fit_transform_one
from sklearn.utils import _print_elapsed_time
try:
from sklearn.utils._user_interface import _print_elapsed_time
except ImportError:
# old scikit-learn
from sklearn.utils import _print_elapsed_time
from sklearn.utils.validation import check_memory
from .cache_model import MLCache

Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy