Category: 10. Keras Applications

  • InceptionResNetV2

    InceptionResNetV2 function Instantiates the Inception-ResNet v2 architecture. Reference This function returns a Keras image classification model, optionally loaded with weights pre-trained on ImageNet. For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. Note: each Keras Application expects a specific kind…

  • InceptionV3

    InceptionV3 function Instantiates the Inception v3 architecture. Reference This function returns a Keras image classification model, optionally loaded with weights pre-trained on ImageNet. For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. Note: each Keras Application expects a specific kind…

  • NasNetLarge and NasNetMobile

    NASNetLarge function Instantiates a NASNet model in ImageNet mode. Reference Optionally loads weights pre-trained on ImageNet. Note that the data format convention used by the model is the one specified in your Keras config at ~/.keras/keras.json. Note: each Keras Application expects a specific kind of input preprocessing. For NASNet, call keras.applications.nasnet.preprocess_input on your inputs before passing them to the…

  • DenseNet

    DenseNet121 function Instantiates the Densenet121 architecture. Reference Optionally loads weights pre-trained on ImageNet. Note that the data format convention used by the model is the one specified in your Keras config at ~/.keras/keras.json. Note: each Keras Application expects a specific kind of input preprocessing. For DenseNet, call keras.applications.densenet.preprocess_input on your inputs before passing them to the model. Arguments Returns…

  • MobileNet, MobileNetV2, and MobileNetV3

    MobileNet function Instantiates the MobileNet architecture. Reference This function returns a Keras image classification model, optionally loaded with weights pre-trained on ImageNet. For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. Note: each Keras Application expects a specific kind of…

  • ResNet and ResNetV2

    ResNet50 function Instantiates the ResNet50 architecture. Reference For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. Note: each Keras Application expects a specific kind of input preprocessing. For ResNet, call keras.applications.resnet.preprocess_input on your inputs before passing them to the model. resnet.preprocess_input will convert the…

  • VGG16 and VGG19

    VGG16 function Instantiates the VGG16 model. Reference For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. The default input size for this model is 224×224. Note: each Keras Application expects a specific kind of input preprocessing. For VGG16, call keras.applications.vgg16.preprocess_input on your…

  • ConvNeXt Tiny, Small, Base, Large, XLarge

    ConvNeXtTiny function Instantiates the ConvNeXtTiny architecture. References For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. The base, large, and xlarge models were first pre-trained on the ImageNet-21k dataset and then fine-tuned on the ImageNet-1k dataset. The pre-trained parameters of the models were assembled…

  • EfficientNetV2 B0 to B3 and S, M, L

    EfficientNetV2B0 function Instantiates the EfficientNetV2B0 architecture. Reference This function returns a Keras image classification model, optionally loaded with weights pre-trained on ImageNet. For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. Note: each Keras Application expects a specific kind of…

  • EfficientNet B0 to B7

    EfficientNetB0 function Instantiates the EfficientNetB0 architecture. Reference This function returns a Keras image classification model, optionally loaded with weights pre-trained on ImageNet. For image classification use cases, see this page for detailed examples. For transfer learning use cases, make sure to read the guide to transfer learning & fine-tuning. Note: each Keras Application expects a specific kind of…