File size: 1,479 Bytes
b2ecf7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import type { TaskDataCustom } from "../Types";

const taskData: TaskDataCustom = {
	datasets: [
		{
			description: "A widely used dataset used to benchmark multiple variants of text classification.",
			id: "glue",
		},
		{
			description:
				"The Multi-Genre Natural Language Inference (MultiNLI) corpus is a crowd-sourced collection of 433k sentence pairs annotated with textual entailment information.",
			id: "MultiNLI",
		},
		{
			description:
				"FEVER is a publicly available dataset for fact extraction and verification against textual sources.",
			id: "FEVER",
		},
	],
	demo: {
		inputs: [
			{
				label: "Text Input",
				content: "Dune is the best movie ever.",
				type: "text",
			},
			{
				label: "Candidate Labels",
				content: "CINEMA, ART, MUSIC",
				type: "text",
			},
		],
		outputs: [
			{
				type: "chart",
				data: [
					{
						label: "CINEMA",
						score: 0.9,
					},
					{
						label: "ART",
						score: 0.1,
					},
					{
						label: "MUSIC",
						score: 0.0,
					},
				],
			},
		],
	},
	metrics: [],
	models: [
		{
			description: "Powerful zero-shot text classification model",
			id: "facebook/bart-large-mnli",
		},
	],
	spaces: [],
	summary:
		"Zero-shot text classification is a task in natural language processing where a model is trained on a set of labeled examples but is then able to classify new examples from previously unseen classes.",
	widgetModels: ["facebook/bart-large-mnli"],
};

export default taskData;