@huggingface/tasks 0.12.1 → 0.12.2
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.
- package/dist/index.cjs +120 -57
- package/dist/index.js +120 -57
- package/dist/src/model-libraries-snippets.d.ts +1 -0
- package/dist/src/model-libraries-snippets.d.ts.map +1 -1
- package/dist/src/model-libraries.d.ts +9 -2
- package/dist/src/model-libraries.d.ts.map +1 -1
- package/dist/src/tasks/audio-classification/data.d.ts.map +1 -1
- package/dist/src/tasks/audio-to-audio/data.d.ts.map +1 -1
- package/dist/src/tasks/automatic-speech-recognition/data.d.ts.map +1 -1
- package/dist/src/tasks/document-question-answering/data.d.ts.map +1 -1
- package/dist/src/tasks/question-answering/data.d.ts.map +1 -1
- package/dist/src/tasks/text-classification/data.d.ts.map +1 -1
- package/dist/src/tasks/text-to-speech/data.d.ts.map +1 -1
- package/dist/src/tasks/token-classification/data.d.ts.map +1 -1
- package/dist/src/tasks/translation/data.d.ts.map +1 -1
- package/dist/src/tasks/zero-shot-classification/data.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/model-libraries-snippets.ts +9 -0
- package/src/model-libraries.ts +7 -0
- package/src/tasks/audio-classification/data.ts +8 -4
- package/src/tasks/audio-to-audio/data.ts +5 -1
- package/src/tasks/automatic-speech-recognition/data.ts +6 -2
- package/src/tasks/document-question-answering/data.ts +7 -3
- package/src/tasks/fill-mask/data.ts +3 -3
- package/src/tasks/image-segmentation/data.ts +1 -1
- package/src/tasks/image-to-image/data.ts +1 -1
- package/src/tasks/image-to-text/data.ts +1 -1
- package/src/tasks/question-answering/data.ts +5 -1
- package/src/tasks/sentence-similarity/data.ts +3 -3
- package/src/tasks/summarization/data.ts +2 -2
- package/src/tasks/text-classification/data.ts +18 -6
- package/src/tasks/text-generation/data.ts +3 -3
- package/src/tasks/text-to-image/data.ts +1 -1
- package/src/tasks/text-to-speech/data.ts +7 -3
- package/src/tasks/token-classification/data.ts +11 -3
- package/src/tasks/translation/data.ts +9 -8
- package/src/tasks/video-classification/data.ts +3 -3
- package/src/tasks/visual-question-answering/data.ts +2 -2
- package/src/tasks/zero-shot-classification/data.ts +8 -4
- package/src/tasks/zero-shot-image-classification/data.ts +2 -2
package/src/model-libraries.ts
CHANGED
|
@@ -657,6 +657,13 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = {
|
|
|
657
657
|
docsUrl: "https://github.com/jasonppy/VoiceCraft",
|
|
658
658
|
snippets: snippets.voicecraft,
|
|
659
659
|
},
|
|
660
|
+
yolov10: {
|
|
661
|
+
prettyLabel: "YOLOv10",
|
|
662
|
+
repoName: "yolov10",
|
|
663
|
+
repoUrl: "https://github.com/THU-MIG/yolov10",
|
|
664
|
+
docsUrl: "https://github.com/THU-MIG/yolov10",
|
|
665
|
+
snippets: snippets.yolov10,
|
|
666
|
+
},
|
|
660
667
|
whisperkit: {
|
|
661
668
|
prettyLabel: "WhisperKit",
|
|
662
669
|
repoName: "WhisperKit",
|
|
@@ -4,7 +4,11 @@ const taskData: TaskDataCustom = {
|
|
|
4
4
|
datasets: [
|
|
5
5
|
{
|
|
6
6
|
description: "A benchmark of 10 different audio tasks.",
|
|
7
|
-
id: "superb",
|
|
7
|
+
id: "s3prl/superb",
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
description: "A dataset of YouTube clips and their sound categories.",
|
|
11
|
+
id: "agkphysics/AudioSet",
|
|
8
12
|
},
|
|
9
13
|
],
|
|
10
14
|
demo: {
|
|
@@ -50,11 +54,11 @@ const taskData: TaskDataCustom = {
|
|
|
50
54
|
],
|
|
51
55
|
models: [
|
|
52
56
|
{
|
|
53
|
-
description: "An easy-to-use model for
|
|
57
|
+
description: "An easy-to-use model for command recognition.",
|
|
54
58
|
id: "speechbrain/google_speech_command_xvector",
|
|
55
59
|
},
|
|
56
60
|
{
|
|
57
|
-
description: "An
|
|
61
|
+
description: "An emotion recognition model.",
|
|
58
62
|
id: "ehcalabres/wav2vec2-lg-xlsr-en-speech-emotion-recognition",
|
|
59
63
|
},
|
|
60
64
|
{
|
|
@@ -70,7 +74,7 @@ const taskData: TaskDataCustom = {
|
|
|
70
74
|
],
|
|
71
75
|
summary:
|
|
72
76
|
"Audio classification is the task of assigning a label or class to a given audio. It can be used for recognizing which command a user is giving or the emotion of a statement, as well as identifying a speaker.",
|
|
73
|
-
widgetModels: ["
|
|
77
|
+
widgetModels: ["MIT/ast-finetuned-audioset-10-10-0.4593"],
|
|
74
78
|
youtubeId: "KWwzcmG98Ds",
|
|
75
79
|
};
|
|
76
80
|
|
|
@@ -44,7 +44,11 @@ const taskData: TaskDataCustom = {
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
description: "A speech enhancement model.",
|
|
47
|
-
id: "
|
|
47
|
+
id: "ResembleAI/resemble-enhance",
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
description: "A model that can change the voice in a speech recording.",
|
|
51
|
+
id: "microsoft/speecht5_vc",
|
|
48
52
|
},
|
|
49
53
|
],
|
|
50
54
|
spaces: [
|
|
@@ -7,8 +7,8 @@ const taskData: TaskDataCustom = {
|
|
|
7
7
|
id: "mozilla-foundation/common_voice_17_0",
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
|
-
description: "
|
|
11
|
-
id: "
|
|
10
|
+
description: "A dataset with 44.6k hours of English speaker data and 6k hours of other language speakers.",
|
|
11
|
+
id: "parler-tts/mls_eng",
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
description: "A multi-lingual audio dataset with 370K hours of audio.",
|
|
@@ -54,6 +54,10 @@ const taskData: TaskDataCustom = {
|
|
|
54
54
|
description: "An end-to-end model that performs ASR and Speech Translation by MetaAI.",
|
|
55
55
|
id: "facebook/seamless-m4t-v2-large",
|
|
56
56
|
},
|
|
57
|
+
{
|
|
58
|
+
description: "Powerful speaker diarization model.",
|
|
59
|
+
id: "pyannote/speaker-diarization-3.1",
|
|
60
|
+
},
|
|
57
61
|
],
|
|
58
62
|
spaces: [
|
|
59
63
|
{
|
|
@@ -46,11 +46,15 @@ const taskData: TaskDataCustom = {
|
|
|
46
46
|
],
|
|
47
47
|
models: [
|
|
48
48
|
{
|
|
49
|
-
description: "A
|
|
49
|
+
description: "A robust document question answering model.",
|
|
50
50
|
id: "impira/layoutlm-document-qa",
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
|
-
description: "A
|
|
53
|
+
description: "A document question answering model specialized in invoices.",
|
|
54
|
+
id: "impira/layoutlm-invoices",
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
description: "A special model for OCR-free document question answering.",
|
|
54
58
|
id: "microsoft/udop-large",
|
|
55
59
|
},
|
|
56
60
|
{
|
|
@@ -74,7 +78,7 @@ const taskData: TaskDataCustom = {
|
|
|
74
78
|
],
|
|
75
79
|
summary:
|
|
76
80
|
"Document Question Answering (also known as Document Visual Question Answering) is the task of answering questions on document images. Document question answering models take a (document, question) pair as input and return an answer in natural language. Models usually rely on multi-modal features, combining text, position of words (bounding-boxes) and image.",
|
|
77
|
-
widgetModels: ["impira/layoutlm-
|
|
81
|
+
widgetModels: ["impira/layoutlm-invoices"],
|
|
78
82
|
youtubeId: "",
|
|
79
83
|
};
|
|
80
84
|
|
|
@@ -61,12 +61,12 @@ const taskData: TaskDataCustom = {
|
|
|
61
61
|
],
|
|
62
62
|
models: [
|
|
63
63
|
{
|
|
64
|
-
description: "
|
|
65
|
-
id: "
|
|
64
|
+
description: "The famous BERT model.",
|
|
65
|
+
id: "google-bert/bert-base-uncased",
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
description: "A multilingual model trained on 100 languages.",
|
|
69
|
-
id: "xlm-roberta-base",
|
|
69
|
+
id: "FacebookAI/xlm-roberta-base",
|
|
70
70
|
},
|
|
71
71
|
],
|
|
72
72
|
spaces: [],
|
|
@@ -92,7 +92,7 @@ const taskData: TaskDataCustom = {
|
|
|
92
92
|
],
|
|
93
93
|
summary:
|
|
94
94
|
"Image Segmentation divides an image into segments where each pixel in the image is mapped to an object. This task has multiple variants such as instance segmentation, panoptic segmentation and semantic segmentation.",
|
|
95
|
-
widgetModels: ["
|
|
95
|
+
widgetModels: ["nvidia/segformer-b0-finetuned-ade-512-512"],
|
|
96
96
|
youtubeId: "dKE8SIt9C-w",
|
|
97
97
|
};
|
|
98
98
|
|
|
@@ -94,7 +94,7 @@ const taskData: TaskDataCustom = {
|
|
|
94
94
|
],
|
|
95
95
|
summary:
|
|
96
96
|
"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.",
|
|
97
|
-
widgetModels: ["
|
|
97
|
+
widgetModels: ["stabilityai/stable-diffusion-2-inpainting"],
|
|
98
98
|
youtubeId: "",
|
|
99
99
|
};
|
|
100
100
|
|
|
@@ -75,7 +75,7 @@ const taskData: TaskDataCustom = {
|
|
|
75
75
|
],
|
|
76
76
|
summary:
|
|
77
77
|
"Image to text models output a text from a given image. Image captioning or optical character recognition can be considered as the most common applications of image to text.",
|
|
78
|
-
widgetModels: ["Salesforce/blip-image-captioning-
|
|
78
|
+
widgetModels: ["Salesforce/blip-image-captioning-large"],
|
|
79
79
|
youtubeId: "",
|
|
80
80
|
};
|
|
81
81
|
|
|
@@ -52,7 +52,11 @@ const taskData: TaskDataCustom = {
|
|
|
52
52
|
id: "deepset/roberta-base-squad2",
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
|
-
description: "
|
|
55
|
+
description: "Small yet robust model that can answer questions.",
|
|
56
|
+
id: "distilbert/distilbert-base-cased-distilled-squad",
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
description: "A special model that can answer questions from tables.",
|
|
56
60
|
id: "google/tapas-base-finetuned-wtq",
|
|
57
61
|
},
|
|
58
62
|
],
|
|
@@ -69,8 +69,8 @@ const taskData: TaskDataCustom = {
|
|
|
69
69
|
id: "sentence-transformers/all-mpnet-base-v2",
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
|
-
description: "A multilingual
|
|
73
|
-
id: "
|
|
72
|
+
description: "A multilingual robust sentence similarity model..",
|
|
73
|
+
id: "BAAI/bge-m3",
|
|
74
74
|
},
|
|
75
75
|
],
|
|
76
76
|
spaces: [
|
|
@@ -94,7 +94,7 @@ const taskData: TaskDataCustom = {
|
|
|
94
94
|
],
|
|
95
95
|
summary:
|
|
96
96
|
"Sentence Similarity is the task of determining how similar two texts are. Sentence similarity models convert input texts into vectors (embeddings) that capture semantic information and calculate how close (similar) they are between them. This task is particularly useful for information retrieval and clustering/grouping.",
|
|
97
|
-
widgetModels: ["
|
|
97
|
+
widgetModels: ["BAAI/bge-small-en-v1.5"],
|
|
98
98
|
youtubeId: "VCZq5AkbNEU",
|
|
99
99
|
};
|
|
100
100
|
|
|
@@ -46,7 +46,7 @@ const taskData: TaskDataCustom = {
|
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
description: "A summarization model trained on medical articles.",
|
|
49
|
-
id: "
|
|
49
|
+
id: "Falconsai/medical_summarization",
|
|
50
50
|
},
|
|
51
51
|
],
|
|
52
52
|
spaces: [
|
|
@@ -69,7 +69,7 @@ const taskData: TaskDataCustom = {
|
|
|
69
69
|
],
|
|
70
70
|
summary:
|
|
71
71
|
"Summarization is the task of producing a shorter version of a document while preserving its important information. Some models can extract text from the original input, while other models can generate entirely new text.",
|
|
72
|
-
widgetModels: ["
|
|
72
|
+
widgetModels: ["facebook/bart-large-cnn"],
|
|
73
73
|
youtubeId: "yHnr5Dk2zCI",
|
|
74
74
|
};
|
|
75
75
|
|
|
@@ -4,11 +4,11 @@ const taskData: TaskDataCustom = {
|
|
|
4
4
|
datasets: [
|
|
5
5
|
{
|
|
6
6
|
description: "A widely used dataset used to benchmark multiple variants of text classification.",
|
|
7
|
-
id: "glue",
|
|
7
|
+
id: "nyu-mll/glue",
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
description: "A text classification dataset used to benchmark natural language inference models",
|
|
11
|
-
id: "snli",
|
|
11
|
+
id: "stanfordnlp/snli",
|
|
12
12
|
},
|
|
13
13
|
],
|
|
14
14
|
demo: {
|
|
@@ -61,11 +61,23 @@ const taskData: TaskDataCustom = {
|
|
|
61
61
|
models: [
|
|
62
62
|
{
|
|
63
63
|
description: "A robust model trained for sentiment analysis.",
|
|
64
|
-
id: "distilbert-base-uncased-finetuned-sst-2-english",
|
|
64
|
+
id: "distilbert/distilbert-base-uncased-finetuned-sst-2-english",
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
description: "
|
|
68
|
-
id: "
|
|
67
|
+
description: "A sentiment analysis model specialized in financial sentiment.",
|
|
68
|
+
id: "ProsusAI/finbert",
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
description: "A sentiment analysis model specialized in analyzing tweets.",
|
|
72
|
+
id: "cardiffnlp/twitter-roberta-base-sentiment-latest",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
description: "A model that can classify languages.",
|
|
76
|
+
id: "papluca/xlm-roberta-base-language-detection",
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
description: "A model that can classify text generation attacks.",
|
|
80
|
+
id: "meta-llama/Prompt-Guard-86M",
|
|
69
81
|
},
|
|
70
82
|
],
|
|
71
83
|
spaces: [
|
|
@@ -84,7 +96,7 @@ const taskData: TaskDataCustom = {
|
|
|
84
96
|
],
|
|
85
97
|
summary:
|
|
86
98
|
"Text Classification is the task of assigning a label or class to a given text. Some use cases are sentiment analysis, natural language inference, and assessing grammatical correctness.",
|
|
87
|
-
widgetModels: ["distilbert-base-uncased-finetuned-sst-2-english"],
|
|
99
|
+
widgetModels: ["distilbert/distilbert-base-uncased-finetuned-sst-2-english"],
|
|
88
100
|
youtubeId: "leNG9fN9FQU",
|
|
89
101
|
};
|
|
90
102
|
|
|
@@ -97,8 +97,8 @@ const taskData: TaskDataCustom = {
|
|
|
97
97
|
id: "HuggingFaceH4/zephyr-chat",
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
|
-
description: "
|
|
101
|
-
id: "
|
|
100
|
+
description: "A leaderboard that ranks text generation models based on blind votes from people.",
|
|
101
|
+
id: "lmsys/chatbot-arena-leaderboard",
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
104
|
description: "An chatbot to converse with a very powerful text generation model.",
|
|
@@ -107,7 +107,7 @@ const taskData: TaskDataCustom = {
|
|
|
107
107
|
],
|
|
108
108
|
summary:
|
|
109
109
|
"Generating text is the task of generating new text given another text. These models can, for example, fill in incomplete text or paraphrase.",
|
|
110
|
-
widgetModels: ["
|
|
110
|
+
widgetModels: ["mistralai/Mistral-Nemo-Instruct-2407"],
|
|
111
111
|
youtubeId: "e9gNEAlsOvU",
|
|
112
112
|
};
|
|
113
113
|
|
|
@@ -93,7 +93,7 @@ const taskData: TaskDataCustom = {
|
|
|
93
93
|
],
|
|
94
94
|
summary:
|
|
95
95
|
"Generates images from input text. These models can be used to generate and modify images based on text prompts.",
|
|
96
|
-
widgetModels: ["
|
|
96
|
+
widgetModels: ["black-forest-labs/FLUX.1-dev"],
|
|
97
97
|
youtubeId: "",
|
|
98
98
|
};
|
|
99
99
|
|
|
@@ -9,7 +9,7 @@ const taskData: TaskDataCustom = {
|
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
description: "Multi-speaker English dataset.",
|
|
12
|
-
id: "
|
|
12
|
+
id: "mythicinfinity/libritts_r",
|
|
13
13
|
},
|
|
14
14
|
],
|
|
15
15
|
demo: {
|
|
@@ -36,11 +36,15 @@ const taskData: TaskDataCustom = {
|
|
|
36
36
|
models: [
|
|
37
37
|
{
|
|
38
38
|
description: "A powerful TTS model.",
|
|
39
|
-
id: "
|
|
39
|
+
id: "parler-tts/parler-tts-large-v1",
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
description: "A massively multi-lingual TTS model.",
|
|
43
|
-
id: "
|
|
43
|
+
id: "coqui/XTTS-v2",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
description: "Robust TTS model.",
|
|
47
|
+
id: "metavoiceio/metavoice-1B-v0.1",
|
|
44
48
|
},
|
|
45
49
|
{
|
|
46
50
|
description: "A prompt based, powerful TTS model.",
|
|
@@ -4,12 +4,12 @@ const taskData: TaskDataCustom = {
|
|
|
4
4
|
datasets: [
|
|
5
5
|
{
|
|
6
6
|
description: "A widely used dataset useful to benchmark named entity recognition models.",
|
|
7
|
-
id: "conll2003",
|
|
7
|
+
id: "eriktks/conll2003",
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
description:
|
|
11
11
|
"A multilingual dataset of Wikipedia articles annotated for named entity recognition in over 150 different languages.",
|
|
12
|
-
id: "wikiann",
|
|
12
|
+
id: "unimelb-nlp/wikiann",
|
|
13
13
|
},
|
|
14
14
|
],
|
|
15
15
|
demo: {
|
|
@@ -63,6 +63,14 @@ const taskData: TaskDataCustom = {
|
|
|
63
63
|
"A robust performance model to identify people, locations, organizations and names of miscellaneous entities.",
|
|
64
64
|
id: "dslim/bert-base-NER",
|
|
65
65
|
},
|
|
66
|
+
{
|
|
67
|
+
description: "A strong model to identify people, locations, organizations and names in multiple languages.",
|
|
68
|
+
id: "FacebookAI/xlm-roberta-large-finetuned-conll03-english",
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
description: "A token classification model specialized on medical entity recognition.",
|
|
72
|
+
id: "blaze999/Medical-NER",
|
|
73
|
+
},
|
|
66
74
|
{
|
|
67
75
|
description: "Flair models are typically the state of the art in named entity recognition tasks.",
|
|
68
76
|
id: "flair/ner-english",
|
|
@@ -77,7 +85,7 @@ const taskData: TaskDataCustom = {
|
|
|
77
85
|
],
|
|
78
86
|
summary:
|
|
79
87
|
"Token classification is a natural language understanding task in which a label is assigned to some tokens in a text. Some popular token classification subtasks are Named Entity Recognition (NER) and Part-of-Speech (PoS) tagging. NER models could be trained to identify specific entities in a text, such as dates, individuals and places; and PoS tagging would identify, for example, which words in a text are verbs, nouns, and punctuation marks.",
|
|
80
|
-
widgetModels: ["
|
|
88
|
+
widgetModels: ["FacebookAI/xlm-roberta-large-finetuned-conll03-english"],
|
|
81
89
|
youtubeId: "wVHdVlPScxA",
|
|
82
90
|
};
|
|
83
91
|
|
|
@@ -5,12 +5,12 @@ const taskData: TaskDataCustom = {
|
|
|
5
5
|
datasets: [
|
|
6
6
|
{
|
|
7
7
|
description: "A dataset of copyright-free books translated into 16 different languages.",
|
|
8
|
-
id: "opus_books",
|
|
8
|
+
id: "Helsinki-NLP/opus_books",
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
description:
|
|
12
12
|
"An example of translation between programming languages. This dataset consists of functions in Java and C#.",
|
|
13
|
-
id: "code_x_glue_cc_code_to_code_trans",
|
|
13
|
+
id: "google/code_x_glue_cc_code_to_code_trans",
|
|
14
14
|
},
|
|
15
15
|
],
|
|
16
16
|
demo: {
|
|
@@ -42,13 +42,14 @@ const taskData: TaskDataCustom = {
|
|
|
42
42
|
],
|
|
43
43
|
models: [
|
|
44
44
|
{
|
|
45
|
-
description:
|
|
46
|
-
|
|
45
|
+
description:
|
|
46
|
+
"Very powerful model that can translate many languages between each other, especially low-resource languages.",
|
|
47
|
+
id: "facebook/nllb-200-1.3B",
|
|
47
48
|
},
|
|
48
49
|
{
|
|
49
50
|
description:
|
|
50
51
|
"A general-purpose Transformer that can be used to translate from English to German, French, or Romanian.",
|
|
51
|
-
id: "t5-base",
|
|
52
|
+
id: "google-t5/t5-base",
|
|
52
53
|
},
|
|
53
54
|
],
|
|
54
55
|
spaces: [
|
|
@@ -57,12 +58,12 @@ const taskData: TaskDataCustom = {
|
|
|
57
58
|
id: "Iker/Translate-100-languages",
|
|
58
59
|
},
|
|
59
60
|
{
|
|
60
|
-
description: "An application that can translate between
|
|
61
|
-
id: "
|
|
61
|
+
description: "An application that can translate between many languages.",
|
|
62
|
+
id: "Geonmo/nllb-translation-demo",
|
|
62
63
|
},
|
|
63
64
|
],
|
|
64
65
|
summary: "Translation is the task of converting text from one language to another.",
|
|
65
|
-
widgetModels: ["
|
|
66
|
+
widgetModels: ["facebook/mbart-large-50-many-to-many-mmt"],
|
|
66
67
|
youtubeId: "1JvfrvZgi6c",
|
|
67
68
|
};
|
|
68
69
|
|
|
@@ -56,12 +56,12 @@ const taskData: TaskDataCustom = {
|
|
|
56
56
|
models: [
|
|
57
57
|
{
|
|
58
58
|
// TO DO: write description
|
|
59
|
-
description: "Strong Video Classification model trained on the
|
|
60
|
-
id: "
|
|
59
|
+
description: "Strong Video Classification model trained on the Kinetics 400 dataset.",
|
|
60
|
+
id: "google/vivit-b-16x2-kinetics400",
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
63
|
// TO DO: write description
|
|
64
|
-
description: "Strong Video Classification model trained on the
|
|
64
|
+
description: "Strong Video Classification model trained on the Kinetics 400 dataset.",
|
|
65
65
|
id: "microsoft/xclip-base-patch32",
|
|
66
66
|
},
|
|
67
67
|
],
|
|
@@ -8,7 +8,7 @@ const taskData: TaskDataCustom = {
|
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
description: "A dataset to benchmark visual reasoning based on text in images.",
|
|
11
|
-
id: "textvqa",
|
|
11
|
+
id: "facebook/textvqa",
|
|
12
12
|
},
|
|
13
13
|
],
|
|
14
14
|
demo: {
|
|
@@ -63,7 +63,7 @@ const taskData: TaskDataCustom = {
|
|
|
63
63
|
{
|
|
64
64
|
description:
|
|
65
65
|
"A visual question answering model trained for mathematical reasoning and chart derendering from images.",
|
|
66
|
-
id: "google/matcha-base
|
|
66
|
+
id: "google/matcha-base",
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
description: "A strong visual question answering that answers questions from book covers.",
|
|
@@ -4,17 +4,17 @@ const taskData: TaskDataCustom = {
|
|
|
4
4
|
datasets: [
|
|
5
5
|
{
|
|
6
6
|
description: "A widely used dataset used to benchmark multiple variants of text classification.",
|
|
7
|
-
id: "glue",
|
|
7
|
+
id: "nyu-mll/glue",
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
description:
|
|
11
11
|
"The Multi-Genre Natural Language Inference (MultiNLI) corpus is a crowd-sourced collection of 433k sentence pairs annotated with textual entailment information.",
|
|
12
|
-
id: "
|
|
12
|
+
id: "nyu-mll/multi_nli",
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
description:
|
|
16
16
|
"FEVER is a publicly available dataset for fact extraction and verification against textual sources.",
|
|
17
|
-
id: "
|
|
17
|
+
id: "fever/fever",
|
|
18
18
|
},
|
|
19
19
|
],
|
|
20
20
|
demo: {
|
|
@@ -53,9 +53,13 @@ const taskData: TaskDataCustom = {
|
|
|
53
53
|
metrics: [],
|
|
54
54
|
models: [
|
|
55
55
|
{
|
|
56
|
-
description: "Powerful zero-shot text classification model",
|
|
56
|
+
description: "Powerful zero-shot text classification model.",
|
|
57
57
|
id: "facebook/bart-large-mnli",
|
|
58
58
|
},
|
|
59
|
+
{
|
|
60
|
+
description: "Powerful zero-shot multilingual text classification model that can accomplish multiple tasks.",
|
|
61
|
+
id: "MoritzLaurer/mDeBERTa-v3-base-xnli-multilingual-nli-2mil7",
|
|
62
|
+
},
|
|
59
63
|
],
|
|
60
64
|
spaces: [],
|
|
61
65
|
summary:
|
|
@@ -53,7 +53,7 @@ const taskData: TaskDataCustom = {
|
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
description: "Strong zero-shot image classification model.",
|
|
56
|
-
id: "google/siglip-
|
|
56
|
+
id: "google/siglip-so400m-patch14-224",
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
description: "Small yet powerful zero-shot image classification model that can run on edge devices.",
|
|
@@ -77,7 +77,7 @@ const taskData: TaskDataCustom = {
|
|
|
77
77
|
],
|
|
78
78
|
summary:
|
|
79
79
|
"Zero-shot image classification is the task of classifying previously unseen classes during training of a model.",
|
|
80
|
-
widgetModels: ["
|
|
80
|
+
widgetModels: ["google/siglip-so400m-patch14-224"],
|
|
81
81
|
youtubeId: "",
|
|
82
82
|
};
|
|
83
83
|
|