forked from keras-team/keras-cv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement RepeatedAugmentation as a KerasCV API
more reading and fixes keras-team#372
- Loading branch information
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,80 @@ | ||
# Copyright 2023 The KerasCV 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. | ||
from tensorflow import keras | ||
|
||
from keras_cv.layers.preprocessing.base_image_augmentation_layer import ( | ||
BaseImageAugmentationLayer, | ||
) | ||
|
||
|
||
class RepeatedAugmentation(BaseImageAugmentationLayer): | ||
"""RepeatedAugmentation augments each image in a batch multiple times. | ||
This technique exists to emulate the behavior of stochastic gradient descent within | ||
the context of mini-batch gradient descent. When training large vision models, | ||
choosing a large batch size can introduce too much noise into aggregated gradients | ||
causing the overall batch's gradients to be less effective than gradients produced | ||
using smaller gradients. RepeatedAugmentation handles this by re-using the same | ||
image multiple times within a batch creating correlated samples. | ||
References: | ||
- [DEIT implementaton](https://github.com/facebookresearch/deit/blob/ee8893c8063f6937fec7096e47ba324c206e22b9/samplers.py#L8 | ||
) | ||
- [Original publication](https://openaccess.thecvf.com/content_CVPR_2020/papers/Hoffer_Augment_Your_Batch_Improving_Generalization_Through_Instance_Repetition_CVPR_2020_paper.pdf) | ||
""" | ||
|
||
def __init__(self, augmenters): | ||
self.augmenters = augmenters | ||
|
||
def _batch_augment(self, inputs): | ||
self._validate_inputs(inputs) | ||
images = inputs.get("images", None) | ||
labels = inputs.get("labels", None) | ||
|
||
if sorted(inputs.keys()) != ['images', 'labels']: | ||
raise ValueError( | ||
"RepeatedAugmentation() does not yet support tasks other than " | ||
"classification." | ||
) | ||
|
||
if images is None or labels is None: | ||
raise ValueError( | ||
"RepeatedAugmentation expects inputs in a dictionary with format " | ||
'{"images": images, "labels": labels}.' | ||
f"Got: inputs = {inputs}" | ||
) | ||
|
||
image_results = [] | ||
labels_results = [] | ||
|
||
for augmenter in self.augmenters: | ||
target = augmenter(inputs) | ||
image_results.append(target['images']) | ||
labels_results.append(target['labels']) | ||
|
||
image_results = tf.concat(image_results, axis=0) | ||
labels_results = tf.concat(labels_results, axis=0) | ||
|
||
return { | ||
'images': image_results, | ||
'labels': labels_results | ||
} | ||
|
||
def _augment(self, inputs): | ||
raise ValueError( | ||
"RepeatedAugmentation() only works in batched mode. If " | ||
"you would like to create batches from a single image, use " | ||
"`x = tf.expand_dims(x, axis=0)` on your input images and labels." | ||
) |
19 changes: 19 additions & 0 deletions
19
keras_cv/layers/preprocessing/repeated_augmentation_test.py
This file contains 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,19 @@ | ||
# Copyright 2023 The KerasCV 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. | ||
import pytest | ||
import tensorflow as tf | ||
|
||
|
||
class RepeatedAugmentationTest(tf.test.TestCase): | ||
pass |