You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 14, 2023. It is now read-only.
I am running my scripts in a Python 3.9.13 environment through Anaconda VScode. The package was downloaded via Anaconda Prompt by 'conda install -c conda-forge tune-sklearn'. The download was successful but I failed to import it. The error messages are as follows.
P.S. windows system
ImportError Traceback (most recent call last)
~\AppData\Local\Temp\ipykernel_19684\1695006636.py in
----> 1 import tune_sklearn as tune
2
3
d:\Anaconda3\lib\site-packages\tune_sklearn_init_.py in
----> 1 from tune_sklearn.tune_gridsearch import TuneGridSearchCV
2 from tune_sklearn.tune_search import TuneSearchCV
3 from tune_sklearn._version import version
4
5 all = ["TuneGridSearchCV", "TuneSearchCV", "version"]
d:\Anaconda3\lib\site-packages\tune_sklearn\tune_gridsearch.py in
13 check_is_pipeline, check_error_warm_start,
14 is_tune_grid_search, MaximumIterationStopper)
---> 15 from tune_sklearn.tune_basesearch import TuneBaseSearchCV
16 from tune_sklearn._trainable import _Trainable
17 from tune_sklearn._trainable import _PipelineTrainable