If you are reading files using string_input_producer, for example
filename_queue = tf.train.string_input_producer( files, num_epochs=num_epochs, shuffle=shuffle)
how can I get information about the time during the training (I want to show this information during the training) I tried below
run tf.get_default_graph().get_tensor_by_name('input_train/input_producer/limit_epochs/epochs:0')
will always be the same as the ultimate era num.
run tf.get_default_graph().get_tensor_by_name('input_train/input_producer/limit_epochs/CountUpTo:0')
will add 1 each time ..
Both cannot get the right era during training.
Another thing, if you retrain from the existing model, can I get the existing information about the era?
allen source share