coyotte508's picture
coyotte508 HF staff
🍱 Copy folders from huggingface.js
b2ecf7d
raw
history blame
1.48 kB
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;