Run the specified ops in the default session.
(*args, **kwargs)
| 28 | |
| 29 | |
| 30 | def run(*args, **kwargs) -> Any: |
| 31 | """Run the specified ops in the default session.""" |
| 32 | assert_tf_initialized() |
| 33 | return tf.get_default_session().run(*args, **kwargs) |
| 34 | |
| 35 | |
| 36 | def is_tf_expression(x: Any) -> bool: |
no test coverage detected