Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,858 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
import type { TaskDataCustom } from "../Types";
const taskData: TaskDataCustom = {
datasets: [
{
// TODO write proper description
description: "Benchmark dataset used for image classification with images that belong to 100 classes.",
id: "cifar100",
},
{
// TODO write proper description
description: "Dataset consisting of images of garments.",
id: "fashion_mnist",
},
],
demo: {
inputs: [
{
filename: "image-classification-input.jpeg",
type: "img",
},
],
outputs: [
{
type: "chart",
data: [
{
label: "Egyptian cat",
score: 0.514,
},
{
label: "Tabby cat",
score: 0.193,
},
{
label: "Tiger cat",
score: 0.068,
},
],
},
],
},
metrics: [
{
description: "",
id: "accuracy",
},
{
description: "",
id: "recall",
},
{
description: "",
id: "precision",
},
{
description: "",
id: "f1",
},
],
models: [
{
description: "A strong image classification model.",
id: "google/vit-base-patch16-224",
},
{
description: "A robust image classification model.",
id: "facebook/deit-base-distilled-patch16-224",
},
{
description: "A strong image classification model.",
id: "facebook/convnext-large-224",
},
],
spaces: [
{
// TO DO: write description
description: "An application that classifies what a given image is about.",
id: "nielsr/perceiver-image-classification",
},
],
summary:
"Image classification is the task of assigning a label or class to an entire image. Images are expected to have only one class for each image. Image classification models take an image as input and return a prediction about which class the image belongs to.",
widgetModels: ["google/vit-base-patch16-224"],
youtubeId: "tjAIM7BOYhw",
};
export default taskData;
|