Skip to content

Instantly share code, notes, and snippets.

@3h4
Created November 18, 2016 14:44
Show Gist options
  • Save 3h4/50fe30f2b0ba4aaae9a9496bd65bf80c to your computer and use it in GitHub Desktop.
Save 3h4/50fe30f2b0ba4aaae9a9496bd65bf80c to your computer and use it in GitHub Desktop.
# Unpack columns
inputs_series = tf.unpack(batchX_placeholder, axis=1)
labels_series = tf.unpack(batchY_placeholder, axis=1)
@orian
Copy link

orian commented May 12, 2017

You may want to update it to:

 # Unpack columns
 inputs_series = tf.unstack(batchX_placeholder, axis=1)
 labels_series = tf.unstakc(batchY_placeholder, axis=1)

@jesperVB-dev
Copy link

@orian It seems that you have made a typo,
on the second line you wrote unstakc instead of unstack.

@nibori
Copy link

nibori commented May 29, 2018

Thanks @orian

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment