Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contributing to task page for any-to-any #1011

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
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
55 changes: 55 additions & 0 deletions packages/tasks/src/tasks/any-to-any/data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import type { TaskDataCustom } from "..";

const taskData: TaskDataCustom = {
datasets: [
{
description: "All-modality alignment dataset with fine-grained preference annotations and language feedback.",
id: "PKU-Alignment/align-anything-400k",
},
],
demo: {
inputs: [
{
filename: "distractedboyfriendmeme.jpeg",
type: "img",
},
{
label: "Text Prompt",
content: "What is the colour of the shirt the man is wearing?",
type: "text",
},
],
outputs: [
{
label: "Answer",
content: "The man is wearing a blue and white plaid shirt.",
type: "text",
},
],
},
metrics: [],
models: [
{
description: "A next token prediction model.",
id: "BAAI/Emu3-Gen",
},
{
description:
"Janus is a versatile multimodal framework that decouples visual encoding for superior understanding and generation across tasks.",
auroraalabs marked this conversation as resolved.
Show resolved Hide resolved
id: "deepseek-ai/Janus-1.3B",
},
],
spaces: [
{
description:
"Janus is a versatile multimodal framework that decouples visual encoding for superior understanding and generation across tasks.",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment applies here

id: "deepseek-ai/Janus-1.3B",
},
],
summary:
"Any-to-Any is the task for models that can take any combination of input and output types, to such as text, image, and video.",
widgetModels: [],
youtubeId: "",
};

export default taskData;