我試圖運行tensorflow圖來訓練模型並定期使用單獨的評估數據集進行評估。訓練數據和評估數據均使用排隊運動員來實施。tensorflow:使用隊列運行器有效地提供eval /火車數據
我目前的解決方案是在同一圖形中創建兩個輸入,並使用取決於is_training
佔位符的tf.cond
。我的問題是由下面的代碼高亮顯示:
import tensorflow as tf
from tensorflow.models.image.cifar10 import cifar10
from time import time
def get_train_inputs(is_training):
return cifar10.inputs(False)
def get_eval_inputs(is_training):
return cifar10.inputs(True)
def get_mixed_inputs(is_training):
train_inputs = get_train_inputs(None)
eval_inputs = get_eval_inputs(None)
return tf.cond(is_training, lambda: train_inputs, lambda: eval_inputs)
def time_inputs(inputs_fn, n_runs=10):
graph = tf.Graph()
with graph.as_default():
is_training = tf.placeholder(dtype=tf.bool, shape=(),
name='is_training')
images, labels = inputs_fn(is_training)
with tf.Session(graph=graph) as sess:
coordinator = tf.train.Coordinator()
threads = tf.train.start_queue_runners(sess=sess, coord=coordinator)
t = time()
for i in range(n_runs):
im, l = sess.run([images, labels], feed_dict={is_training: True})
dt = time() - t
coordinator.request_stop()
coordinator.join(threads)
return dt/n_runs
print('Train inputs: %.3f' % time_inputs(get_train_inputs))
print('Eval inputs: %.3f' % time_inputs(get_eval_inputs))
print('Mixed inputs: %.3f' % time_inputs(get_mixed_inputs))
我也不得不註釋掉image_summary
線tensorflow/models/image/cifar10/cifar10_inputs.py
133
。
這得到以下結果:
Train inputs: 0.055
Eval inputs: 0.050
Mixed inputs: 0.105
這似乎在混合情況下,兩個輸入端被讀取/解析,即使只有1被使用。有沒有辦法避免這種冗餘計算?還是有一種更好的方法來切換仍然利用隊列運行器設置的訓練/評估數據?
我試圖阻止,並加入線程後再次啓動隊列亞軍,但我不能得到那個工作。似乎隊列後關閉 – piotr