Module.extract constructor

Module.extract(
  1. VecVARP inputs,
  2. VecVARP outputs, {
  3. bool forTrain = false,
})

Implementation

factory Module.extract(VecVARP inputs, VecVARP outputs, {bool forTrain = false}) {
  return Module.fromPointer(C.mnn_module_extract(inputs.ptr, outputs.ptr, forTrain));
}