Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
34 changes: 34 additions & 0 deletions tasks/src/text-to-image/data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import type { TaskDataCustom } from "../Types";

const taskData: TaskDataCustom = {
datasets: [
{
description: "Dataset used to train Pokémon text to image model.",
id: "lambdalabs/pokemon-blip-captions",
},
{
description: "A dataset that contains more than 30K images with their corresponding text from the Shahnameh.",
id: "sadrasabouri/ShahNegar",
},
],
demo: {
inputs: [],
outputs: [],
},
metrics: [],
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 latent text-to-image diffusion model that has been conditioned on high-quality anime images through fine-tuning.",
id: "hakurei/waifu-diffusion",
},
],
summary: "Generating image from input text. These models that can be used to generate and modify images based on text prompts.",
widgetModels: [],
youtubeId: "",
};

export default taskData;