teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

コードの書き方を訂正しました。

2021/12/09 08:28

投稿

fairlady
fairlady

スコア4

title CHANGED
File without changes
body CHANGED
@@ -104,4 +104,5 @@
104
104
  metrics=['accuracy'])
105
105
 
106
106
 
107
- history = model.fit(x_train, y_train, epochs=50, validation_data=(x_test,y_test))
107
+ history = model.fit(x_train, y_train, epochs=50, validation_data=(x_test,y_test))
108
+ ```

1

コードの種類を追記しました。

2021/12/09 08:28

投稿

fairlady
fairlady

スコア4

title CHANGED
File without changes
body CHANGED
@@ -14,6 +14,7 @@
14
14
  ```
15
15
 
16
16
  ### 該当のソースコード---
17
+ ```Python
17
18
 
18
19
  from keras.utils import np_utils
19
20
  from keras.models import Sequential