()
| 92 | } |
| 93 | |
| 94 | get outputs(): TensorInfo[] { |
| 95 | return this._outputs.map(node => { |
| 96 | return { |
| 97 | name: node.name, |
| 98 | shape: node.attrParams['shape'] ? |
| 99 | node.attrParams['shape'].value as number[] : |
| 100 | undefined, |
| 101 | dtype: node.attrParams['dtype'] ? |
| 102 | node.attrParams['dtype'].value as DataType : |
| 103 | undefined |
| 104 | }; |
| 105 | }); |
| 106 | } |
| 107 | |
| 108 | get inputNodes(): string[] { |
| 109 | return this._inputs.map(node => node.signatureKey || node.name); |
nothing calls this directly
no outgoing calls
no test coverage detected