Skip to content
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

there seems to be a change still (see diff), if you can revert this change as well we can merge

11 changes: 11 additions & 0 deletions packages/tasks/src/tasks/mask-generation/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Use Cases

### Medical Imaging

Mask generation models are used in medical imaging to aid in segmenting and analyzing specific regions.

### Autonomous Vehicles

Mask generation models are used to create segments and masks for obstacles and other objects in view.

This page was made possible thanks to the efforts of [Raj Aryan](https://huggingface.co/thatrajaryan).
32 changes: 32 additions & 0 deletions packages/tasks/src/tasks/mask-generation/data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import type { TaskDataCustom } from "..";

const taskData: TaskDataCustom = {
datasets: [
{
description: "Widely used benchmark dataset for multiple Vision tasks.",
id: "merve/coco2017",
},
{
description: "Medical Imaging dataset of the Human Brain for segmentation and mask generating tasks",
id: "rocky93/BraTS_segmentation"
}
],
demo: {
inputs: [],
outputs: [],
},
metrics: [
{
description:
"IoU is used to measure the overlap between predicted mask and the ground truth mask.",
id: "Intersection over Union (IoU)",
}
],
models: [],
spaces: [],
summary:"Mask generation task involves generating masks for meaningful segments in a given image. It could be zero-shot or based on training data.",
widgetModels: [],
youtubeId: "",
};

export default taskData;
7 changes: 7 additions & 0 deletions packages/tasks/src/tasks/text-to-3d/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Use Cases

### Prototyping

Text-to-3D models can help reduce the time and cost of prototyping and making modifications to them.

This page was made possible thanks to the efforts of [Raj Aryan](https://huggingface.co/thatrajaryan).
17 changes: 17 additions & 0 deletions packages/tasks/src/tasks/text-to-3d/data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import type { TaskDataCustom } from "..";

const taskData: TaskDataCustom = {
datasets: [],
demo: {
inputs: [],
outputs: [],
},
metrics: [],
models: [],
spaces: [],
summary:"Text-to-3D is the task of generating a 3D image from a text prompt. It is similar to generating a 2D image with an extension of depth perception.",
widgetModels: [],
youtubeId: "",
};

export default taskData;