前提・実現したいこと
20200621_Python-exception__epochs_20__pre_trained_epochs_1-model.ckpt-378.data-00000-of-00001、
20200621_Python-exception__epochs_20__pre_trained_epochs_1-model.ckpt-378.index、
20200621_Python-exception__epochs_20__pre_trained_epochs_1-model.ckpt-378.meta
こちらの3つのファイルがあります。
こちらからモデルをどうやってロードすれば良いのか分からず困っています。
試したこと
import tensorflow as tf
import models
graph = tf.get_default_graph()
sess = tf.Session()
saver = tf.train.import_meta_graph('20200621_Python-exception__epochs_20__pre_trained_epochs_1-model.ckpt-378.data-00000-of-00001')
saver.restore(sess, 'model.ckpt')
あなたの回答
tips
プレビュー