質問編集履歴
1
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -132,7 +132,7 @@
|
|
132
132
|
|
133
133
|
img = img.convert("RGB")
|
134
134
|
|
135
|
-
img = img.resize((image_size, image_size ))
|
135
|
+
img = img.resize((image_size, image_size ) , 3 )
|
136
136
|
|
137
137
|
data = np.asarray(img)
|
138
138
|
|
@@ -198,7 +198,7 @@
|
|
198
198
|
|
199
199
|
img = img.resize((image_size, image_size )) を
|
200
200
|
|
201
|
-
img = img.resize((image_size, image_size ),3)
|
201
|
+
img = img.resize((image_size, image_size ),3) に変更して実行
|
202
202
|
|
203
203
|
|
204
204
|
|