Skip to content
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

「GANのモデルの学習」でのライブラリのインポートエラー #37

Closed
fu11ji26 opened this issue Aug 18, 2022 · 3 comments
Assignees
Labels
question Further information is requested

Comments

@fu11ji26
Copy link

ページ数

P.201

内容
tensorflowのバージョン変更のエラーは
%tensorflow_version 1.x
から
!pip install tensorflow-gpu==1.15.2
に変更して解消できましたが、その次のライブラリのインポートでエラーになりました


ImportError Traceback (most recent call last)
in
----> 1 from keras.models import Sequential
2 from keras.layers import Dense
3 from keras.layers import Reshape
4 from keras.layers.core import Activation
5 from keras.layers.normalization import BatchNormalization

3 frames
/usr/local/lib/python3.7/dist-packages/keras/backend.py in
37 from tensorflow.core.protobuf import config_pb2
38 from tensorflow.python.eager import context
---> 39 from tensorflow.python.eager.context import get_config
40 from tensorflow.python.framework import config
41 from keras import backend_config

ImportError: cannot import name 'get_config' from 'tensorflow.python.eager.context' (/usr/local/lib/python3.7/dist-packages/tensorflow_core/python/eager/context.py)

コメント

@fu11ji26 fu11ji26 added the question Further information is requested label Aug 18, 2022
@karaage0703
Copy link
Owner

karaage0703 commented Aug 19, 2022

@fu11ji26
貴重なフィードバックありがとうございます。

%tensorflow_version 1.x

を以下の通り置き換えることで正しく動作すること確認できました。

!pip install tensorflow-gpu==1.15.2
!pip install keras==2.3.1

書籍で少しだけ触れていますが、このコードは単体のKerasを使用するため、Google Colabの仕様変更に対応するため、特定のバージョンを指定してKerasをインストールする必要がありました。

Google Colabノートブックの方も修正いたしました。

https://colab.research.google.com/drive/1d3HMpKMnVsaligeJAEeN9BV7uEbV5QRJ?usp=sharing

@karaage0703
Copy link
Owner

issue closeしたいと思います。
もし問題ありましたら再オープンください。

@fu11ji26
Copy link
Author

無事実行できました。ありがとうございます!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants