File size: 1,723 Bytes
8d50d2b ed13267 8d50d2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
---
license: gpl-3.0
pipeline_tag: image-segmentation
tags:
- AIoT
- QNN
---

## U-Net: Semantic Segmentation
U-Net is a convolutional neural network designed for biomedical image segmentation, introduced by Olaf Ronneberger et al. in 2015. The model gets its name from its U-shaped architecture, featuring a symmetrical encoder-decoder structure. The encoder part extracts features from the image through a series of convolutions and downsampling operations, while the decoder part restores the spatial resolution through upsampling, combining the extracted features to accurately locate and segment objects within the image. U-Net uses skip connections that pass feature maps from the encoder directly to the decoder, aiding in the recovery of fine details. This design makes U-Net highly effective for tasks requiring precise localization, such as medical image segmentation, and it is widely applied in other areas like remote sensing, autonomous driving, and image denoising.
### Source model
- Input shape: 640x1280
- Number of parameters: 29.6M
- Model size: 118.4M
- Output shape: 1x2x640x1280
Source model repository: [U-Net](https://github.com/milesial/Pytorch-UNet)
## Performance Reference
Please search model by model name in [Model Farm](https://aiot.aidlux.com/en/models)
## Inference & Model Conversion
Please search model by model name in [Model Farm](https://aiot.aidlux.com/en/models)
## License
- Source Model: [GPL-3.0](https://github.com/milesial/Pytorch-UNet/blob/master/LICENSE)
- Deployable Model: [GPL-3.0](https://github.com/milesial/Pytorch-UNet/blob/master/LICENSE) |