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
import os
import shutil
from sklearn.datasets import load_iris, load_boston
from sklearn.metrics import accuracy_score, mean_squared_error
from sklearn.model_selection import train_test_split
from mindware.utils.data_manager import DataManager
from mindware.estimators import Classifier, Regressor
ModuleNotFoundError Traceback (most recent call last) in
8
9 from mindware.utils.data_manager import DataManager
---> 10 from mindware.estimators import Classifier, Regressor
11
Google colab installation:
%%time
%%capture
!pip install mindware
!pip install openbox
After ran the code:
https://github.com/thomas-young-2013/mindware/blob/master/examples/ci_examples/example_stacking.py
import os
import shutil
from sklearn.datasets import load_iris, load_boston
from sklearn.metrics import accuracy_score, mean_squared_error
from sklearn.model_selection import train_test_split
from mindware.utils.data_manager import DataManager
from mindware.estimators import Classifier, Regressor
ModuleNotFoundError Traceback (most recent call last)
in
8
9 from mindware.utils.data_manager import DataManager
---> 10 from mindware.estimators import Classifier, Regressor
11
8 frames
/usr/local/lib/python3.8/dist-packages/mindware/components/optimizers/base/mfsebase.py in
3 from collections import OrderedDict
4 from math import log, ceil
----> 5 from openbox.core.mf_batch_advisor import MFBatchAdvisor
6
7 from mindware.utils.constant import MAX_INT
ModuleNotFoundError: No module named 'openbox.core.mf_batch_advisor'
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
The text was updated successfully, but these errors were encountered: