pyton
1import numpy as np 2import tensorflow as tf 3import os 4if tf.io.gfile.exists('./fenwicks'): 5 tf.io.gfile.rmtree('./fenwicks') 6!git clone -q https://github.com/fenwickslab/fenwicks.git 7import fenwicks as fw 8fw.colab_utils.setup_gcs()
上記のコードをgooglegolabに書くと下記のエラーがでました。これはどのようにして改善すべきでしょうか
cifar10を使いgooglecolabのtpuで動かすということをしています。
python
1--------------------------------------------------------------------------- 2ModuleNotFoundError Traceback (most recent call last) 3<ipython-input-13-e7475465a85a> in <module>() 4 5 tf.io.gfile.rmtree('./fenwicks') 5 6 get_ipython().system('git clone -q https://github.com/fenwickslab/fenwicks.git ') 6----> 7 import fenwicks as fw 7 8 fw.colab_utils.setup_gcs() 8 91 frames 10/content/fenwicks/data.py in <module>() 11 9 from . import io 12 10 13---> 11 from tensorflow.contrib.tpu.python.tpu import datasets as tpu_datasets 14 12 15 13 16 17ModuleNotFoundError: No module named 'tensorflow.contrib' 18 19--------------------------------------------------------------------------- 20NOTE: If your import is failing due to a missing package, you can 21manually install dependencies using either !pip or !apt. 22 23To view examples of installing some common dependencies, click the 24"Open Examples" button below. 25---------------------------------------------------------------------------
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/21 14:49
2020/12/21 15:30
2020/12/21 15:35
2020/12/21 15:35
2020/12/22 00:53 編集
2020/12/22 05:16
2020/12/22 09:12
2020/12/22 15:50