File tree Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Original file line number Diff line number Diff line change 1
1
export enum ModelComputerVision {
2
2
COCO_SSD = "Coco SSD" ,
3
- DETECTION = "Detection" ,
4
- SEGMENTATION = "Segmentation" ,
5
3
}
6
-
7
- export type ModelList = {
8
- title : ModelComputerVision
9
- url : string
10
- description : string
11
- labels ?: string
12
- }
13
-
14
- export const modelList : ModelList [ ] = [
15
- {
16
- title : ModelComputerVision . COCO_SSD ,
17
- url : "https://tfhub.dev/tensorflow/tfjs-model/ssd_mobilenet_v2/1/default/1" ,
18
- description :
19
- "Object detection model that aims to localize and identify multiple objects in a single image." ,
20
- labels : "basic" ,
21
- } ,
22
- {
23
- title : ModelComputerVision . DETECTION ,
24
- url : "https://huggingface.co/salim4n/yolov8n_web_model/resolve/main/model.json" ,
25
- description :
26
- "Object detection model that aims to localize and identify multiple objects in a single image." ,
27
- labels : "basic" ,
28
- } ,
29
- {
30
- title : ModelComputerVision . SEGMENTATION ,
31
- url : "https://huggingface.co/salim4n/yolov8n-segment-web/resolve/main/model.json" ,
32
- description :
33
- "Semantic segmentation model that assigns a label to each pixel in the image." ,
34
- labels : "basic" ,
35
- } ,
36
- ]
You can’t perform that action at this time.
0 commit comments