machineuser commited on
Commit
92e8b1a
·
1 Parent(s): 4781e64

Sync widgets demo

Browse files
packages/tasks/src/tasks/mask-generation/about.md ADDED
File without changes
packages/tasks/src/tasks/mask-generation/data.ts ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import type { TaskDataCustom } from "..";
2
+
3
+ const taskData: TaskDataCustom = {
4
+ datasets: [],
5
+ demo: {
6
+ inputs: [],
7
+ outputs: [],
8
+ },
9
+ metrics: [],
10
+ models: [],
11
+ spaces: [],
12
+ summary:
13
+ "Mask generation is creating a binary image that identifies a specific object or region of interest in an input image. Masks are often used in segmentation tasks, where they provide a precise way to isolate the object of interest for further processing or analysis.",
14
+ widgetModels: [],
15
+ youtubeId: "",
16
+ };
17
+
18
+ export default taskData;