MCPcopy Index your code
hub / github.com/tflearn/tflearn / get

Method get

tflearn/data_flow.py:352–358  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

350 yield batchX, batchY
351
352 def get(self):
353 # get data from the queue
354 dequeue = self.queue.dequeue()
355 if self.multi_inputs:
356 return dequeue[:-1], dequeue[-1]
357 else:
358 return dequeue[0], dequeue[1]
359
360 def launch_threads(self, session, num_threads=1):
361 threads = []

Callers 15

generate_data_tensorFunction · 0.95
nextMethod · 0.80
fill_feed_dict_queueMethod · 0.80
clear_queuesMethod · 0.80
get_from_moduleFunction · 0.80
variableFunction · 0.80
preluFunction · 0.80
add_weights_regularizerFunction · 0.80
fully_connectedFunction · 0.80
activationFunction · 0.80
single_unitFunction · 0.80
highwayFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected