createFromFile static method
Creates the model from a custom .tflite file on disk.
Implementation
static Future<FaceBlendshapesModel> createFromFile(
String modelPath, {
InterpreterOptions? options,
}) async {
final Interpreter itp = Interpreter.fromFile(
File(modelPath),
options: options,
);
return _finishInterpreter(itp);
}