keras-applications icon indicating copy to clipboard operation
keras-applications copied to clipboard

Reference implementations of popular deep learning models.

Results 61 keras-applications issues
Sort by recently updated
recently updated
newest added

I want to do transfer learning using MobileNetV3. I see on [here](https://github.com/keras-team/keras-applications/blob/master/keras_applications/mobilenet_v3.py) that MobileNetV3 is available, but I don't see it either in the [Keras website](https://keras.io/applications/) or on [TF.](https://www.tensorflow.org/api_docs/python/tf/keras/applications?version=nightly) Why...

I wanted to change the Implementation of MobilebetV3Small for my use case. so I cloned the keras-applications and tried to run the mobileNetV3 directly from the source. but it had...

Hi! could you please add resnet18 and resnet34 with their pre-trained weights on Imagenet? Thanks!

Hi, I train my model using keras, and I load data using this function Resize the images to a fixed input size, and rescale the input channels to a range...

Setting a different image size with include_top = False and weights = 'imagenet' as below, ``` base_model_transfer = NASNetLarge(input_shape=(image_shape[0],image_shape[1],3), include_top=False,\ weights='imagenet', input_tensor=None, \ pooling='max', classes=train_generator.num_classes) ``` I obtain a ValueError...

### Summary I'm able to fit several Keras applications (VGG16, InceptionResNetV2, Xception, etc) without error, but when I attempt to fit NASNetLarge with the line of code shown below, I...

### Summary ### Environment - Python version: 3.6.9 - Keras version: 2.2.4-tf - Keras-applications version:1.0.8 - Keras backend with version: TF 2.0 ### Logs or source codes for reproduction https://github.com/keras-team/keras-applications/blob/976050c468ff949bcbd9b9cf64fe1d5c81db3f3a/keras_applications/resnet_common.py#L90...

It is truly useful but It was last updated a year ago.

Hi, i have been trying to create a `ResNet50D` , mainly by adding an `avg_pool()` layer before the `1x1 conv2D` in the downsampling block ,but I am getting dimension error...

Hi, I am trying to run a mask r-cnn code for dental segmentation images training based on the coco and Mask_RCNN, the code should work perfectly, but since my Keras...