I\'m trying to read data from CSV files to tensorflow,
https://www.tensorflow.org/versions/r0.7/how_tos/reading_data/index.html#filenames-shuffling-and-epoch-limits
def func()
return 1,2,3,4
b = func()
print b #(1, 2, 3, 4)
print [num for num in b] # [1, 2, 3, 4]
Hi its nothing to do with tensorflow its simple python need not define 1000 variable. tf.decode_csv returns a tuple.
No idea on database handling, I think u can use python and just input the data in the form of array to the tensorflow.
Hope this is helpful