質問編集履歴
1
model.summery追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -24,6 +24,24 @@
|
|
24
24
|
history = model.fit(train_x, train_y, epochs=100, batch_size=MINIBATCH_SIZE)
|
25
25
|
```
|
26
26
|
|
27
|
+
- `model.summary()`の結果
|
28
|
+
```
|
29
|
+
_________________________________________________________________
|
30
|
+
Layer (type) Output Shape Param #
|
31
|
+
=================================================================
|
32
|
+
input_1 (InputLayer) (None, 8, 8) 0
|
33
|
+
_________________________________________________________________
|
34
|
+
reshape_1 (Reshape) (None, 8, 8, 1) 0
|
35
|
+
_________________________________________________________________
|
36
|
+
conv2d_1 (Conv2D) (None, 8, 8, 50) 500
|
37
|
+
=================================================================
|
38
|
+
Total params: 500
|
39
|
+
Trainable params: 500
|
40
|
+
Non-trainable params: 0
|
41
|
+
_________________________________________________________________
|
42
|
+
None
|
43
|
+
```
|
44
|
+
|
27
45
|
### 試したこと
|
28
46
|
|
29
47
|
入力のReshapeを色々試みましたがだめでした
|