-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
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,
);
}
Metadata
Metadata
Assignees
Labels
No labels