Could you give an example of the use of high-level API evaluators with placeholders and batches, as for the basic use:
for step in xrange(max_steps): batch_of_inputs,batch_of_targets= get_batch_from_disk(step)
How to do the same with the Estimator API? The evaluator takes batch_size, steps, input_fuc or feed_fun as an argument to the matching function (see Doc https://www.tensorflow.org/versions/master/api_docs/python/contrib.learn/estimators ), but itβs not clear to me how to implement a function that will load data in the form of a package, for example a disk?
source share