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
# From https://www.tensorflow.org/guide/function#using_python_iterators_and_generatorsimporttensorflowastf@tf.functiondefbuggy_consume_next(iterator):
tf.print("Value:", next(iterator))
iterator=iter([1, 2, 3])
buggy_consume_next(iterator)
# This reuses the first value from the iterator, rather than consuming the next value.buggy_consume_next(iterator)
buggy_consume_next(iterator)
Above, iterator is over a Python container (a list here). Calling next() on the iterator moves its cursor over the container. Thus, that could be considered a Python side-effect, but only because the underlying container is a native Python container.
Regression
I believe is a type inferencing problem. The function call to iter() above will return a certain kind of iterator depending on its argument's type:
>>> type(iter([1,2,3]))
<class 'list_iterator'>
The text was updated successfully, but these errors were encountered:
Consider the following code:
Above,
iterator
is over a Python container (a list here). Callingnext()
on the iterator moves its cursor over the container. Thus, that could be considered a Python side-effect, but only because the underlying container is a native Python container.Regression
I believe is a type inferencing problem. The function call to
iter()
above will return a certain kind of iterator depending on its argument's type:The text was updated successfully, but these errors were encountered: