@huggingface/tasks 0.19.35 → 0.19.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/commonjs/local-apps.d.ts +7 -0
  2. package/dist/commonjs/local-apps.d.ts.map +1 -1
  3. package/dist/commonjs/local-apps.js +31 -0
  4. package/dist/commonjs/tasks/any-to-any/data.js +3 -3
  5. package/dist/commonjs/tasks/image-segmentation/data.js +2 -2
  6. package/dist/commonjs/tasks/image-text-to-text/data.d.ts.map +1 -1
  7. package/dist/commonjs/tasks/image-text-to-text/data.js +10 -38
  8. package/dist/commonjs/tasks/image-to-3d/data.js +2 -2
  9. package/dist/commonjs/tasks/image-to-image/data.d.ts.map +1 -1
  10. package/dist/commonjs/tasks/image-to-image/data.js +13 -25
  11. package/dist/commonjs/tasks/image-to-text/data.d.ts.map +1 -1
  12. package/dist/commonjs/tasks/image-to-text/data.js +10 -30
  13. package/dist/commonjs/tasks/keypoint-detection/data.js +5 -5
  14. package/dist/commonjs/tasks/object-detection/data.js +2 -2
  15. package/dist/commonjs/tasks/text-generation/data.d.ts.map +1 -1
  16. package/dist/commonjs/tasks/text-generation/data.js +14 -10
  17. package/dist/commonjs/tasks/text-to-image/data.js +6 -6
  18. package/dist/commonjs/tasks/text-to-speech/data.d.ts.map +1 -1
  19. package/dist/commonjs/tasks/text-to-speech/data.js +10 -14
  20. package/dist/commonjs/tasks/text-to-video/data.js +3 -3
  21. package/dist/commonjs/tasks/visual-document-retrieval/data.d.ts.map +1 -1
  22. package/dist/commonjs/tasks/visual-document-retrieval/data.js +6 -2
  23. package/dist/commonjs/tasks/zero-shot-object-detection/data.js +4 -4
  24. package/dist/esm/local-apps.d.ts +7 -0
  25. package/dist/esm/local-apps.d.ts.map +1 -1
  26. package/dist/esm/local-apps.js +31 -0
  27. package/dist/esm/tasks/any-to-any/data.js +3 -3
  28. package/dist/esm/tasks/image-segmentation/data.js +2 -2
  29. package/dist/esm/tasks/image-text-to-text/data.d.ts.map +1 -1
  30. package/dist/esm/tasks/image-text-to-text/data.js +10 -38
  31. package/dist/esm/tasks/image-to-3d/data.js +2 -2
  32. package/dist/esm/tasks/image-to-image/data.d.ts.map +1 -1
  33. package/dist/esm/tasks/image-to-image/data.js +13 -25
  34. package/dist/esm/tasks/image-to-text/data.d.ts.map +1 -1
  35. package/dist/esm/tasks/image-to-text/data.js +10 -30
  36. package/dist/esm/tasks/keypoint-detection/data.js +5 -5
  37. package/dist/esm/tasks/object-detection/data.js +2 -2
  38. package/dist/esm/tasks/text-generation/data.d.ts.map +1 -1
  39. package/dist/esm/tasks/text-generation/data.js +14 -10
  40. package/dist/esm/tasks/text-to-image/data.js +6 -6
  41. package/dist/esm/tasks/text-to-speech/data.d.ts.map +1 -1
  42. package/dist/esm/tasks/text-to-speech/data.js +10 -14
  43. package/dist/esm/tasks/text-to-video/data.js +3 -3
  44. package/dist/esm/tasks/visual-document-retrieval/data.d.ts.map +1 -1
  45. package/dist/esm/tasks/visual-document-retrieval/data.js +6 -2
  46. package/dist/esm/tasks/zero-shot-object-detection/data.js +4 -4
  47. package/package.json +1 -1
  48. package/src/local-apps.ts +32 -0
  49. package/src/tasks/any-to-any/data.ts +3 -3
  50. package/src/tasks/image-segmentation/data.ts +2 -2
  51. package/src/tasks/image-text-to-text/data.ts +10 -38
  52. package/src/tasks/image-to-3d/data.ts +2 -2
  53. package/src/tasks/image-to-image/data.ts +13 -25
  54. package/src/tasks/image-to-text/data.ts +10 -30
  55. package/src/tasks/keypoint-detection/data.ts +5 -5
  56. package/src/tasks/object-detection/data.ts +2 -2
  57. package/src/tasks/text-generation/data.ts +14 -10
  58. package/src/tasks/text-to-image/data.ts +6 -6
  59. package/src/tasks/text-to-speech/data.ts +10 -14
  60. package/src/tasks/text-to-video/data.ts +3 -3
  61. package/src/tasks/visual-document-retrieval/data.ts +7 -2
  62. package/src/tasks/zero-shot-object-detection/data.ts +4 -4
@@ -44,8 +44,8 @@ const taskData: TaskDataCustom = {
44
44
  models: [
45
45
  {
46
46
  // TO DO: write description
47
- description: "Solid semantic segmentation model trained on ADE20k.",
48
- id: "openmmlab/upernet-convnext-small",
47
+ description: "Solid panoptic segmentation model trained on COCO.",
48
+ id: "tue-mps/coco_panoptic_eomt_large_640",
49
49
  },
50
50
  {
51
51
  description: "Background removal model.",
@@ -47,33 +47,21 @@ const taskData: TaskDataCustom = {
47
47
  id: "HuggingFaceTB/SmolVLM-Instruct",
48
48
  },
49
49
  {
50
- description: "A screenshot understanding model used to control computers.",
51
- id: "microsoft/OmniParser-v2.0",
50
+ description: "Cutting-edge reasoning vision language model.",
51
+ id: "zai-org/GLM-4.5V",
52
52
  },
53
53
  {
54
- description: "Cutting-edge vision language model.",
55
- id: "allenai/Molmo-7B-D-0924",
54
+ description: "Cutting-edge small vision language model to convert documents to text.",
55
+ id: "rednote-hilab/dots.ocr",
56
56
  },
57
57
  {
58
58
  description: "Small yet powerful model.",
59
- id: "vikhyatk/moondream2",
60
- },
61
- {
62
- description: "Strong image-text-to-text model.",
63
- id: "Qwen/Qwen2.5-VL-7B-Instruct",
59
+ id: "Qwen/Qwen2.5-VL-3B-Instruct",
64
60
  },
65
61
  {
66
62
  description: "Image-text-to-text model with agentic capabilities.",
67
63
  id: "microsoft/Magma-8B",
68
64
  },
69
- {
70
- description: "Strong image-text-to-text model focused on documents.",
71
- id: "allenai/olmOCR-7B-0225-preview",
72
- },
73
- {
74
- description: "Small yet strong image-text-to-text model.",
75
- id: "ibm-granite/granite-vision-3.2-2b",
76
- },
77
65
  ],
78
66
  spaces: [
79
67
  {
@@ -81,33 +69,17 @@ const taskData: TaskDataCustom = {
81
69
  id: "opencompass/open_vlm_leaderboard",
82
70
  },
83
71
  {
84
- description: "Vision language models arena, where models are ranked by votes of users.",
85
- id: "WildVision/vision-arena",
86
- },
87
- {
88
- description: "Powerful vision-language model assistant.",
89
- id: "akhaliq/Molmo-7B-D-0924",
90
- },
91
- {
92
- description: "Powerful vision language assistant that can understand multiple images.",
93
- id: "HuggingFaceTB/SmolVLM2",
94
- },
95
- {
96
- description: "An application for chatting with an image-text-to-text model.",
97
- id: "GanymedeNil/Qwen2-VL-7B",
98
- },
99
- {
100
- description: "An application that parses screenshots into actions.",
101
- id: "showlab/ShowUI",
72
+ description: "An application that compares object detection capabilities of different vision language models.",
73
+ id: "sergiopaniego/vlm_object_understanding",
102
74
  },
103
75
  {
104
- description: "An application that detects gaze.",
105
- id: "moondream/gaze-demo",
76
+ description: "An application to compare different OCR models.",
77
+ id: "prithivMLmods/Multimodal-OCR",
106
78
  },
107
79
  ],
108
80
  summary:
109
81
  "Image-text-to-text models take in an image and text prompt and output text. These models are also called vision-language models, or VLMs. The difference from image-to-text models is that these models take an additional text input, not restricting the model to certain use cases like image captioning, and may also be trained to accept a conversation as input.",
110
- widgetModels: ["Qwen/Qwen2-VL-7B-Instruct"],
82
+ widgetModels: ["zai-org/GLM-4.5V"],
111
83
  youtubeId: "IoGaGfU1CIg",
112
84
  };
113
85
 
@@ -33,8 +33,8 @@ const taskData: TaskDataCustom = {
33
33
  id: "TencentARC/InstantMesh",
34
34
  },
35
35
  {
36
- description: "Fast image-to-3D mesh model by StabilityAI",
37
- id: "stabilityai/TripoSR",
36
+ description: "3D world generation model.",
37
+ id: "tencent/HunyuanWorld-1",
38
38
  },
39
39
  {
40
40
  description: "A scaled up image-to-3D mesh model derived from TripoSR.",
@@ -53,16 +53,16 @@ const taskData: TaskDataCustom = {
53
53
  id: "fal/AuraSR-v2",
54
54
  },
55
55
  {
56
- description: "A model that increases the resolution of an image.",
57
- id: "keras-io/super-resolution",
56
+ description: "Powerful image editing model.",
57
+ id: "black-forest-labs/FLUX.1-Kontext-dev",
58
58
  },
59
59
  {
60
- description: "A model for applying edits to images through image controls.",
61
- id: "Yuanshi/OminiControl",
60
+ description: "Virtual try-on model.",
61
+ id: "yisol/IDM-VTON",
62
62
  },
63
63
  {
64
- description: "A model that generates images based on segments in the input image and the text prompt.",
65
- id: "mfidabel/controlnet-segment-anything",
64
+ description: "Image re-lighting model.",
65
+ id: "kontext-community/relighting-kontext-dev-lora-v3",
66
66
  },
67
67
  {
68
68
  description: "Strong model for inpainting and outpainting.",
@@ -75,33 +75,21 @@ const taskData: TaskDataCustom = {
75
75
  ],
76
76
  spaces: [
77
77
  {
78
- description: "Image enhancer application for low light.",
79
- id: "keras-io/low-light-image-enhancement",
78
+ description: "Image editing application.",
79
+ id: "black-forest-labs/FLUX.1-Kontext-Dev",
80
80
  },
81
81
  {
82
- description: "Style transfer application.",
83
- id: "keras-io/neural-style-transfer",
82
+ description: "Image relighting application.",
83
+ id: "lllyasviel/iclight-v2-vary",
84
84
  },
85
85
  {
86
- description: "An application that generates images based on segment control.",
87
- id: "mfidabel/controlnet-segment-anything",
88
- },
89
- {
90
- description: "Image generation application that takes image control and text prompt.",
91
- id: "hysts/ControlNet",
92
- },
93
- {
94
- description: "Colorize any image using this app.",
95
- id: "ioclab/brightness-controlnet",
96
- },
97
- {
98
- description: "Edit images with instructions.",
99
- id: "timbrooks/instruct-pix2pix",
86
+ description: "An application for image upscaling.",
87
+ id: "jasperai/Flux.1-dev-Controlnet-Upscaler",
100
88
  },
101
89
  ],
102
90
  summary:
103
91
  "Image-to-image is the task of transforming an input image through a variety of possible manipulations and enhancements, such as super-resolution, image inpainting, colorization, and more.",
104
- widgetModels: ["stabilityai/stable-diffusion-2-inpainting"],
92
+ widgetModels: ["Qwen/Qwen-Image"],
105
93
  youtubeId: "",
106
94
  };
107
95
 
@@ -31,46 +31,26 @@ const taskData: TaskDataCustom = {
31
31
  metrics: [],
32
32
  models: [
33
33
  {
34
- description: "A robust image captioning model.",
35
- id: "Salesforce/blip2-opt-2.7b",
34
+ description: "Strong OCR model.",
35
+ id: "allenai/olmOCR-7B-0725",
36
36
  },
37
37
  {
38
- description: "A powerful and accurate image-to-text model that can also localize concepts in images.",
39
- id: "microsoft/kosmos-2-patch14-224",
40
- },
41
- {
42
- description: "A strong optical character recognition model.",
43
- id: "facebook/nougat-base",
44
- },
45
- {
46
- description: "A powerful model that lets you have a conversation with the image.",
47
- id: "llava-hf/llava-1.5-7b-hf",
38
+ description: "Powerful image captioning model.",
39
+ id: "fancyfeast/llama-joycaption-beta-one-hf-llava",
48
40
  },
49
41
  ],
50
42
  spaces: [
51
43
  {
52
- description: "An application that compares various image captioning models.",
53
- id: "nielsr/comparing-captioning-models",
54
- },
55
- {
56
- description: "A robust image captioning application.",
57
- id: "flax-community/image-captioning",
58
- },
59
- {
60
- description: "An application that transcribes handwritings into text.",
61
- id: "nielsr/TrOCR-handwritten",
62
- },
63
- {
64
- description: "An application that can caption images and answer questions about a given image.",
65
- id: "Salesforce/BLIP",
44
+ description: "SVG generator app from images.",
45
+ id: "multimodalart/OmniSVG-3B",
66
46
  },
67
47
  {
68
- description: "An application that can caption images and answer questions with a conversational agent.",
69
- id: "Salesforce/BLIP2",
48
+ description: "An application that converts documents to markdown.",
49
+ id: "numind/NuMarkdown-8B-Thinking",
70
50
  },
71
51
  {
72
- description: "An image captioning application that demonstrates the effect of noise on captions.",
73
- id: "johko/capdec-image-captioning",
52
+ description: "An application that can caption images.",
53
+ id: "fancyfeast/joy-caption-beta-one",
74
54
  },
75
55
  ],
76
56
  summary:
@@ -33,11 +33,11 @@ const taskData: TaskDataCustom = {
33
33
  },
34
34
  {
35
35
  description: "Strong keypoint detection model used to detect human pose.",
36
- id: "facebook/sapiens-pose-1b",
36
+ id: "qualcomm/RTMPose-Body2d",
37
37
  },
38
38
  {
39
- description: "Powerful keypoint detection model used to detect human pose.",
40
- id: "usyd-community/vitpose-plus-base",
39
+ description: "Powerful keypoint matching model.",
40
+ id: "ETH-CVG/lightglue_disk",
41
41
  },
42
42
  ],
43
43
  spaces: [
@@ -46,8 +46,8 @@ const taskData: TaskDataCustom = {
46
46
  id: "datasciencedojo/Hand-Keypoint-Detection-Realtime",
47
47
  },
48
48
  {
49
- description: "An application to try a universal keypoint detection model.",
50
- id: "merve/SuperPoint",
49
+ description: "An application for keypoint detection and matching.",
50
+ id: "ETH-CVG/LightGlue",
51
51
  },
52
52
  ],
53
53
  summary: "Keypoint detection is the task of identifying meaningful distinctive points or features in an image.",
@@ -61,8 +61,8 @@ const taskData: TaskDataCustom = {
61
61
  ],
62
62
  spaces: [
63
63
  {
64
- description: "Leaderboard to compare various object detection models across several metrics.",
65
- id: "hf-vision/object_detection_leaderboard",
64
+ description: "Real-time object detection demo.",
65
+ id: "Roboflow/RF-DETR",
66
66
  },
67
67
  {
68
68
  description: "An application that contains various object detection models to try from.",
@@ -63,20 +63,20 @@ const taskData: TaskDataCustom = {
63
63
  models: [
64
64
  { description: "A text-generation model trained to follow instructions.", id: "google/gemma-2-2b-it" },
65
65
  {
66
- description: "Smaller variant of one of the most powerful models.",
67
- id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
66
+ description: "Powerful text generation model for coding.",
67
+ id: "Qwen/Qwen3-Coder-480B-A35B-Instruct",
68
68
  },
69
69
  {
70
- description: "Very powerful text generation model trained to follow instructions.",
71
- id: "meta-llama/Meta-Llama-3.1-8B-Instruct",
70
+ description: "Great text generation model with top-notch tool calling capabilities.",
71
+ id: "openai/gpt-oss-120b",
72
72
  },
73
73
  {
74
- description: "Powerful text generation model by Microsoft.",
75
- id: "microsoft/phi-4",
74
+ description: "Powerful text generation model.",
75
+ id: "zai-org/GLM-4.5",
76
76
  },
77
77
  {
78
- description: "A very powerful model with reasoning capabilities.",
79
- id: "simplescaling/s1.1-32B",
78
+ description: "A powerful small model with reasoning capabilities.",
79
+ id: "Qwen/Qwen3-4B-Thinking-2507",
80
80
  },
81
81
  {
82
82
  description: "Strong conversational model that supports very long instructions.",
@@ -93,8 +93,12 @@ const taskData: TaskDataCustom = {
93
93
  ],
94
94
  spaces: [
95
95
  {
96
- description: "A leaderboard to compare different open-source text generation models based on various benchmarks.",
97
- id: "open-llm-leaderboard/open_llm_leaderboard",
96
+ description: "An application that writes and executes code from text instructions and supports many models.",
97
+ id: "akhaliq/anycoder",
98
+ },
99
+ {
100
+ description: "An application that builds websites from natural language prompts.",
101
+ id: "enzostvs/deepsite",
98
102
  },
99
103
  {
100
104
  description: "A leaderboard for comparing chain-of-thought performance of models.",
@@ -50,19 +50,19 @@ const taskData: TaskDataCustom = {
50
50
  models: [
51
51
  {
52
52
  description: "One of the most powerful image generation models that can generate realistic outputs.",
53
- id: "black-forest-labs/FLUX.1-dev",
53
+ id: "black-forest-labs/FLUX.1-Krea-dev",
54
54
  },
55
55
  {
56
- description: "A powerful yet fast image generation model.",
57
- id: "latent-consistency/lcm-lora-sdxl",
56
+ description: "A powerful image generation model.",
57
+ id: "Qwen/Qwen-Image",
58
58
  },
59
59
  {
60
- description: "Text-to-image model for photorealistic generation.",
61
- id: "Kwai-Kolors/Kolors",
60
+ description: "Powerful and fast image generation model.",
61
+ id: "ByteDance/SDXL-Lightning",
62
62
  },
63
63
  {
64
64
  description: "A powerful text-to-image model.",
65
- id: "stabilityai/stable-diffusion-3-medium-diffusers",
65
+ id: "ByteDance/Hyper-SD",
66
66
  },
67
67
  ],
68
68
  spaces: [
@@ -39,24 +39,20 @@ const taskData: TaskDataCustom = {
39
39
  ],
40
40
  models: [
41
41
  {
42
- description: "A prompt based, powerful TTS model.",
43
- id: "parler-tts/parler-tts-large-v1",
42
+ description: "Small yet powerful TTS model.",
43
+ id: "KittenML/kitten-tts-nano-0.1",
44
44
  },
45
45
  {
46
- description: "A powerful TTS model that supports English and Chinese.",
47
- id: "SWivid/F5-TTS",
46
+ description: "Bleeding edge TTS model.",
47
+ id: "ResembleAI/chatterbox",
48
48
  },
49
49
  {
50
50
  description: "A massively multi-lingual TTS model.",
51
51
  id: "fishaudio/fish-speech-1.5",
52
52
  },
53
53
  {
54
- description: "A powerful TTS model.",
55
- id: "OuteAI/OuteTTS-0.1-350M",
56
- },
57
- {
58
- description: "Small yet powerful TTS model.",
59
- id: "hexgrad/Kokoro-82M",
54
+ description: "A text-to-dialogue model.",
55
+ id: "nari-labs/Dia-1.6B-0626",
60
56
  },
61
57
  ],
62
58
  spaces: [
@@ -69,12 +65,12 @@ const taskData: TaskDataCustom = {
69
65
  id: "fishaudio/fish-speech-1",
70
66
  },
71
67
  {
72
- description: "An application that generates speech in different styles in English and Chinese.",
73
- id: "mrfakename/E2-F5-TTS",
68
+ description: "Performant TTS application.",
69
+ id: "ResembleAI/Chatterbox",
74
70
  },
75
71
  {
76
- description: "An application that synthesizes emotional speech for diverse speaker prompts.",
77
- id: "parler-tts/parler-tts-expresso",
72
+ description: "An application to compare different TTS models.",
73
+ id: "TTS-AGI/TTS-Arena-V2",
78
74
  },
79
75
  {
80
76
  description: "An application that generates podcast episodes.",
@@ -79,8 +79,8 @@ const taskData: TaskDataCustom = {
79
79
  id: "nvidia/Cosmos-1.0-Diffusion-7B-Text2World",
80
80
  },
81
81
  {
82
- description: "A robust model for video generation.",
83
- id: "Wan-AI/Wan2.1-T2V-1.3B",
82
+ description: "Very fast model for video generation.",
83
+ id: "Lightricks/LTX-Video-0.9.8-13B-distilled",
84
84
  },
85
85
  ],
86
86
  spaces: [
@@ -99,7 +99,7 @@ const taskData: TaskDataCustom = {
99
99
  ],
100
100
  summary:
101
101
  "Text-to-video models can be used in any application that requires generating consistent sequence of images from text. ",
102
- widgetModels: ["Wan-AI/Wan2.1-T2V-14B"],
102
+ widgetModels: ["Wan-AI/Wan2.2-TI2V-5B"],
103
103
  youtubeId: undefined,
104
104
  };
105
105
 
@@ -52,8 +52,9 @@ const taskData: TaskDataCustom = {
52
52
  id: "vidore/colqwen2-v1.0",
53
53
  },
54
54
  {
55
- description: "Very fast and efficient visual document retrieval model that works on five languages.",
56
- id: "marco/mcdse-2b-v1",
55
+ description:
56
+ "Very fast and efficient visual document retrieval model that can also take in other modalities like audio.",
57
+ id: "Tevatron/OmniEmbed-v0.1",
57
58
  },
58
59
  ],
59
60
  spaces: [
@@ -61,6 +62,10 @@ const taskData: TaskDataCustom = {
61
62
  description: "A leaderboard of visual document retrieval models.",
62
63
  id: "vidore/vidore-leaderboard",
63
64
  },
65
+ {
66
+ description: "Visual retrieval augmented generation demo based on ColQwen2 model.",
67
+ id: "vidore/visual-rag-tool",
68
+ },
64
69
  ],
65
70
  summary:
66
71
  "Visual document retrieval is the task of searching for relevant image-based documents, such as PDFs. These models take a text query and multiple documents as input and return the top-most relevant documents and relevancy scores as output.",
@@ -40,17 +40,17 @@ const taskData: TaskDataCustom = {
40
40
  models: [
41
41
  {
42
42
  description: "Solid zero-shot object detection model.",
43
- id: "IDEA-Research/grounding-dino-base",
43
+ id: "openmmlab-community/mm_grounding_dino_large_all",
44
44
  },
45
45
  {
46
46
  description: "Cutting-edge zero-shot object detection model.",
47
- id: "google/owlv2-base-patch16-ensemble",
47
+ id: "fushh7/LLMDet",
48
48
  },
49
49
  ],
50
50
  spaces: [
51
51
  {
52
- description: "A demo to try the state-of-the-art zero-shot object detection model, OWLv2.",
53
- id: "merve/owlv2",
52
+ description: "A demo to compare different zero-shot object detection models per output and latency.",
53
+ id: "ariG23498/zero-shot-od",
54
54
  },
55
55
  {
56
56
  description: