This file contains 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
import tensorflow as tf | |
def test_func(x): | |
""" Builds a list of ints with length `x`. | |
""" | |
return [i for i in range(x)], | |
def main(): | |
t0 = tf.constant(0, dtype=tf.int64) |