Skip to content

InceptionNet #2154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions keras_hub/src/models/inception/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from keras_hub.src.models.inception.image_classifier_preprocessor import (
InceptionImageClassifierPreprocessor,
)
from keras_hub.src.models.inception.inception_backbone import InceptionBackbone
from keras_hub.src.models.inception.inception_image_classifier import (
InceptionImageClassifier,
)
from keras_hub.src.models.inception.inception_presets import backbone_presets
from keras_hub.src.utils.preset_utils import register_presets

register_presets(backbone_presets, InceptionBackbone)
14 changes: 14 additions & 0 deletions keras_hub/src/models/inception/image_classifier_preprocessor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from keras_hub.src.api_export import keras_hub_export
from keras_hub.src.models.image_classifier_preprocessor import (
ImageClassifierPreprocessor
)
from keras_hub.src.models.inception.inception_backbone import InceptionBackbone
from keras_hub.src.models.inception.inception_image_converter import (
InceptionImageConverter,
)


@keras_hub_export("keras_hub.models.InceptionImageClassifierPreprocessor")
class InceptionImageClassifierPreprocessor(ImageClassifierPreprocessor):
backbone_cls = InceptionBackbone
image_converter_cls = InceptionImageConverter
Loading
Loading