Skip to content
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

[RetinaNet] Image Converter and ObjectDetector #1906

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c1d7955
Rebased phase 1 changes
sineeli Sep 26, 2024
deaeac4
Rebased phase 1 changes
sineeli Sep 26, 2024
1cdd164
Merge branch 'sineeli/add-retinanet-phase-2' of https://github.com/si…
sineeli Sep 27, 2024
f90add8
nit
sineeli Sep 27, 2024
fb0c733
Merge remote-tracking branch 'upstream/master' into sineeli/add-retin…
sineeli Oct 2, 2024
6c26534
Retina Phase 2
sineeli Oct 3, 2024
baee6e2
nit
sineeli Oct 3, 2024
5ee905e
Expose Anchor Generator as layer, docstring correction and test corre…
sineeli Oct 4, 2024
84533d4
nit
sineeli Oct 4, 2024
b6ceb8f
Add missing args for prediction heads
sineeli Oct 4, 2024
4c7a28b
- Use FeaturePyramidBackbone cls for RetinaNet backbone.
sineeli Oct 8, 2024
3f915dc
fix decoding error
sineeli Oct 8, 2024
f0da549
- Add ground truth arg for RetinaNet model and remove source and targ…
sineeli Oct 8, 2024
05fdefe
nit
sineeli Oct 9, 2024
3b26d3a
Subclass Imageconverter and overload call method for object detection…
sineeli Oct 9, 2024
0df121a
Revert "Subclass Imageconverter and overload call method for object d…
sineeli Oct 9, 2024
8697240
add names to layers
sineeli Oct 9, 2024
394faf0
correct fpn coarser level as per torch retinanet model
sineeli Oct 9, 2024
33d81e9
nit
sineeli Oct 9, 2024
79502d9
Polish Prediction head and fpn layers to include flags and norm layers
sineeli Oct 9, 2024
72a02c4
nit
sineeli Oct 9, 2024
a28a033
nit
sineeli Oct 9, 2024
50686e0
add prior probability flag for prediction head to use it for classifi…
sineeli Oct 9, 2024
8dc5483
compute_shape seems redudant here and correct layers for channels_first
sineeli Oct 9, 2024
9f7d8ef
keep compute_output_shape for fpn
sineeli Oct 9, 2024
6801789
nit
sineeli Oct 10, 2024
7e57cf1
Change AnchorGen Implementation as per torch
sineeli Oct 10, 2024
8ac617c
correct the source format of anchors format
sineeli Oct 10, 2024
03efed5
use plain rescaling and normalization no resizing for od models as it…
sineeli Oct 11, 2024
5704950
use single bbox format for model
sineeli Oct 11, 2024
7c1d1de
- Add arg for encoding format
sineeli Oct 11, 2024
2414f00
make anchor generator optional
sineeli Oct 11, 2024
064c971
init as layers for anchor generator and label encoder and as one more…
sineeli Oct 11, 2024
4ff8f13
nit
sineeli Oct 11, 2024
c4f752d
- only consider levels from min level to backbone maxlevel fro featur…
sineeli Oct 12, 2024
bde84b9
nit
sineeli Oct 12, 2024
caacc99
nit
sineeli Oct 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions keras_hub/api/layers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
from keras_hub.src.models.resnet.resnet_image_converter import (
ResNetImageConverter,
)
from keras_hub.src.models.retinanet.anchor_generator import AnchorGenerator
from keras_hub.src.models.retinanet.retinanet_image_converter import (
RetinaNetImageConverter,
)
from keras_hub.src.models.sam.sam_image_converter import SAMImageConverter
from keras_hub.src.models.sam.sam_mask_decoder import SAMMaskDecoder
from keras_hub.src.models.sam.sam_prompt_encoder import SAMPromptEncoder
Expand Down
11 changes: 11 additions & 0 deletions keras_hub/api/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@
from keras_hub.src.models.image_classifier_preprocessor import (
ImageClassifierPreprocessor,
)
from keras_hub.src.models.image_object_detector import ImageObjectDetector
from keras_hub.src.models.image_object_detector_preprocessor import (
ImageObjectDetectorPreprocessor,
)
from keras_hub.src.models.image_segmenter import ImageSegmenter
from keras_hub.src.models.image_segmenter_preprocessor import (
ImageSegmenterPreprocessor,
Expand Down Expand Up @@ -233,6 +237,13 @@
from keras_hub.src.models.resnet.resnet_image_classifier_preprocessor import (
ResNetImageClassifierPreprocessor,
)
from keras_hub.src.models.retinanet.retinanet_backbone import RetinaNetBackbone
from keras_hub.src.models.retinanet.retinanet_object_detector import (
RetinaNetObjectDetector,
)
from keras_hub.src.models.retinanet.retinanet_object_detector_preprocessor import (
RetinaNetObjectDetectorPreprocessor,
)
from keras_hub.src.models.roberta.roberta_backbone import RobertaBackbone
from keras_hub.src.models.roberta.roberta_masked_lm import RobertaMaskedLM
from keras_hub.src.models.roberta.roberta_masked_lm_preprocessor import (
Expand Down
84 changes: 84 additions & 0 deletions keras_hub/src/models/image_object_detector.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
import keras

from keras_hub.src.api_export import keras_hub_export
from keras_hub.src.models.task import Task


@keras_hub_export("keras_hub.models.ImageObjectDetector")
class ImageObjectDetector(Task):
"""Base class for all image object detections tasks.

The `ImageObjectDetector` tasks wrap a `keras_hub.models.Backbone` and
a `keras_hub.models.Preprocessor` to create a model that can be used for
image classification. `ImageObjectDetector` tasks take an additional
sineeli marked this conversation as resolved.
Show resolved Hide resolved
`num_classes` argument, controlling the number of predicted output classes.

To fine-tune with `fit()`, pass a dataset containing tuples of `(x, y)`
labels where `x` is a string and `y` is dictionary with `boxes` and
`classes`.

All `ImageObjectDetector` tasks include a `from_preset()` constructor which
can be used to load a pre-trained config and weights.
"""

def compile(
self,
optimizer="auto",
box_loss="auto",
classification_loss="auto",
metrics=None,
**kwargs,
):
"""Configures the `ImageObjectDetector` task for training.

The `ImageObjectDetector` task extends the default compilation signature of
`keras.Model.compile` with defaults for `optimizer`, `loss`, and
`metrics`. To override these defaults, pass any value
to these arguments during compilation.

Args:
optimizer: `"auto"`, an optimizer name, or a `keras.Optimizer`
instance. Defaults to `"auto"`, which uses the default optimizer
for the given model and task. See `keras.Model.compile` and
`keras.optimizers` for more info on possible `optimizer` values.
box_loss: `"auto"`, a loss name, or a `keras.losses.Loss` instance.
Defaults to `"auto"`, where a
`keras.losses.Huber` loss will be
applied for the object detector task. See
`keras.Model.compile` and `keras.losses` for more info on
possible `loss` values.
classification_loss: `"auto"`, a loss name, or a `keras.losses.Loss`
instance. Defaults to `"auto"`, where a
`keras.losses.BinaryFocalCrossentropy` loss will be
applied for the object detector task. See
`keras.Model.compile` and `keras.losses` for more info on
possible `loss` values.
metrics: `a list of metrics to be evaluated by
the model during training and testing. Defaults to `None`.
See `keras.Model.compile` and `keras.metrics` for
more info on possible `metrics` values.
**kwargs: See `keras.Model.compile` for a full list of arguments
supported by the compile method.
"""
if optimizer == "auto":
optimizer = keras.optimizers.Adam(5e-5)
if box_loss == "auto":
box_loss = keras.losses.Huber(reduction="sum")
if classification_loss == "auto":
activation = getattr(self, "activation", None)
activation = keras.activations.get(activation)
from_logits = activation != keras.activations.sigmoid
classification_loss = keras.losses.BinaryFocalCrossentropy(
from_logits=from_logits, reduction="sum"
)
if metrics is not None:
raise ValueError("User metrics not yet supported")

losses = {"box": box_loss, "classification": classification_loss}

super().compile(
optimizer=optimizer,
loss=losses,
metrics=metrics,
**kwargs,
)
118 changes: 118 additions & 0 deletions keras_hub/src/models/image_object_detector_preprocessor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
import keras

from keras_hub.src.api_export import keras_hub_export
from keras_hub.src.bounding_box.converters import convert_format
from keras_hub.src.models.preprocessor import Preprocessor
from keras_hub.src.utils.tensor_utils import preprocessing_function


@keras_hub_export("keras_hub.models.ImageObjectDetectorPreprocessor")
class ImageObjectDetectorPreprocessor(Preprocessor):
"""Base class for object detector preprocessing layers.

`ImageObjectDetectorPreprocessor` tasks wraps a
`keras_hub.layers.Preprocessor` to create a preprocessing layer for
object detection tasks. It is intended to be paired with a
`keras_hub.models.ImageObjectDetector` task.

All `ImageObjectDetectorPreprocessor` take three inputs, `x`, `y`, and
`sample_weight`. `x`, the first input, should always be included. It can
be a image or batch of images. See examples below. `y` and `sample_weight`
are optional inputs that will be passed through unaltered. Usually, `y` will
be the a dict of `{"boxes": Tensor(batch_size, num_boxes, 4),
"classes": (batch_size, num_boxes)}.

The layer will returns either `x`, an `(x, y)` tuple if labels were provided,
or an `(x, y, sample_weight)` tuple if labels and sample weight were
provided. `x` will be the input images after all model preprocessing has
been applied.

All `ImageObjectDetectorPreprocessor` tasks include a `from_preset()`
constructor which can be used to load a pre-trained config and vocabularies.
You can call the `from_preset()` constructor directly on this base class, in
which case the correct class for your model will be automatically
instantiated.

Args:
image_converter: Preprocessing pipeline for images.
source_bounding_box_format: str. The format of the source bounding boxes.
supported formats include:
- `"rel_yxyx"`
- `"rel_xyxy"`
- `"rel_xywh"
Defaults to `"rel_yxyx"`.
target_bounding_box_format: str. TODO
https://github.com/keras-team/keras-hub/issues/1907


Examples.
```python
preprocessor = keras_hub.models.ImageObjectDetectorPreprocessor.from_preset(
"retinanet_resnet50",
)

# Resize a single image for resnet 50.
x = np.ones((512, 512, 3))
x = preprocessor(x)

# Resize a labeled image.
x, y = np.ones((512, 512, 3)), 1
x, y = preprocessor(x, y)

# Resize a batch of labeled images.
x, y = [np.ones((512, 512, 3)), np.zeros((512, 512, 3))], [1, 0]
x, y = preprocessor(x, y)

# Use a `tf.data.Dataset`.
ds = tf.data.Dataset.from_tensor_slices((x, y)).batch(2)
ds = ds.map(preprocessor, num_parallel_calls=tf.data.AUTOTUNE)
```
"""

def __init__(
self,
target_bounding_box_format,
source_bounding_box_format="rel_yxyx",
image_converter=None,
**kwargs,
):
super().__init__(**kwargs)
if "rel" not in source_bounding_box_format:
raise ValueError(
f"Only relative bounding box formats are supported "
sineeli marked this conversation as resolved.
Show resolved Hide resolved
f"Received source_bounding_box_format="
f"`{source_bounding_box_format}`. "
f"Please provide a source bounding box format from one of "
f"the following `rel_xyxy` or `rel_yxyx` or `rel_xywh`. "
f"Ensure that the provided ground truth bounding boxes are "
f"normalized and relative to the image size. "
)
self.source_bounding_box_format = source_bounding_box_format
self.target_bounding_box_format = target_bounding_box_format
self.image_converter = image_converter

@preprocessing_function
def call(self, x, y=None, sample_weight=None):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in this case, the bounding box updates needs to be addressed.

if self.image_converter:
x = self.image_converter(x)

if y is not None:
y = convert_format(
y,
source=self.source_bounding_box_format,
target=self.target_bounding_box_format,
images=x,
)

return keras.utils.pack_x_y_sample_weight(x, y, sample_weight)

def get_config(self):
config = super().get_config()
config.update(
{
"source_bounding_box_format": self.source_bounding_box_format,
"target_bounding_box_format": self.target_bounding_box_format,
}
)

return config
2 changes: 2 additions & 0 deletions keras_hub/src/models/retinanet/anchor_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
import keras
from keras import ops

from keras_hub.src.api_export import keras_hub_export
from keras_hub.src.bounding_box.converters import convert_format


@keras_hub_export("keras_hub.layers.AnchorGenerator")
class AnchorGenerator(keras.layers.Layer):
"""Generates anchor boxes for object detection tasks.

Expand Down
Loading
Loading