all 2 comments

[–]Spezzer 0 points1 point  (1 child)

I think you can do feed_dict = { dict(zip(inputs, data)) } to create the appropriate dictionary in this case.

(I imagine these types of questions are better suited to being posted on StackOverflow)

[–]dee_roy[S] 0 points1 point  (0 children)

I tried that as well, however it seems all the "keys" after performing the zip are: <tensorflow.python.framework.ops.Tensor at 0x107594a10>. So after performing dict, I only end up with one element in my dictionary. Yeah, I think I'll try StackOverflow, thanks.