loadModel method

Future<void> loadModel(
  1. String modelName, {
  2. ModelConfig? config,
})

Loads the specified model and prepares it for inference.

See OnDeviceAi.loadModel for full documentation.

Implementation

Future<void> loadModel(String modelName, {ModelConfig? config}) {
  throw UnimplementedError('loadModel() has not been implemented.');
}