machineuser commited on
Commit
ba4ff43
·
1 Parent(s): 0201d2f

Sync widgets demo

Browse files
packages/tasks/src/tasks/mask-generation/about.md CHANGED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Use Cases
2
+
3
+ ### Filtering an Image
4
+
5
+ When filtering for an image, the generated masks might serve as an initial filter to eliminate irrelevant information. For instance, when monitoring vegetation in satellite imaging, mask generation models identify green spots, highlighting the relevant region of the image.
6
+
7
+ ### Masked Image Modelling
8
+
9
+ Generating masks can be done to facilitate learning, especially in semi- or unsupervised learning. For example, the [BEiT](https://huggingface.co/docs/transformers/model_doc/beit) use image masked patches in the pre-training.
10
+
11
+ ### Human-in-the-loop
12
+
13
+ For applications where humans are in the loop, masks highlight certain region of images for humans to validate.
14
+
15
+ ## Task Variants
16
+
17
+ ### Segmentation
18
+
19
+ Image Segmentation divides an image into segments where each pixel in the image is mapped to an object. This task has multiple variants such as instance segmentation, panoptic segmentation and semantic segmentation. You can learn more about segmentation on its [task page](https://huggingface.co/tasks/image-segmentation).
20
+
21
+ ## Inference
22
+
23
+ ```python
24
+ from transformers import pipeline
25
+ generator = pipeline("mask-generation", device = 0, points_per_batch = 256)
26
+ image_url = "https://huggingface.co/ybelkada/segment-anything/resolve/main/assets/car.png"
27
+ outputs = generator(image_url, points_per_batch = 256)
28
+
29
+ ```
30
+
31
+ ## Useful Resources
32
+
33
+ Would you like to learn more about mask generation? Great! Here you can find some curated resources that you may find helpful!
34
+
35
+ - [Segment anything model](https://huggingface.co/docs/transformers/main/model_doc/sam)