https://qiita.com/takahiro_itazuri/items/d2bea1c643d7cca11352#comment-a59cd26161ee56ea1220
この記事のプログラムを実行するときに、
python
1from google.colab import drive 2drive.mount('/content/drive') 3 4import sys 5import numpy as np 6import ActivationFunction as AF 7from PIL import Image 8 9sys.path.append('/content/drive/My Drive')
とすると、
4 import sys 5 import numpy as np
----> 6 import ActivationFunction as AF
7 from PIL import Image
8
ModuleNotFoundError: No module named 'ActivationFunction'
というエラーが生じる時と生じない時があり、違いがよく分かりません。
あなたの回答
tips
プレビュー