Skip to content

Instantly share code, notes, and snippets.

@shubhampateliitm
Created February 19, 2019 07:13
Show Gist options
  • Save shubhampateliitm/c271351ac1c002a7aec4e1ff9edc19fe to your computer and use it in GitHub Desktop.
Save shubhampateliitm/c271351ac1c002a7aec4e1ff9edc19fe to your computer and use it in GitHub Desktop.
## creaing intList.
## This is a method that create IntList that feature seeks as input. value can
# take anything that is integer iterable.
# for example you can pass a set {3,4,6}, list [2,5,4], tuple (6,4,2).
# It is all good
intL = tf.train.Int64List(value=[3,4,5])
# Let see how it looks.
print(intL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment