(x: Tensor|Tensor[]|
{[inputName: string]: Tensor})
| 63 | * Helper function for polymorphic input data: 3. "dict" of Tensor. |
| 64 | */ |
| 65 | export function isDataDict(x: Tensor|Tensor[]| |
| 66 | {[inputName: string]: Tensor}): boolean { |
| 67 | return !isDataTensor(x) && !isDataArray(x); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Normalizes inputs and targets provided by users. |
no test coverage detected
searching dependent graphs…