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

Update tasks (important ones) #1163

Merged
merged 8 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 3 additions & 3 deletions packages/tasks/src/tasks/image-text-to-text/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const taskData: TaskDataCustom = {
},
{
description: "Strong image-text-to-text model.",
id: "Qwen/Qwen2-VL-7B-Instruct",
id: "Qwen/Qwen2.5-VL-7B-Instruct",
},
{
description: "Image-text-to-text model with reasoning capabilities.",
Expand Down Expand Up @@ -98,12 +98,12 @@ const taskData: TaskDataCustom = {
},
{
description: "An application that detects gaze.",
id: "smoondream/gaze-demo",
id: "moondream/gaze-demo",
},
],
summary:
"Image-text-to-text models take in an image and text prompt and output text. These models are also called vision-language models, or VLMs. The difference from image-to-text models is that these models take an additional text input, not restricting the model to certain use cases like image captioning, and may also be trained to accept a conversation as input.",
widgetModels: ["meta-llama/Llama-3.2-11B-Vision-Instruct"],
widgetModels: ["Qwen/Qwen2-VL-7B-Instruct"],
youtubeId: "IoGaGfU1CIg",
};

Expand Down
16 changes: 12 additions & 4 deletions packages/tasks/src/tasks/text-generation/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ const taskData: TaskDataCustom = {
description: "Truly open-source, curated and cleaned dialogue dataset.",
id: "HuggingFaceH4/ultrachat_200k",
},
{
description: "A reasoning dataset.",
id: "open-thoughts/OpenThoughts-114k",
merveenoyan marked this conversation as resolved.
Show resolved Hide resolved
},
{
description: "A multilingual instruction dataset with preference ratings on responses.",
id: "allenai/tulu-3-sft-mixture",
Expand Down Expand Up @@ -58,8 +62,8 @@ const taskData: TaskDataCustom = {
],
models: [
{
description: "A text-generation model trained to follow instructions.",
id: "google/gemma-2-2b-it",
description: "Smaller variant of one of the most powerful models.",
id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
Vaibhavs10 marked this conversation as resolved.
Show resolved Hide resolved
},
{
description: "Very powerful text generation model trained to follow instructions.",
Expand All @@ -74,13 +78,17 @@ const taskData: TaskDataCustom = {
id: "PowerInfer/SmallThinker-3B-Preview",
},
{
description: "Strong text generation model to follow instructions.",
id: "Qwen/Qwen2.5-7B-Instruct",
description: "Strong text generation model to follow instructions that can take long text input.",
merveenoyan marked this conversation as resolved.
Show resolved Hide resolved
id: "Qwen/Qwen2.5-7B-Instruct-1M",
},
{
description: "Text generation model used to write code.",
id: "Qwen/Qwen2.5-Coder-32B-Instruct",
},
{
description: "One of the most powerful large language models.",
Vaibhavs10 marked this conversation as resolved.
Show resolved Hide resolved
id: "deepseek-ai/DeepSeek-R1",
},
],
spaces: [
{
Expand Down
Loading