EpistasisLab / EpistasisLab/tpot
ImportError: cannot import name 'TqdmExperimentalWarning'
- Dominant language
- Jupyter Notebook
- Stars
- 10.1k
- Forks
- 1.6k
- PR merge metrics
- No merged PRs in 30d
Description
i am just trying to import tpot below is my code
```
import tensorflow as tf
import tpot as tp
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
in ()
1 import tensorflow as tf
----> 2 import tpot as tp
~\Anaconda3\lib\site-packages\tpot\__init__.py in ()
25
26 from ._version import __version__
---> 27 from .tpot import TPOTClassifier, TPOTRegressor
28 from .driver import main
~\Anaconda3\lib\site-packages\tpot\tpot.py in ()
24 """
25
---> 26 from .base import TPOTBase
27 from .config.classifier import classifier_config_dict
28 from .config.regressor import regressor_config_dict
~\Anaconda3\lib\site-packages\tpot\base.py in ()
75 with warnings.catch_warnings():
76 warnings.simplefilter('ignore')
---> 77 from tqdm.autonotebook import tqdm
78
79 # hot patch for Windows: solve the problem of crashing python after Ctrl + C in Windows OS
~\Anaconda3\lib\site-packages\tqdm\autonotebook\__init__.py in ()
8 from .._tqdm_notebook import tqdm_notebook as tqdm
9 from .._tqdm_notebook import tnrange as trange
---> 10 from .._tqdm import TqdmExperimentalWarning
11 from warnings import warn
12 warn("Using `tqdm.autonotebook.tqdm` in notebook mode."
ImportError: cannot import name 'TqdmExperimentalWarning'
```
I tried to check it on stackoverflow but did not find any one else having the same issue , can someone please check
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.