Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Peachypie98 authored Jun 20, 2023
1 parent 921a2ee commit e279cd3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Accurate computer-aided polyp detection and segmentation during colonoscopy exam

ResUnet++ architecture is based on the Deep Residual U-Net, which is an architecture that uses the strength of deep residual learning and U-Net. The Proposed ResUnet++ architecture take advantage of the residual blocks, the squeeze and excitation block, ASPP and the attention block.

### Model Short Explanation
## Model Short Explanation
* Residual Units
Training a deep neural network with an increasing depth can improve accuracy. However, it can hamper training process and cause degradation problem. To address this problem, ResUnet uses full pre-activation residual units that helps to propagate information using skip connections, improving the design of the neural network.

Expand All @@ -26,7 +26,7 @@ In ASPP, the contextual information is captured at various scales, and many para
* Attention Units
The attention mechanism is mostly popular in NLP task. It gives attention to the subset of its input. The attention mechanism determines which parts of the network require more attention in the neural network. The main advantage of the attention mechanism is that they are simple, can be applied to any input size, enhance the quality of features that boosts the results.

### Blocks Configurations
## Blocks Configurations
| Block | Configuration |
| ------ | ------ |
| Conv2D Encoder | Kernel=3; Stride=2,1; Padding=1; Bias=False|
Expand All @@ -44,5 +44,6 @@ These are the environments used to test the model:
* PyTorch 2.0
* V100 32GB

---
More detailed information about ResUnet++ can be seen using the link down below:
[https://arxiv.org/abs/1911.07067](https://arxiv.org/abs/1911.07067)

0 comments on commit e279cd3

Please sign in to comment.