Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
WAMAWAMA committed Oct 31, 2022
1 parent 62c3118 commit a553a1c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,37 @@ input = torch.ones([3,3,128,128])
</details>


<details>
<summary> Demo15: Build a 3D DETR model for object detection </summary>

```python
import wama_modules as ws
import torch

encoder = ws.resnet(input_channel = 3, per_stage_channel = [8,16,32,64], dim=3)
decoder = ws.unet(encoder = encoder, output_channel = 3, dim=3)

input = torch.ones([3,3,128,128])

```
</details>

<details>
<summary> Demo16: Build a 3D VGG with SE-attention module for multi-instanse classification </summary>

```python
import wama_modules as ws
import torch

encoder = ws.resnet(input_channel = 3, per_stage_channel = [8,16,32,64], dim=3)
decoder = ws.unet(encoder = encoder, output_channel = 3, dim=3)

input = torch.ones([3,3,128,128])

```
</details>



## 5. All modules (or functions)

Expand Down
2 changes: 1 addition & 1 deletion wama_modules/Encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@




densenet



Expand Down

0 comments on commit a553a1c

Please sign in to comment.