loadModelFromBytes abstract method

Future<ExecuTorchModel> loadModelFromBytes(
  1. Uint8List modelBytes
)

Load an ExecuTorch model from bytes

modelBytes should contain the raw .pte model data. This is useful for loading models downloaded from network or generated dynamically.

Implementation

Future<ExecuTorchModel> loadModelFromBytes(Uint8List modelBytes);