File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import { HfInference } from "@huggingface/inference";
48
48
const inference = new HfInference (HF_TOKEN );
49
49
await inference .imageSegmentation ({
50
50
data: await (await fetch (" https://picsum.photos/300/300" )).blob (),
51
- model: " facebook/detr-resnet-50 -panoptic" ,
51
+ model: " facebook/mask2former-swin-base-coco -panoptic" ,
52
52
});
53
53
```
54
54
Original file line number Diff line number Diff line change @@ -44,21 +44,21 @@ const taskData: TaskDataCustom = {
44
44
models : [
45
45
{
46
46
// TO DO: write description
47
- description : "Solid panoptic segmentation model trained on the COCO 2017 benchmark dataset ." ,
48
- id : "facebook/detr-resnet-50-panoptic " ,
47
+ description : "Solid semantic segmentation model fine-tuned on ADE20k, an important benchmark comprising 150 classes ." ,
48
+ id : "openmmlab/upernet-convnext-small " ,
49
49
} ,
50
50
{
51
51
description : "Background removal model." ,
52
52
id : "briaai/RMBG-1.4" ,
53
53
} ,
54
- {
55
- description : "Semantic segmentation model trained on ADE20k benchmark dataset with 512x512 resolution." ,
56
- id : "nvidia/segformer-b0-finetuned-ade-512-512" ,
57
- } ,
58
54
{
59
55
description : "A multipurpose image segmentation model for high resolution images." ,
60
56
id : "ZhengPeng7/BiRefNet" ,
61
57
} ,
58
+ {
59
+ description : "Semantic segmentation model fine-tuned on ADE20k at 512x512 resolution." ,
60
+ id : "nvidia/segformer-b0-finetuned-ade-512-512" ,
61
+ } ,
62
62
{
63
63
description : "Panoptic segmentation model trained COCO (common objects) dataset." ,
64
64
id : "facebook/mask2former-swin-large-coco-panoptic" ,
Original file line number Diff line number Diff line change @@ -43,15 +43,15 @@ const taskData: TaskDataCustom = {
43
43
] ,
44
44
models : [
45
45
{
46
- description : "Solid object detection model trained on the benchmark dataset COCO 2017." ,
46
+ description : "Solid object detection model pre- trained on the COCO 2017 dataset ." ,
47
47
id : "facebook/detr-resnet-50" ,
48
48
} ,
49
49
{
50
- description : "Strong object detection model trained on ImageNet-21k dataset ." ,
51
- id : "microsoft/beit-base-patch16-224-pt22k-ft22k " ,
50
+ description : "YOLOv10 is great model for real-time and accurate object detection ." ,
51
+ id : "jameslahm/yolov10x " ,
52
52
} ,
53
53
{
54
- description : "Fast and accurate object detection model trained on COCO dataset." ,
54
+ description : "RT-DETR is a fast and accurate object detection model pre- trained on the Object365 dataset." ,
55
55
id : "PekingU/rtdetr_r18vd_coco_o365" ,
56
56
} ,
57
57
] ,
You can’t perform that action at this time.
0 commit comments