↧
Answer by Rick Lentz for Tensorflow: feeding data to the graph
Yes. If the file size is small (e.g. single line of text) there will likely be many small host to device transfers. Here is an example of using feed_dict with a custom fill_feed_dict function:...
View ArticleTensorflow: feeding data to the graph
I have written an algorithm using Tensorflow. The structure of my code is as follows: Read data from a csv and store it in a list of lists, where each list contains a single line from a csv. Use the...
View Article