This returns a function outputting features and targets based on the dict
of numpy arrays. The dict features has the same keys as the x. The dict
targets has the same keys as the y if y is a dict.
numpy array object or dict of numpy array objects. If an array, the array
will be treated as a single feature.
y
numpy array object or dict of numpy array object. None if absent.
batch_size
Integer, size of batches to return.
num_epochs
Integer, number of epochs to iterate over data. If None will
run forever.
shuffle
Boolean, if True shuffles the queue. Avoid shuffle at prediction
time.
queue_capacity
Integer, size of queue to accumulate.
num_threads
Integer, number of threads used for reading and enqueueing. In
order to have predicted and repeatable order of reading and enqueueing,
such as in prediction and evaluation mode, num_threads should be 1.
Returns
Function, that has signature of ()->(dict of features, targets)
Raises
ValueError
if the shape of y mismatches the shape of values in x (i.e.,
values in x have same shape).
ValueError
if duplicate keys are in both x and y when y is a dict.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[],[]]