Image Segmentation
Transformers
ONNX
Transformers.js
English
u2net
mask-generation
vision
background-removal
portrait-matting
Instructions to use jummynk/U-2-Net-Human-Seg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jummynk/U-2-Net-Human-Seg with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-segmentation", model="jummynk/U-2-Net-Human-Seg")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("jummynk/U-2-Net-Human-Seg", dtype="auto") - Transformers.js
How to use jummynk/U-2-Net-Human-Seg with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('image-segmentation', 'jummynk/U-2-Net-Human-Seg'); - Notebooks
- Google Colab
- Kaggle
| library_name: transformers | |
| pipeline_tag: image-segmentation | |
| tags: | |
| - image-segmentation | |
| - mask-generation | |
| - transformers.js | |
| - vision | |
| - background-removal | |
| - portrait-matting | |
| license: apache-2.0 | |
| language: | |
| - en | |
| # U-2-Net-Human-Seg | |
| ## Model Description | |
| U-2-Net-Human-Seg is a specialised version of the U-2-Net model designed specifically for human segmentation tasks. This model excels in distinguishing human figures from the background in images, making it particularly useful for applications such as background removal, virtual try-ons, and human-centric image editing. By leveraging a deep learning approach, U-2-Net-Human-Seg can accurately segment human subjects in various poses and environments, providing high-quality segmentation masks that can be utilized in different imaging tasks. | |
| ## Usage | |
| Perform mask generation with `BritishWerewolf/U-2-Net-Human-Seg`. | |
| ### Example | |
| ```javascript | |
| import { AutoModel, AutoProcessor, RawImage } from '@huggingface/transformers'; | |
| const img_url = 'https://huggingface.co/ybelkada/segment-anything/resolve/main/assets/car.png'; | |
| const image = await RawImage.read(img_url); | |
| const processor = await AutoProcessor.from_pretrained('BritishWerewolf/U-2-Net-Human-Seg'); | |
| const processed = await processor(image); | |
| const model = await AutoModel.from_pretrained('BritishWerewolf/U-2-Net-Human-Seg', { | |
| dtype: 'fp32', | |
| }); | |
| const output = await model({ input: processed.pixel_values }); | |
| // { | |
| // mask: Tensor { | |
| // dims: [ 1, 320, 320 ], | |
| // type: 'uint8', | |
| // data: Uint8Array(102400) [ ... ], | |
| // size: 102400 | |
| // } | |
| // } | |
| ``` | |
| ## Model Architecture | |
| The U-2-Net-Human-Seg model is based on a simplified version of the original U-2-Net architecture, designed to be more lightweight while still achieving high performance in segmentation tasks. The model consists of several stages with down-sampling and up-sampling paths, using Residual U-blocks (RSU) for enhanced feature representation. | |
| ### Inference | |
| To use the model for inference, you can follow the example provided above. The `AutoProcessor` and `AutoModel` classes from the `transformers` library make it easy to load the model and processor. | |
| ## Credits | |
| * [`rembg`](https://github.com/danielgatis/rembg) for the ONNX model. | |
| * The authors of the original U-2-Net model can be credited at https://github.com/xuebinqin/U-2-Net. | |
| ## Licence | |
| This model is licensed under the Apache License 2.0 to match the original U-2-Net model. | |