質問編集履歴
2
タイトル変更
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
層を
|
1
|
+
ディープラーニングの層を追加したい
|
body
CHANGED
File without changes
|
1
programの一部が実際のと違っていました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -66,12 +66,12 @@
|
|
66
66
|
verbose=1)
|
67
67
|
|
68
68
|
model_json_str = model.to_json()
|
69
|
-
open('
|
69
|
+
open('anime_model.json', 'w').write(model_json_str)
|
70
|
-
model.save_weights('
|
70
|
+
model.save_weights('anime_model.h5')
|
71
71
|
|
72
72
|
score=model.evaluate(a_test, b_test, verbose=0)
|
73
73
|
print(score[1])
|
74
|
-
plot(model, to_file='
|
74
|
+
plot(model, to_file='model.png', show_shapes=True)
|
75
75
|
```
|
76
76
|
|
77
77
|
###試したこと
|