When I execute this line -
classifier = KerasClassifier(model=model, clip_values=None, use_logits=False)
this error comes up - ValueError: TensorFlow is executing eagerly. Please disable eager execution.
I disabled TensorFlow's eager execution by -
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
But then, when I again run the first line, my kernel dies. Do you know what may be the problem?
When I execute this line -
classifier = KerasClassifier(model=model, clip_values=None, use_logits=False)this error comes up -
ValueError: TensorFlow is executing eagerly. Please disable eager execution.I disabled TensorFlow's eager execution by -
But then, when I again run the first line, my kernel dies. Do you know what may be the problem?