keras-hub-nightly 0.23.0.dev202510090417__py3-none-any.whl → 0.23.0.dev202510110411__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.
Potentially problematic release.
This version of keras-hub-nightly might be problematic. Click here for more details.
- keras_hub/layers/__init__.py +3 -0
- keras_hub/models/__init__.py +9 -0
- keras_hub/src/models/mobilenetv5/__init__.py +0 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_attention.py +699 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_backbone.py +396 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_blocks.py +890 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_builder.py +436 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_image_classifier.py +157 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_image_classifier_preprocessor.py +16 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_image_converter.py +10 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_layers.py +462 -0
- keras_hub/src/models/mobilenetv5/mobilenetv5_utils.py +146 -0
- keras_hub/src/models/qwen3_moe/__init__.py +5 -0
- keras_hub/src/models/qwen3_moe/qwen3_moe_presets.py +30 -0
- keras_hub/src/utils/preset_utils.py +9 -2
- keras_hub/src/utils/timm/convert_mobilenetv5.py +321 -0
- keras_hub/src/utils/timm/preset_loader.py +8 -4
- keras_hub/src/version.py +1 -1
- {keras_hub_nightly-0.23.0.dev202510090417.dist-info → keras_hub_nightly-0.23.0.dev202510110411.dist-info}/METADATA +1 -1
- {keras_hub_nightly-0.23.0.dev202510090417.dist-info → keras_hub_nightly-0.23.0.dev202510110411.dist-info}/RECORD +22 -9
- {keras_hub_nightly-0.23.0.dev202510090417.dist-info → keras_hub_nightly-0.23.0.dev202510110411.dist-info}/WHEEL +0 -0
- {keras_hub_nightly-0.23.0.dev202510090417.dist-info → keras_hub_nightly-0.23.0.dev202510110411.dist-info}/top_level.txt +0 -0
keras_hub/layers/__init__.py
CHANGED
|
@@ -108,6 +108,9 @@ from keras_hub.src.models.mit.mit_image_converter import (
|
|
|
108
108
|
from keras_hub.src.models.mobilenet.mobilenet_image_converter import (
|
|
109
109
|
MobileNetImageConverter as MobileNetImageConverter,
|
|
110
110
|
)
|
|
111
|
+
from keras_hub.src.models.mobilenetv5.mobilenetv5_image_converter import (
|
|
112
|
+
MobileNetV5ImageConverter as MobileNetV5ImageConverter,
|
|
113
|
+
)
|
|
111
114
|
from keras_hub.src.models.moonshine.moonshine_audio_converter import (
|
|
112
115
|
MoonshineAudioConverter as MoonshineAudioConverter,
|
|
113
116
|
)
|
keras_hub/models/__init__.py
CHANGED
|
@@ -428,6 +428,15 @@ from keras_hub.src.models.mobilenet.mobilenet_image_classifier import (
|
|
|
428
428
|
from keras_hub.src.models.mobilenet.mobilenet_image_classifier_preprocessor import (
|
|
429
429
|
MobileNetImageClassifierPreprocessor as MobileNetImageClassifierPreprocessor,
|
|
430
430
|
)
|
|
431
|
+
from keras_hub.src.models.mobilenetv5.mobilenetv5_backbone import (
|
|
432
|
+
MobileNetV5Backbone as MobileNetV5Backbone,
|
|
433
|
+
)
|
|
434
|
+
from keras_hub.src.models.mobilenetv5.mobilenetv5_image_classifier import (
|
|
435
|
+
MobileNetV5ImageClassifier as MobileNetV5ImageClassifier,
|
|
436
|
+
)
|
|
437
|
+
from keras_hub.src.models.mobilenetv5.mobilenetv5_image_classifier_preprocessor import (
|
|
438
|
+
MobileNetV5ImageClassifierPreprocessor as MobileNetV5ImageClassifierPreprocessor,
|
|
439
|
+
)
|
|
431
440
|
from keras_hub.src.models.moonshine.moonshine_audio_to_text import (
|
|
432
441
|
MoonshineAudioToText as MoonshineAudioToText,
|
|
433
442
|
)
|
|
File without changes
|