質問編集履歴
2
わかりやすく
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,13 +36,13 @@
|
|
36
36
|
|
37
37
|
for i in range(ch):
|
38
38
|
|
39
|
-
img_res = layer_output[x][:,:,i] #shape.output (7,7)が2048*4枚
|
39
|
+
img_res = layer_output[x][:,:,i] #shape.output (7,7)が8192(2048*4枚)
|
40
40
|
|
41
41
|
lst.append(img_res)
|
42
42
|
|
43
43
|
|
44
44
|
|
45
|
-
★
|
45
|
+
★ res_ = res + img_res を画像別に行いたいが、画像別に格納できていないため不可。
|
46
46
|
|
47
47
|
(注)resは不要と思いますが、目的に沿った意味がありますのでご了承ください。
|
48
48
|
|
1
リストを加味
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,6 +22,10 @@
|
|
22
22
|
|
23
23
|
```python
|
24
24
|
|
25
|
+
lst = []
|
26
|
+
|
27
|
+
|
28
|
+
|
25
29
|
for x in range(len(X)):
|
26
30
|
|
27
31
|
G, R, ch = layer_output[x].shape[0:]
|
@@ -33,6 +37,8 @@
|
|
33
37
|
for i in range(ch):
|
34
38
|
|
35
39
|
img_res = layer_output[x][:,:,i] #shape.output (7,7)が2048*4枚
|
40
|
+
|
41
|
+
lst.append(img_res)
|
36
42
|
|
37
43
|
|
38
44
|
|