Skip to content

Commit

Permalink
Remove unused arg in DeepLabV3+ example (keras-team#1710)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristofKaufmann authored Jan 5, 2024
1 parent 801b68a commit b124d09
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions examples/vision/deeplabv3_plus.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Title: Multiclass semantic segmentation using DeepLabV3+
Author: [Soumik Rakshit](http://github.com/soumik12345)
Date created: 2021/08/31
Last modified: 2023/07/19
Last modified: 2024/01/05
Description: Implement DeepLabV3+ architecture for Multi-class Semantic Segmentation.
Accelerator: GPU
Converted to Keras 3: [Muhammad Anas Raza](https://anasrz.com)
Expand Down Expand Up @@ -134,7 +134,6 @@ def convolution_block(
num_filters=256,
kernel_size=3,
dilation_rate=1,
padding="same",
use_bias=False,
):
x = layers.Conv2D(
Expand Down
5 changes: 2 additions & 3 deletions examples/vision/ipynb/deeplabv3_plus.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"\n",
"**Author:** [Soumik Rakshit](http://github.com/soumik12345)<br>\n",
"**Date created:** 2021/08/31<br>\n",
"**Last modified:** 2023/07/19<br>\n",
"**Last modified:** 2024/01/05<br>\n",
"**Description:** Implement DeepLabV3+ architecture for Multi-class Semantic Segmentation."
]
},
Expand Down Expand Up @@ -194,7 +194,6 @@
" num_filters=256,\n",
" kernel_size=3,\n",
" dilation_rate=1,\n",
" padding=\"same\",\n",
" use_bias=False,\n",
"):\n",
" x = layers.Conv2D(\n",
Expand Down Expand Up @@ -491,4 +490,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}
3 changes: 1 addition & 2 deletions examples/vision/md/deeplabv3_plus.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Author:** [Soumik Rakshit](http://github.com/soumik12345)<br>
**Date created:** 2021/08/31<br>
**Last modified:** 2023/07/19<br>
**Last modified:** 2024/01/05<br>
**Description:** Implement DeepLabV3+ architecture for Multi-class Semantic Segmentation.


Expand Down Expand Up @@ -158,7 +158,6 @@ def convolution_block(
num_filters=256,
kernel_size=3,
dilation_rate=1,
padding="same",
use_bias=False,
):
x = layers.Conv2D(
Expand Down

0 comments on commit b124d09

Please sign in to comment.