(x: Tensor|Tensor[]|
{[inputName: string]: Tensor})
| 55 | * Helper function for polymorphic input data: 2. Array of Tensor. |
| 56 | */ |
| 57 | export function isDataArray(x: Tensor|Tensor[]| |
| 58 | {[inputName: string]: Tensor}): boolean { |
| 59 | return Array.isArray(x); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Helper function for polymorphic input data: 3. "dict" of Tensor. |
no outgoing calls
no test coverage detected
searching dependent graphs…