keras-hub-nightly 0.19.0.dev202502090345__py3-none-any.whl → 0.19.0.dev202502110348__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 +3 -0
- keras_hub/src/models/mobilenet/mobilenet_backbone.py +679 -386
- keras_hub/src/models/mobilenet/mobilenet_image_classifier.py +73 -0
- keras_hub/src/models/mobilenet/mobilenet_image_classifier_preprocessor.py +14 -0
- keras_hub/src/models/mobilenet/mobilenet_image_converter.py +8 -0
- keras_hub/src/models/mobilenet/mobilenet_presets.py +15 -0
- keras_hub/src/models/mobilenet/util.py +23 -0
- keras_hub/src/utils/preset_utils.py +33 -1
- keras_hub/src/utils/timm/convert_mobilenet.py +201 -0
- keras_hub/src/utils/timm/preset_loader.py +3 -0
- keras_hub/src/version_utils.py +1 -1
- {keras_hub_nightly-0.19.0.dev202502090345.dist-info → keras_hub_nightly-0.19.0.dev202502110348.dist-info}/METADATA +1 -1
- {keras_hub_nightly-0.19.0.dev202502090345.dist-info → keras_hub_nightly-0.19.0.dev202502110348.dist-info}/RECORD +16 -11
- {keras_hub_nightly-0.19.0.dev202502090345.dist-info → keras_hub_nightly-0.19.0.dev202502110348.dist-info}/WHEEL +0 -0
- {keras_hub_nightly-0.19.0.dev202502090345.dist-info → keras_hub_nightly-0.19.0.dev202502110348.dist-info}/top_level.txt +0 -0
keras_hub/api/layers/__init__.py
CHANGED
@@ -52,6 +52,9 @@ from keras_hub.src.models.efficientnet.efficientnet_image_converter import (
|
|
52
52
|
EfficientNetImageConverter,
|
53
53
|
)
|
54
54
|
from keras_hub.src.models.mit.mit_image_converter import MiTImageConverter
|
55
|
+
from keras_hub.src.models.mobilenet.mobilenet_image_converter import (
|
56
|
+
MobileNetImageConverter,
|
57
|
+
)
|
55
58
|
from keras_hub.src.models.pali_gemma.pali_gemma_image_converter import (
|
56
59
|
PaliGemmaImageConverter,
|
57
60
|
)
|
keras_hub/api/models/__init__.py
CHANGED
@@ -228,6 +228,9 @@ from keras_hub.src.models.mobilenet.mobilenet_backbone import MobileNetBackbone
|
|
228
228
|
from keras_hub.src.models.mobilenet.mobilenet_image_classifier import (
|
229
229
|
MobileNetImageClassifier,
|
230
230
|
)
|
231
|
+
from keras_hub.src.models.mobilenet.mobilenet_image_classifier_preprocessor import (
|
232
|
+
MobileNetImageClassifierPreprocessor,
|
233
|
+
)
|
231
234
|
from keras_hub.src.models.object_detector import ObjectDetector
|
232
235
|
from keras_hub.src.models.object_detector import (
|
233
236
|
ObjectDetector as ImageObjectDetector,
|