-
Notifications
You must be signed in to change notification settings - Fork 310
Add DeepLabV3Plus segmentation #1799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 15 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
a089a8b
Add VGG16 backbone (#1737)
divyashreepathihalli 73b7bad
Add `ResNetBackbone` and `ResNetImageClassifier` (#1765)
james77777778 26afc7e
Add CSP DarkNet backbone and classifier (#1774)
sachinprasadhs 00ab4d5
Add `FeaturePyramidBackbone` and port weights from `timm` for `ResNet…
james77777778 9860756
Add DenseNet (#1775)
sachinprasadhs ececd14
Merge remote-tracking branch 'upstream/master' into keras-hub
divyashreepathihalli fd6f977
Add ViTDetBackbone (#1776)
divyashreepathihalli fc485d6
Add Mix transformer (#1780)
sachinprasadhs 2797851
update input_image_shape -> image_shape (#1785)
divyashreepathihalli 18f8880
Create __init__.py (#1788)
sachinprasadhs 2ee893c
Hack package build script to rename to keras-hub (#1793)
mattdangerw fdf6b6b
Add CLIP and T5XXL for StableDiffusionV3 (#1790)
james77777778 18dddf4
Add DeepLabV3Plus segmentation
sachinprasadhs 744b233
init file
sachinprasadhs 98c0811
api gen
sachinprasadhs b40617c
Add Segmentation base class
sachinprasadhs 7470b84
format fix
sachinprasadhs 68a5a62
add dependency package
sachinprasadhs 8473170
nit
sachinprasadhs beae2f4
Add Bounding Box Utils (#1791)
sineeli 9289ab7
mobilenet_v3 added in keras-nlp (#1782)
ushareng 09f470f
Pkgoogle/efficient net migration (#1778)
pkgoogle be8888d
Add the ResNet_vd backbone (#1766)
gowthamkpr 536474a
Add `VAEImageDecoder` for StableDiffusionV3 (#1796)
james77777778 0fbd84b
Replace `Backbone` with `keras.Model` in `CLIPTextEncoder` and `T5XXL…
james77777778 9143468
Add pyramid output for densenet, cspDarknet (#1801)
sachinprasadhs 791d7f6
Add `MMDiT` for StableDiffusionV3 (#1806)
james77777778 339669f
Add remaining bbox utils (#1804)
sineeli 0a978d2
Merge remote-tracking branch 'upstream/keras-hub' into segmentation
sachinprasadhs f31ad9c
Add Deeplabv3 and v3plus in the same backbone and segmenter
sachinprasadhs 2d82550
Merge 'upstream/keras-hub' into segmentation
sachinprasadhs fc1a3a5
fix imports
sachinprasadhs c172031
nit
sachinprasadhs 3b6c045
testcase changes
sachinprasadhs 704d119
Segmeter >> ImageSegmenter
sachinprasadhs 64050d5
resolve conflict
sachinprasadhs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Copyright 2024 The KerasNLP Authors | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| """DO NOT EDIT. | ||
|
|
||
| This file was autogenerated. Do not edit it by hand, | ||
| since your modifications would be overwritten. | ||
| """ | ||
|
|
||
| from keras_nlp.src.models.deeplab_v3_plus.deeplab_v3_plus_segmenter import ( | ||
| DeepLabV3Plus, | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Copyright 2024 The KerasNLP Authors | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.