Divyasreepat
commited on
Commit
•
c1e1d4a
1
Parent(s):
19f2f93
Update README.md with new model card content
Browse files
README.md
CHANGED
@@ -5,7 +5,7 @@ tags:
|
|
5 |
- image-segmentation
|
6 |
pipeline_tag: image-segmentation
|
7 |
---
|
8 |
-
|
9 |
DeepLabv3+ model is developed by Google for semantic segmentation. This guide demonstrates how to finetune and use DeepLabv3+ model for image semantic segmentaion with KerasCV. Its architecture that combines atrous convolutions, contextual information aggregation, and powerful backbones to achieve accurate and detailed semantic segmentation. The DeepLabv3+ model has been shown to achieve state-of-the-art results on a variety of image segmentation benchmarks. This model is supported in both KerasCV and KerasHub. KerasCV will no longer be actively developed, so please try to use KerasHub.
|
10 |
`
|
11 |
Weights are released under the [Apache 2 License](https://apache.org/licenses/LICENSE-2.0). Keras model code is released under the [Apache 2 License](https://github.com/keras-team/keras-hub/blob/master/LICENSE).
|
@@ -88,4 +88,4 @@ segmenter = keras_hub.models.DeepLabV3ImageSegmenter.from_preset(
|
|
88 |
segmenter.preprocessor.image_size = (96, 96)
|
89 |
segmenter.fit(images, labels, epochs=3)
|
90 |
segmenter.predict(images) # Trained 2 class segmentation.
|
91 |
-
```
|
|
|
5 |
- image-segmentation
|
6 |
pipeline_tag: image-segmentation
|
7 |
---
|
8 |
+
### Model Overview
|
9 |
DeepLabv3+ model is developed by Google for semantic segmentation. This guide demonstrates how to finetune and use DeepLabv3+ model for image semantic segmentaion with KerasCV. Its architecture that combines atrous convolutions, contextual information aggregation, and powerful backbones to achieve accurate and detailed semantic segmentation. The DeepLabv3+ model has been shown to achieve state-of-the-art results on a variety of image segmentation benchmarks. This model is supported in both KerasCV and KerasHub. KerasCV will no longer be actively developed, so please try to use KerasHub.
|
10 |
`
|
11 |
Weights are released under the [Apache 2 License](https://apache.org/licenses/LICENSE-2.0). Keras model code is released under the [Apache 2 License](https://github.com/keras-team/keras-hub/blob/master/LICENSE).
|
|
|
88 |
segmenter.preprocessor.image_size = (96, 96)
|
89 |
segmenter.fit(images, labels, epochs=3)
|
90 |
segmenter.predict(images) # Trained 2 class segmentation.
|
91 |
+
```
|