I modify the Inception V3 network (delete some layer modules), and create 6 classes train data, 1 image per class. When I execute training, I get the error
tensorflow.python.framework.errors_impl.FailedPreconditionError: Attempting to use uninitialized value InceptionV3/Mixed_6d/Branch_3/Conv2d_0b_1x1/weights [[Node: InceptionV3/Mixed_6d/Branch_3/Conv2d_0b_1x1/weights/read = Identity[T=DT_FLOAT, _class=["loc:/Branch_3/Conv2d_0
The train code:
import tensorflow as tf
import inception
import create_record
import numpy as np
import inception_utils
width, height = 299, 299
classes = 6
batch_size = 6
learning_rate = 0.01
max_step = 1
image_dir = '/home/xzy/test/images/'
path = '/home/xzy/test/train.tfrecords'
logs_dir = '/home/xzy/test/logs/'
# %% Training
def train():
filename_queue = tf.train.string_input_producer([path])
reader = tf.TFRecordReader()
_, serialized_example = reader.read(filename_queue)
features = tf.parse_single_example(serialized_example,
features={
'label': tf.FixedLenFeature([], tf.int64),
'img_raw': tf.FixedLenFeature([], tf.string),
})
image = tf.decode_raw(features['img_raw'], tf.uint8)
image = tf.reshape(image, [299, 299, 3])
label = tf.cast(features['label'], tf.int32)
image_batch, label_batch = tf.train.batch([image, label],
batch_size=6, num_threads=64, capacity=300)
label_batch = tf.one_hot(label_batch, depth=classes)
label_batch = tf.cast(label_batch, dtype=tf.int32)
label_batch = tf.reshape(label_batch, [batch_size, classes])
x = tf.placeholder(tf.float32, shape=[batch_size, width, height, 3])
y_ = tf.placeholder(tf.int16, shape=[batch_size, classes])
init_op = tf.initialize_all_variables()
logits = inception.inference(x, num_classes=classes)
loss = inception.loss(logits, y_)
my_global_step = tf.Variable(0, name='global_step', trainable=False)
optimizer = tf.train.GradientDescentOptimizer(learning_rate)
train_op = optimizer.minimize(loss, global_step=my_global_step)
saver = tf.train.Saver(tf.global_variables())
summary_op = tf.summary.merge_all()
with tf.Session() as sess:
sess.run(init_op)
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
train_summary_writer = tf.summary.FileWriter(logs_dir, sess.graph)
try:
for step in np.arange(max_step):
if coord.should_stop():
break
example, lab = sess.run([image_batch, label_batch])
example = tf.to_float(example)
_, train_loss = sess.run([train_op, loss], feed_dict={x: example.eval(), y_: lab})
if step == 0 or (step + 1) == max_step:
print ('Step: %d, loss: %.4f' % (step, train_loss))
summary_str = sess.run(summary_op)
train_summary_writer.add_summary(summary_str, step)
if step % 2000 == 0 or (step + 1) == max_step:
checkpoint_path = os.path.join(train_log_dir, 'model.ckpt')
saver.save(sess, checkpoint_path, global_step=step)
except tf.errors.OutOfRangeError:
print('Done training -- epoch limit reached')
coord.request_stop()
coord.join(threads)
sess.close()
train()
The error stack trace:
Traceback (most recent call last):
File "/home/xzy/PycharmProjects/network/train_inception.py", line 89, in train()
File "/home/xzy/PycharmProjects/network/train_inception.py", line 71, in train()
_, train_loss = sess.run([train_op, loss], feed_dict={x: example.eval(), y_: lab})File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 889, in run run_metadata_ptr)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 1120, in _run feed_dict_tensor, options, run_metadata)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 1317, in _do_run options, run_metadata)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 1336, in _do_call raise type(e)(node_def, op, message)
tensorflow.python.framework.errors_impl.FailedPreconditionError: Attempting to use uninitialized value InceptionV3/Mixed_6d/Branch_3/Conv2d_0b_1x1/weights [[Node: InceptionV3/Mixed_6d/Branch_3/Conv2d_0b_1x1/weights/read = Identity[T=DT_FLOAT, _class=["loc:@InceptionV3/Mixed_6d/Branch_3/Conv2d_0
What's wrong? could someone give me some ideas, thanks?
Tensorflow version: 1.5.0-dev20171206, python 2.7, Ubuntu 16.04.
init_op = tf.initialize_all_variables()
toinit_op = tf.global_variables_initializer()
. But i get similar error. Only difference of error tips changes bias uninitialized error from weight uninitialized error. The detail isAttempting to use uninitialized value InceptionV3/Mixed_6d/Branch_3/Conv2d_0b_1x1/biases
– zhiyou