keras-hub-nightly 0.19.0.dev202503060350__py3-none-any.whl → 0.20.0.dev202503140353__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- keras_hub/api/layers/__init__.py +3 -0
- keras_hub/api/models/__init__.py +5 -4
- keras_hub/src/models/cspnet/__init__.py +5 -0
- keras_hub/src/models/cspnet/cspnet_backbone.py +1279 -0
- keras_hub/src/models/cspnet/cspnet_image_classifier.py +12 -0
- keras_hub/src/models/cspnet/cspnet_image_classifier_preprocessor.py +14 -0
- keras_hub/src/models/cspnet/cspnet_image_converter.py +8 -0
- keras_hub/src/models/cspnet/cspnet_presets.py +16 -0
- keras_hub/src/models/gemma/gemma_attention.py +23 -12
- keras_hub/src/models/mobilenet/mobilenet_backbone.py +18 -1
- keras_hub/src/models/mobilenet/mobilenet_image_classifier.py +4 -1
- keras_hub/src/models/mobilenet/mobilenet_presets.py +38 -2
- keras_hub/src/models/siglip/siglip_presets.py +206 -10
- keras_hub/src/models/siglip/siglip_text_encoder.py +7 -1
- keras_hub/src/utils/keras_utils.py +32 -0
- keras_hub/src/utils/preset_utils.py +1 -0
- keras_hub/src/utils/timm/convert_cspnet.py +165 -0
- keras_hub/src/utils/timm/convert_mobilenet.py +120 -44
- keras_hub/src/utils/timm/preset_loader.py +9 -0
- keras_hub/src/version_utils.py +1 -1
- {keras_hub_nightly-0.19.0.dev202503060350.dist-info → keras_hub_nightly-0.20.0.dev202503140353.dist-info}/METADATA +1 -1
- {keras_hub_nightly-0.19.0.dev202503060350.dist-info → keras_hub_nightly-0.20.0.dev202503140353.dist-info}/RECORD +24 -20
- {keras_hub_nightly-0.19.0.dev202503060350.dist-info → keras_hub_nightly-0.20.0.dev202503140353.dist-info}/WHEEL +1 -1
- keras_hub/src/models/csp_darknet/__init__.py +0 -0
- keras_hub/src/models/csp_darknet/csp_darknet_backbone.py +0 -427
- keras_hub/src/models/csp_darknet/csp_darknet_image_classifier.py +0 -10
- {keras_hub_nightly-0.19.0.dev202503060350.dist-info → keras_hub_nightly-0.20.0.dev202503140353.dist-info}/top_level.txt +0 -0
keras_hub/api/layers/__init__.py
CHANGED
@@ -42,6 +42,9 @@ from keras_hub.src.models.basnet.basnet_image_converter import (
|
|
42
42
|
BASNetImageConverter,
|
43
43
|
)
|
44
44
|
from keras_hub.src.models.clip.clip_image_converter import CLIPImageConverter
|
45
|
+
from keras_hub.src.models.cspnet.cspnet_image_converter import (
|
46
|
+
CSPNetImageConverter,
|
47
|
+
)
|
45
48
|
from keras_hub.src.models.deeplab_v3.deeplab_v3_image_converter import (
|
46
49
|
DeepLabV3ImageConverter,
|
47
50
|
)
|
keras_hub/api/models/__init__.py
CHANGED
@@ -61,11 +61,12 @@ from keras_hub.src.models.clip.clip_preprocessor import CLIPPreprocessor
|
|
61
61
|
from keras_hub.src.models.clip.clip_text_encoder import CLIPTextEncoder
|
62
62
|
from keras_hub.src.models.clip.clip_tokenizer import CLIPTokenizer
|
63
63
|
from keras_hub.src.models.clip.clip_vision_encoder import CLIPVisionEncoder
|
64
|
-
from keras_hub.src.models.
|
65
|
-
|
64
|
+
from keras_hub.src.models.cspnet.cspnet_backbone import CSPNetBackbone
|
65
|
+
from keras_hub.src.models.cspnet.cspnet_image_classifier import (
|
66
|
+
CSPNetImageClassifier,
|
66
67
|
)
|
67
|
-
from keras_hub.src.models.
|
68
|
-
|
68
|
+
from keras_hub.src.models.cspnet.cspnet_image_classifier_preprocessor import (
|
69
|
+
CSPNetImageClassifierPreprocessor,
|
69
70
|
)
|
70
71
|
from keras_hub.src.models.deberta_v3.deberta_v3_backbone import (
|
71
72
|
DebertaV3Backbone,
|