回答編集履歴

1

historyを保存する内容を追記しました。

2022/01/08 12:00

投稿

退会済みユーザー
test CHANGED
@@ -15,3 +15,55 @@
15
15
 
16
16
 
17
17
  ---
18
+
19
+
20
+
21
+ 追記です。
22
+
23
+
24
+
25
+ historyは辞書らしいですので、モデル自体とは違って(pickle.dumpも使える?)、次の引用にある方法で保存することができるみたいです。
26
+
27
+
28
+
29
+ > ```py
30
+
31
+ > history = model.fit(...)
32
+
33
+ > with open('/trainHistoryDict', 'wb') as file_pi:
34
+
35
+ > pickle.dump(history.history, file_pi)
36
+
37
+ > ```
38
+
39
+ >
40
+
41
+ > https://stackoverflow.com/questions/41061457/keras-how-to-save-the-training-history-attribute-of-the-history-object
42
+
43
+
44
+
45
+ .
46
+
47
+
48
+
49
+ > ```py
50
+
51
+ > history = model.fit(...)
52
+
53
+ > hist_df = pd.DataFrame(history.history)
54
+
55
+ > hist_df.to_csv('history.csv')
56
+
57
+ > ```
58
+
59
+ >
60
+
61
+ > https://cocoinit23.com/keras-model-fit-history-pandas-plot/
62
+
63
+
64
+
65
+ こちらも参考になりそうでしょうか。
66
+
67
+ 例: 損失の履歴を記録する
68
+
69
+ https://keras.io/ja/callbacks/#history