Created
November 18, 2016 14:44
-
-
Save 3h4/50fe30f2b0ba4aaae9a9496bd65bf80c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Unpack columns | |
inputs_series = tf.unpack(batchX_placeholder, axis=1) | |
labels_series = tf.unpack(batchY_placeholder, axis=1) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@orian It seems that you have made a typo,
on the second line you wrote unstakc instead of unstack.