Reputation: 183
There is api function in tensorflow,string_input_producer function, tf.train.string_input_producer(string_tensor, num_epochs=None, shuffle=True, seed=None, capacity=32, name=None) what does eporchs means here?Is it the same meaning as tranning in eporch?
Upvotes: 2
Views: 745
Reputation: 8622
See https://github.com/davidsandberg/facenet/issues/69 , you have to unexpectedly call:
tf.initialize_local_variables().run()
... then it will work...
Upvotes: 0
Reputation: 729
epochs means the number of iteration over train data to learn it better.
and considering to your error it's not related to this input. it's about your file. maybe it cant find the proper file to read.
edit after seeing your code:
you never initialized your variables. initialize them with sess.initialize_all_variables()
Upvotes: 0