Returns the default summary step for the current thread. Returns: The step set by `tf.summary.experimental.set_step()` if one has been set, otherwise None.
()
| 145 | |
| 146 | @tf_export("summary.experimental.get_step", v1=[]) |
| 147 | def get_step(): |
| 148 | """Returns the default summary step for the current thread. |
| 149 | |
| 150 | Returns: |
| 151 | The step set by `tf.summary.experimental.set_step()` if one has been set, |
| 152 | otherwise None. |
| 153 | """ |
| 154 | return context.context().summary_step |
| 155 | |
| 156 | |
| 157 | @tf_export("summary.experimental.set_step", v1=[]) |
no test coverage detected