回答編集履歴
3
追記
test
CHANGED
@@ -9,3 +9,7 @@
|
|
9
9
|
```
|
10
10
|
|
11
11
|
に変えれば解決しました。
|
12
|
+
|
13
|
+
単純にページの内容をよく読んでいませんでした。
|
14
|
+
|
15
|
+
反省です。
|
2
コードの修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
saver = tf.train.import_meta_graph('/xxx/model.ckpt.meta')
|
6
6
|
|
7
|
-
saver.restore(sess,
|
7
|
+
saver.restore(sess, ckpt_pass)
|
8
8
|
|
9
9
|
```
|
10
10
|
|
1
修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
[ここ](https://teratail.com/questions/365281)で質問した内容でjbpb0さんに教えていただいた[リンク](https://ja.stackoverflow.com/questions/34844/tensor-flow%E3%81%AE%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E3%82%A2%E3%83%83%E3%83%97%E3%82%92%E8%A1%8C%E3%81%A3%E3%81%9F%E7%B5%90%E6%9E%9C-checkpoint%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%81%AE%E3%83%95%E3%82%A9%E3%83%BC%E3%83%9E%E3%83%83%E3%83%88%E3%81%8C%E5%A4%89%E6%9B%B4%E3%81%95%E3%82%8C%E3%81%A6%E3%81%84%E3%82%8B)に答えがありました。単純にckptの復元方法が間違えていることが分かりました。[utils](https://github.com/totti0223/deepstomata/blob/master/deepstomata/utils.py)の486行目の復元コードを```
|
1
|
+
[ここ](https://teratail.com/questions/365281)で質問した内容でjbpb0さんに教えていただいた[リンク](https://ja.stackoverflow.com/questions/34844/tensor-flow%E3%81%AE%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E3%82%A2%E3%83%83%E3%83%97%E3%82%92%E8%A1%8C%E3%81%A3%E3%81%9F%E7%B5%90%E6%9E%9C-checkpoint%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%81%AE%E3%83%95%E3%82%A9%E3%83%BC%E3%83%9E%E3%83%83%E3%83%88%E3%81%8C%E5%A4%89%E6%9B%B4%E3%81%95%E3%82%8C%E3%81%A6%E3%81%84%E3%82%8B)に答えがありました。単純にckptの復元方法が間違えていることが分かりました。[utils](https://github.com/totti0223/deepstomata/blob/master/deepstomata/utils.py)の486行目の復元コードを```
|
2
2
|
|
3
3
|
with tf.Session() as sess:
|
4
4
|
|