回答編集履歴

1

追記

2018/09/19 16:13

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -219,3 +219,21 @@
219
219
  60000/60000 [==============================] - 1s 11us/step - loss: 0.4600 - acc: 0.8953 - val_loss: 0.3564 - val_acc: 0.9146
220
220
 
221
221
  ```
222
+
223
+
224
+
225
+ また以下のコードで history の値も確認してみてください。
226
+
227
+
228
+
229
+ ```
230
+
231
+ from pprint import pprint
232
+
233
+ for key, value in history.history.items():
234
+
235
+ print('key', key)
236
+
237
+ pprint(value)
238
+
239
+ ```