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
Make compatible with TF2 (non eager) and latest versions of TFP . This will not affect to the API, only internal changes are required.
Some useful code:
# check TF version int(tf.__version__.split(".")[0]) >= 2 # check eager execution tf.executing_eagerly() # disable eager execution tf.compat.v1.disable_eager_execution() # get session tf.compat.v1.get_default_session()
The text was updated successfully, but these errors were encountered:
@rcabanasdepaz Hi, what is the development status for this? There doesn't seem to be any active branch with TF2 compatibility.
Sorry, something went wrong.
Hi Jonty, Unfortunately, we have not been been able to work in the development of this, but we hope to do it soon. We will let you know.
castelock
rcabanasdepaz
No branches or pull requests
Make compatible with TF2 (non eager) and latest versions of TFP . This will not affect to the API, only internal changes are required.
Some useful code:
The text was updated successfully, but these errors were encountered: