(
name, op="UnSpecified", input=None, outputshape=None, dtype=None, attributes={}
)
| 73 | |
| 74 | |
| 75 | def node( |
| 76 | name, op="UnSpecified", input=None, outputshape=None, dtype=None, attributes={} |
| 77 | ): |
| 78 | return node_proto(name, op, input, outputshape, dtype, attributes) |
| 79 | |
| 80 | |
| 81 | def graph(node_list): |
no test coverage detected