4

Tensorflow 0.9 を使用しています。
モデルを保存して復元したい。トレーニング変数を保存して復元するために
追加するだけです。tf.train.Saver()

これは私のコードです:

import tensorflow as tf
import input_data
import os

checkpoint_dir='./ckpt_dir/'

mnist = input_data.read_data_sets("MNIST_data", one_hot = True)

x = tf.placeholder(tf.float32, shape = [None , 784])
y_ = tf.placeholder(tf.float32, [None, 10])

sess = tf.InteractiveSession()

def load_model(sess, saver, checkpoint_dir ):

ckpt = tf.train.get_checkpoint_state(checkpoint_dir)
if ckpt and ckpt.model_checkpoint_path:
print(ckpt.model_checkpoint_path)

saver.restore(sess, ckpt.model_checkpoint_path)

else:
if not os.path.exists(checkpoint_dir):
os.makedirs(checkpoint_dir)
sess.run(init)
return

def weight_variable(shape):
initial = tf.truncated_normal(shape, stddev = 0.1)
return tf.Variable(initial)

def bias_variable(shape):
initial = tf.constant(0.1, shape= shape)
return tf.Variable(initial)

def conv2d(x, W):
return tf.nn.conv2d(x, W, strides = [1, 1, 1, 1], padding = "SAME")

def max_pool_2x2(x):
return tf.nn.max_pool(x, ksize = [1, 2, 2, 1], strides = [1, 2, 2, 1],
padding = "SAME")

W_conv1 = weight_variable([5, 5, 1, 32])
b_conv1 = bias_variable([32])

x_image = tf.reshape(x, [-1, 28, 28, 1])

#
h_conv1 = tf.nn.relu(conv2d(x_image, W_conv1))
h_pool1 = max_pool_2x2(h_conv1)

#
W_conv2 = weight_variable([5, 5, 32, 64])
b_conv2 = bias_variable([64])

h_conv2 = tf.nn.relu(conv2d(h_pool1, W_conv2))
h_pool2 = max_pool_2x2(h_conv2)

W_fc1 = weight_variable([7764, 1024])
b_fc1 = bias_variable([1024])

h_pool2_flat = tf.reshape(h_pool2, [-1, 7764])
h_fc1 = tf.nn.relu(tf.matmul(h_pool2_flat, W_fc1) + b_fc1)

#
keep_prob = tf.placeholder(tf.float32)
h_fc1_drop = tf.nn.dropout(h_fc1, keep_prob)

#
W_fc2 = weight_variable([1024, 10])
b_fc2 = bias_variable([10])

y_conv = tf.nn.softmax(tf.matmul(h_fc1_drop,W_fc2) +b_fc2)

#
cross_entropy = tf.reduce_mean(-tf.reduce_sum(y_ * tf.log(y_conv), reduction_indices = [1]))
train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)

correct_prediction = tf.equal(tf.argmax(y_conv, 1), tf.argmax(y_, 1))
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))

init = tf.initialize_all_variables()

saver = tf.train.Saver()

load_model(sess, saver, checkpoint_dir)

for i in range(1):
batch = mnist.train.next_batch(50)
if i%10 == 0:
train_accuracy = accuracy.eval(feed_dict = {x : batch[0] , y_ : batch[1], keep_prob : 1.0})
print("step %d, training accuracy %g"%(i, train_accuracy))

train_step.run(feed_dict = {x : batch[0], y_ : batch[1], keep_prob : 0.5})
print("test accuracy %g"%accuracy.eval(feed_dict={
x: mnist.test.images, y_: mnist.test.labels, keep_prob: 1.0}))

tf.scalar_summary("accuracy", accuracy)

saver.save(sess,checkpoint_dir+'model.ckpt')

チェックポイントを復元すると:

saver.restore(sess, ckpt.model_checkpoint_path)

TensorFlow は次のエラーをスローします。

Traceback (most recent call last):
.
.
.
NotFoundError: Tensor name "global_step_7" not found in checkpoint files ./ckpt_dir/model.ckpt-0
[[Node: save_18/restore_slice_438 = RestoreSlicedt=DT_INT32, preferred_shard=-1, _device="/job:localhost/replica:0/task:0/cpu:0"]]
Caused by op 'save_18/restore_slice_438', defined at:
File "/home/m/anaconda3/lib/python3.5/site-packages/spyderlib/widgets/externalshell/start_ipython_kernel.py", line 205, in
ipythonkernel.start()
.
.
.
File "/home/m/anaconda3/lib/python3.5/site-packages/tensorflow/python/framework/ops.py", line 1224, in __init
raise TypeError("Control input must be an Operation, "

編集:

アナコンダを使用しています。「run filename.py」を使用してこのコードをspyderまたはipythonで初めて実行すると、モデルがチェックポイントに保存されますが、このコードを再度実行するとエラーがスローされます。

しかし、スパイダーまたは ipython を閉じると、もう一度開いてコードを実行すると、チェックポイントが正しく復元されます。

また、ターミナル「python filename.py」で実行すると、常に実行され、エラーはスローされません。

4

1 に答える 1

5

ファイルを再度実行するときは、呼び出しの開始時にデフォルトのグラフをリセットする必要があります。


デフォルトのグラフをリセットせず、次の行を 2 回実行した場合:

x = tf.Variable(1, name='x')
print x.name

最初xは が name"x:0"で、2 回目は が表示され"x_1:0"ます。これは混乱するものtf.train.Saverです:

  • x最初に名前を使用して値を保存します"x:0"
  • 次に、次の実行で の保存された値をロードしようとしましたxが、変数の名前は になりました"x_1:0"。そのため、セーバーはその名前で保存された値をロードしようとしました"x_1:0"が、それを見つけることができず、エラーが返されました。

ただし、 を使用して最初にデフォルト グラフをリセットできますtf.reset_default_graph()。これにより、空のグラフが作成され、デフォルトのグラフとして使用されます。
ここで、 の名前はx、これら 2 つのグラフで同じにすることができます。

# First run
tf.reset_default_graph()
x = tf.Variable(1, name='x')
print x.name  # prints 'x:0'

# Next run
tf.reset_default_graph()
x = tf.Variable(1, name='x')
print x.name  # prints 'x:0'

2 つの変数は、同じグラフに存在しなくなったため、同じ名前を持つことができます。


それを行う別の方法は、最初にグラフを作成し、それをデフォルトのグラフとして使用することです。

graph = tf.Graph()
with graph.as_default():
    x = tf.Variable(1, name='x')
于 2016-06-29T08:04:17.207 に答える