coyotte508's picture
coyotte508 HF staff
🍱 Copy folders from huggingface.js
b2ecf7d
raw
history blame
3.05 kB
import type { TaskDataCustom } from "../Types";
const taskData: TaskDataCustom = {
datasets: [
{
description: "RedCaps is a large-scale dataset of 12M image-text pairs collected from Reddit.",
id: "red_caps",
},
{
description: "Conceptual Captions is a dataset consisting of ~3.3M images annotated with captions.",
id: "conceptual_captions",
},
],
demo: {
inputs: [
{
label: "Input",
content: "A city above clouds, pastel colors, Victorian style",
type: "text",
},
],
outputs: [
{
filename: "image.jpeg",
type: "img",
},
],
},
metrics: [
{
description:
"The Inception Score (IS) measure assesses diversity and meaningfulness. It uses a generated image sample to predict its label. A higher score signifies more diverse and meaningful images.",
id: "IS",
},
{
description:
"The Fréchet Inception Distance (FID) calculates the distance between distributions between synthetic and real samples. A lower FID score indicates better similarity between the distributions of real and generated images.",
id: "FID",
},
{
description:
"R-precision assesses how the generated image aligns with the provided text description. It uses the generated images as queries to retrieve relevant text descriptions. The top 'r' relevant descriptions are selected and used to calculate R-precision as r/R, where 'R' is the number of ground truth descriptions associated with the generated images. A higher R-precision value indicates a better model.",
id: "R-Precision",
},
],
models: [
{
description:
"A latent text-to-image diffusion model capable of generating photo-realistic images given any text input.",
id: "CompVis/stable-diffusion-v1-4",
},
{
description:
"A model that can be used to generate images based on text prompts. The DALL·E Mega model is the largest version of DALLE Mini.",
id: "dalle-mini/dalle-mega",
},
{
description: "A text-to-image model that can generate coherent text inside image.",
id: "DeepFloyd/IF-I-XL-v1.0",
},
{
description: "A powerful text-to-image model.",
id: "kakaobrain/karlo-v1-alpha",
},
],
spaces: [
{
description: "A powerful text-to-image application.",
id: "stabilityai/stable-diffusion",
},
{
description: "An text-to-image application that can generate coherent text inside the image.",
id: "DeepFloyd/IF",
},
{
description: "An powerful text-to-image application that can generate images.",
id: "kakaobrain/karlo",
},
{
description: "An powerful text-to-image application that can generates 3D representations.",
id: "hysts/Shap-E",
},
{
description: "A strong application for `text-to-image`, `image-to-image` and image inpainting.",
id: "ArtGAN/Stable-Diffusion-ControlNet-WebUI",
},
],
summary:
"Generates images from input text. These models can be used to generate and modify images based on text prompts.",
widgetModels: ["CompVis/stable-diffusion-v1-4"],
youtubeId: "",
};
export default taskData;