googlecolab上で下記のプログラムを実行しました。
!pip install tensorflow==1.15.0 import numpy as np import tensorflow as tf import os if tf.io.gfile.exists('./fenwicks'): tf.io.gfile.rmtree('./fenwicks') !git clone -q https://github.com/fenwickslab/fenwicks.git import fenwicks as fw fw.colab_utils.setup_gcs()
すると下記のエラーが出ました。これを改善したいのでご教示いただけたら幸いです
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-3-2971c0dc98c7> in <module>() 7 get_ipython().system('git clone -q https://github.com/fenwickslab/fenwicks.git ') 8 get_ipython().magic('tensorflow_version 1.x') ----> 9 import fenwicks as fw 10 fw.colab_utils.setup_gcs() 1 frames /content/fenwicks/vision/models/__init__.py in <module>() 3 from tensorflow.python.keras import engine as keras_engine 4 ----> 5 keras_applications.set_keras_submodules(backend=tf.keras.backend, layers=tf.keras.layers, models=tf.keras.models, 6 utils=tf.keras.utils, engine=keras_engine) AttributeError: module 'keras_applications' has no attribute 'set_keras_submodules'
自分で解決する努力はしないのでしょうか。
調べたこと、試したことを提示しましょう。
Errorが出たら他人任せで、言われたことにも反論だけして証明しないのはいかがなものかと。
あなたの回答
tips
プレビュー