We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to use UNet with Estimators API, but it is need to set eager_execution for using estimators:
import tensorflow as tf tf.enable_eager_execution()
But after that using the follows becomes impossible:
import ssl ssl._create_default_https_context = ssl._create_unverified_context model = Unet(classes=def_num_classes, activation='softmax')
because RuntimeError: get_session is not available when TensorFlow is executing eagerly.
get_session
Maybe, is there any way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried to use UNet with Estimators API, but it is need to set eager_execution for using estimators:
import tensorflow as tf
tf.enable_eager_execution()
But after that using the follows becomes impossible:
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
model = Unet(classes=def_num_classes, activation='softmax')
because
RuntimeError:
get_session
is not available when TensorFlow is executing eagerly.Maybe, is there any way?
The text was updated successfully, but these errors were encountered: