You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever there is something like the following in my file, the symbol tree does not contain any symbols defined after that:
somefunction(arg1,
"""arg2""")
This seems to happen only when using triple quotes after the first line of arguments in a function call. Unfortunately, tensorflow codes often contain a lot of such lines, e.g.:
tf.app.flags.DEFINE_string('train_dir', '/tmp/cifar10_train',
"""Directory where to write event logs """
"""and checkpoint.""")
tf.app.flags.DEFINE_integer('max_steps', 100000,
"""Number of batches to run.""")
tf.app.flags.DEFINE_boolean('log_device_placement', False,
"""Whether to log device placement.""")
tf.app.flags.DEFINE_integer('log_frequency', 10,
"""How often to log results to the console.""")
The text was updated successfully, but these errors were encountered:
Whenever there is something like the following in my file, the symbol tree does not contain any symbols defined after that:
This seems to happen only when using triple quotes after the first line of arguments in a function call. Unfortunately, tensorflow codes often contain a lot of such lines, e.g.:
The text was updated successfully, but these errors were encountered: