Answered by:
AutoML error

Question
-
I am getting below error message
import logging
automl_config = AutoMLConfig(task='classification',
debug_log='automated_ml_errors.log',
X=X_train_scaled,
y=y_train.values.flatten(),
**automl_settings)
automl_config = AutoMLConfig(task='classification',
debug_log='automated_ml_errors.log',
X=X_train_scaled,
y=y_train.values.flatten(),
**automl_settings)/anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/automl/core/_vendor/automl/client/core/runtime/tf_wrappers.py in <module>
34 os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' 35 if tf_found: ---> 36 tf.logging.set_verbosity(tf.logging.ERROR) 37 38 OPTIMIZERS = { AttributeError: module 'tensorflow' has no attribute 'logging'
Answers
-
Hi all, just found out that azureml-sdk[autom]==1.0.69 requires tensorflow==1.12.0. doesn't support tensorflow==2.0.0
at the moment
- Marked as answer by RohitMungi-MSFTMicrosoft employee, Moderator Wednesday, October 23, 2019 5:19 AM
All replies
-
-
-
Hi all, just found out that azureml-sdk[autom]==1.0.69 requires tensorflow==1.12.0. doesn't support tensorflow==2.0.0
at the moment
- Marked as answer by RohitMungi-MSFTMicrosoft employee, Moderator Wednesday, October 23, 2019 5:19 AM