I'm trying to load a TFLite model / it's labels into flutter but I keep getting a file not found error. Is it possibly a mistake in my code for loading the model:
Code:
loadModel() async{
String res = await Tflite.loadModel(
model: "lib\assets\image_classifier.tflite",
labels: "lib\assets\image_labels.txt",
);
}
File-Path:
Resource I'm using: https://pub.dev/packages/tflite
