Return the graph members of `op_input_list`, or the current graph.
(op_input_list)
| 428 | |
| 429 | |
| 430 | def _current_graph(op_input_list): |
| 431 | """Return the graph members of `op_input_list`, or the current graph.""" |
| 432 | return ops._get_graph_from_inputs(op_input_list) |
| 433 | |
| 434 | |
| 435 | def _get_session(op_input_list=()): |