#前提・実現したいこと
GitHub WeaklyAnomalyDetection
上記サイト様を参考に、Pythonを用いて異常検知を行いたいと考えております。
#発生している問題・エラーメッセージ
Python
1--------------------------------------------------------------------------- 2ValueError Traceback (most recent call last) 3<ipython-input-5-b712389e95a8> in <module> 4 3 5 4 x_train = x_train.reshape(x_train.shape[0], 583, 438, 1) 6----> 5 x_test = x_test.reshape(x_test.shape[0], 583, 438, 1) 7 6 8 7 x_train = x_train.astype('float32') / 255 9 10ValueError: cannot reshape array of size 30642480 into shape (40,583,438,1)
#コード(自前のデータセット・異常検知のコード)
自前のデータセットのコード
Python
1import matplotlib.pyplot as plt 2import os 3import cv2 4import random 5import numpy as np 6 7DATADIR_train = '/Users/kuromaguro/desktop/弱教師あり学習/b_c_dataset/png/train' 8DATADIR_test = '/Users/kuromaguro/desktop/弱教師あり学習/b_c_dataset/png/test' 9CATEGORIES = ["bell", "call"] 10train_data = [] 11test_data = [] 12 13def load_bc_data(): 14 random.shuffle(train_data) # データをシャッフル 15 x_train = [] # 画像データ 16 y_train = [] # ラベル情 17 for class_num, category in enumerate(CATEGORIES): 18 path = os.path.join(DATADIR_train, category) 19 for image_name in os.listdir(path): 20 try: 21 img_array = cv2.imread(os.path.join(path, image_name),) # 画像読み込み 22 img_resize_array = cv2.resize(img_array, (583, 438)) # 画像のリサイズ 23 training_data.append([img_resize_array, class_num]) # 画像データ、ラベル情報を追加 24 except Exception as e: 25 pass 26 27 for class_num, category in enumerate(CATEGORIES): 28 path = os.path.join(DATADIR_test, category) 29 for image_name in os.listdir(path): 30 try: 31 img_array = cv2.imread(os.path.join(path, image_name),) # 画像読み込み 32 img_resize_array = cv2.resize(img_array, (583, 438)) # 画像のリサイズ 33 test_data.append([img_resize_array, class_num]) # 画像データ、ラベル情報を追加 34 except Exception as e: 35 pass 36 37 random.shuffle(test_data) # データをシャッフル 38 x_test = [] # 画像データ 39 y_test = [] # ラベル情報 40 41 # データセット作成(train) 42 for feature, label in train_data: 43 x_train.append(feature) 44 y_train.append(label) 45 46 # データセット作成(test) 47 for feature, label in test_data: 48 x_test.append(feature) 49 y_test.append(label) 50 51 # numpy配列に変換 52 x_train = np.array(x_train) 53 y_train = np.array(y_train) 54 55 x_test =np.array(x_test) 56 y_test =np.array(y_test) 57 58 # 以下のようにload_bc_data関数の戻り値として訓練データとテストデータを返す必要があります 59 return (x_train, y_train), (x_test, y_test)
異常検知のコード
Python
1import matplotlib.pyplot as plt 2import os 3import cv2 4import random 5 6from b_c_dataset import B_C_Dataset2 7 8import numpy as np 9from keras.utils import to_categorical 10from keras.preprocessing.image import ImageDataGenerator 11 12bell = 0#bellは0 13call = 1#callは1 14 15# dataset(ここでエラーが発生いたします) 16(x_train, y_train), (x_test, y_test) = B_C_Dataset2.load_bc_data() 17 18x_train = x_train.reshape(x_train.shape[0], 583, 438, 1) 19x_test = x_test.reshape(x_test.shape[0], 583, 438, 1) 20 21x_train = x_train.astype('float32') / 255 22x_test = x_test.astype('float32') / 255
異常検知のコードはサイト様の方にまだ続きがありますが、上記のところでエラーが発生してしまっているため省略をさせていただきます。
#試していること
現在、エラーメッセージについて調査を行なっていたところ以下に似たような質問をされている方がいらっしゃいました。
Python3 ValueError(cannot reshape array of size 451584 into shape (128,1176))の解決方法
自分もおそらくこの質問した方と同じところでつまづいていると思うのですが、値のどこをどのように変更すればいいのかがわからず、頭を抱えている状況です。また、以下のコードがどのような意味なのかを現在調査を行っております。
Python
1x_train = x_train.reshape(x_train.shape[0], 583, 438, 1) 2x_test = x_test.reshape(x_test.shape[0], 583, 438, 1) 3 4x_train = x_train.astype('float32') / 255 5x_test = x_test.astype('float32') / 255
#補足
自前のデータセットに用いている画像のサイズは583×438です。
使っているPCはmacOS Catalina バージョン10.15.5
Pythonのバージョンは3.6.5です
jupyter notebookを使用しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/14 19:53