hey, because of budget consideration I'm forced to run two yolo models at the same time (instead of training one that combines them).
it it possible with flutterVision?
from what i've seen for some reason it only inference the second model loaded
Future<void> loadYoloModel() async {
await vision1.loadYoloModel(
labels: 'assets/labels1.txt',
modelPath: 'assets/model1.tflite',
modelVersion: "yolov5",
numThreads: 4,
useGpu: true,
);
await vision2.loadYoloModel(
labels: 'assets/labels2.txt',
modelPath: 'assets/model2.tflite',
modelVersion: "yolov5",
numThreads: 4,
useGpu: true,
);
}
hey, because of budget consideration I'm forced to run two yolo models at the same time (instead of training one that combines them).
it it possible with flutterVision?
from what i've seen for some reason it only inference the second model loaded