Open indraastra opened 7 years ago
The n_epochs variable goes unused in dataset_utils.create_input_pipeline(), so the line
n_epochs
dataset_utils.create_input_pipeline()
producer = tf.train.string_input_producer( files, capacity=len(files))
should probably be
producer = tf.train.string_input_producer( files, num_epochs=n_epochs, capacity=len(files))
However, I also had to add a call to sess.run(tf.local_variables_initializer()) after making that change.
sess.run(tf.local_variables_initializer())
Good catch thanks filing an issue!
The
n_epochs
variable goes unused indataset_utils.create_input_pipeline()
, so the lineshould probably be
However, I also had to add a call to
sess.run(tf.local_variables_initializer())
after making that change.