Skip to content

Commit a0121cc

Browse files
committed
Apply suggestions from code review
Co-authored-by: Mateusz Sluszniak <56299341+msluszniak@users.noreply.github.com>
1 parent b365ad3 commit a0121cc

File tree

1 file changed

+8
-0
lines changed
  • apps/computer-vision/app/object_detection

1 file changed

+8
-0
lines changed

apps/computer-vision/app/object_detection/index.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import {
88
RF_DETR_NANO,
99
SSDLITE_320_MOBILENET_V3_LARGE,
1010
YOLO26N,
11+
YOLO26S,
12+
YOLO26M,
13+
YOLO26L,
14+
YOLO26X,
1115
ObjectDetectionModelSources,
1216
} from 'react-native-executorch';
1317
import { View, StyleSheet, Image } from 'react-native';
@@ -21,6 +25,10 @@ const MODELS: ModelOption<ObjectDetectionModelSources>[] = [
2125
{ label: 'RF-DeTR Nano', value: RF_DETR_NANO },
2226
{ label: 'SSDLite MobileNet', value: SSDLITE_320_MOBILENET_V3_LARGE },
2327
{ label: 'YOLO26N', value: YOLO26N },
28+
{ label: 'YOLO26S', value: YOLO26S },
29+
{ label: 'YOLO26M', value: YOLO26M },
30+
{ label: 'YOLO26L', value: YOLO26L },
31+
{ label: 'YOLO26X', value: YOLO26X },
2432
];
2533
import ErrorBanner from '../../components/ErrorBanner';
2634

0 commit comments

Comments
 (0)