Interface PrePostProcessor#
interface PrePostProcessor {
build(): PrePostProcessor;
input(idxOrTensorName?): InputInfo;
output(idxOrTensorName?): OutputInfo;
}
Defined in: addon.ts:603
Methods#
build
build(): PrePostProcessor
Returns: PrePostProcessor
Defined in: addon.ts:604
input
input(idxOrTensorName?): InputInfo
Parameters:
Optional
idxOrTensorName: string|number
Returns: InputInfo
Defined in: addon.ts:605
output
output(idxOrTensorName?): OutputInfo
Parameters:
Optional
idxOrTensorName: string|number
Returns: OutputInfo
Defined in: addon.ts:606