Skip to content

Commit

Permalink
readme typo (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsleh authored Mar 20, 2024
1 parent 226250d commit 86cec24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import torchseg
model = torchseg.Unet(
encoder_name="resnet50",
encoder_weights=True,
in_channels=3
in_channels=3,
classes=3,
)
```
Expand All @@ -50,7 +50,7 @@ You can also define a `functools.partial` callable as an activation/normalizatio
model = torchseg.Unet(
encoder_name="resnet50",
encoder_weights=True,
in_channels=3
in_channels=3,
classes=3,
encoder_params={
"act_layer": "prelu",
Expand Down

0 comments on commit 86cec24

Please sign in to comment.