-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix_clip_jax' of github.com:divyashreepathihalli/keras-…
…cv into clip_refactor
- Loading branch information
Showing
16 changed files
with
2,184 additions
and
4 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
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
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,13 @@ | ||
# Copyright 2024 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. |
158 changes: 158 additions & 0 deletions
158
keras_cv/models/backbones/video_swin/video_swin_aliases.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,158 @@ | ||
# Copyright 2024 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 copy | ||
|
||
from keras_cv.models.backbones.video_swin.video_swin_backbone import ( | ||
VideoSwinBackbone, | ||
) | ||
from keras_cv.models.backbones.video_swin.video_swin_backbone_presets import ( | ||
backbone_presets, | ||
) | ||
from keras_cv.utils.python_utils import classproperty | ||
|
||
ALIAS_DOCSTRING = """VideoSwin{size}Backbone model. | ||
Reference: | ||
- [Video Swin Transformer](https://arxiv.org/abs/2106.13230) | ||
- [Video Swin Transformer GitHub](https://github.com/SwinTransformer/Video-Swin-Transformer) | ||
For transfer learning use cases, make sure to read the | ||
[guide to transfer learning & fine-tuning](https://keras.io/guides/transfer_learning/). | ||
Examples: | ||
```python | ||
input_data = np.ones(shape=(1, 32, 224, 224, 3)) | ||
# Randomly initialized backbone | ||
model = VideoSwin{size}Backbone() | ||
output = model(input_data) | ||
``` | ||
""" # noqa: E501 | ||
|
||
|
||
class VideoSwinTBackbone(VideoSwinBackbone): | ||
def __new__( | ||
cls, | ||
embed_dim=96, | ||
depths=[2, 2, 6, 2], | ||
num_heads=[3, 6, 12, 24], | ||
window_size=[8, 7, 7], | ||
include_rescaling=True, | ||
**kwargs, | ||
): | ||
kwargs.update( | ||
{ | ||
"embed_dim": embed_dim, | ||
"depths": depths, | ||
"num_heads": num_heads, | ||
"window_size": window_size, | ||
"include_rescaling": include_rescaling, | ||
} | ||
) | ||
return VideoSwinBackbone.from_preset("videoswin_tiny", **kwargs) | ||
|
||
@classproperty | ||
def presets(cls): | ||
"""Dictionary of preset names and configurations.""" | ||
return { | ||
"videoswin_tiny_kinetics400": copy.deepcopy( | ||
backbone_presets["videoswin_tiny_kinetics400"] | ||
), | ||
} | ||
|
||
@classproperty | ||
def presets_with_weights(cls): | ||
"""Dictionary of preset names and configurations that include | ||
weights.""" | ||
return cls.presets | ||
|
||
|
||
class VideoSwinSBackbone(VideoSwinBackbone): | ||
def __new__( | ||
cls, | ||
embed_dim=96, | ||
depths=[2, 2, 18, 2], | ||
num_heads=[3, 6, 12, 24], | ||
window_size=[8, 7, 7], | ||
include_rescaling=True, | ||
**kwargs, | ||
): | ||
kwargs.update( | ||
{ | ||
"embed_dim": embed_dim, | ||
"depths": depths, | ||
"num_heads": num_heads, | ||
"window_size": window_size, | ||
"include_rescaling": include_rescaling, | ||
} | ||
) | ||
return VideoSwinBackbone.from_preset("videoswin_small", **kwargs) | ||
|
||
@classproperty | ||
def presets(cls): | ||
"""Dictionary of preset names and configurations.""" | ||
return { | ||
"videoswin_small_kinetics400": copy.deepcopy( | ||
backbone_presets["videoswin_small_kinetics400"] | ||
), | ||
} | ||
|
||
@classproperty | ||
def presets_with_weights(cls): | ||
"""Dictionary of preset names and configurations that include | ||
weights.""" | ||
return cls.presets | ||
|
||
|
||
class VideoSwinBBackbone(VideoSwinBackbone): | ||
def __new__( | ||
cls, | ||
embed_dim=128, | ||
depths=[2, 2, 18, 2], | ||
num_heads=[4, 8, 16, 32], | ||
window_size=[8, 7, 7], | ||
include_rescaling=True, | ||
**kwargs, | ||
): | ||
kwargs.update( | ||
{ | ||
"embed_dim": embed_dim, | ||
"depths": depths, | ||
"num_heads": num_heads, | ||
"window_size": window_size, | ||
"include_rescaling": include_rescaling, | ||
} | ||
) | ||
return VideoSwinBackbone.from_preset("videoswin_base", **kwargs) | ||
|
||
@classproperty | ||
def presets(cls): | ||
"""Dictionary of preset names and configurations.""" | ||
return { | ||
"videoswin_base_kinetics400": copy.deepcopy( | ||
backbone_presets["videoswin_base_kinetics400"] | ||
), | ||
} | ||
|
||
@classproperty | ||
def presets_with_weights(cls): | ||
"""Dictionary of preset names and configurations that include | ||
weights.""" | ||
return cls.presets | ||
|
||
|
||
setattr(VideoSwinTBackbone, "__doc__", ALIAS_DOCSTRING.format(size="T")) | ||
setattr(VideoSwinSBackbone, "__doc__", ALIAS_DOCSTRING.format(size="S")) | ||
setattr(VideoSwinBBackbone, "__doc__", ALIAS_DOCSTRING.format(size="B")) |
Oops, something went wrong.