-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
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
module 'tensorflow' has no attribute 'get_default_session' #163
Comments
I have the same issue. Is there any chance that you found something? |
I'm getting this issue as well. I tried with version Tensorflow 1.15 and version 2.3.. |
@jfkirk , great package and good work. It is very inuitive to use. Best regards |
Correct, the session handling. TF > 2.0 has changed. This attribute is not longer required.
|
I installed tensorrec in brand new Virtualenv and stuck here.
\lib\site-packages\tensorrec\session_management.py in get_session()
10 if _session is None:
---> 11 if tf.get_default_session() is not None:
12 _session = tf.get_default_session()
13 else:
AttributeError: module 'tensorflow' has no attribute 'get_default_session'
installed tensorflow 2.0.4 version
The text was updated successfully, but these errors were encountered: