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

### Summary This is a feature request to see if it is possible to remove hard dependency of h5py from pip install? At the moment, keras_applications only have two dependencies...

I am using a NASNetMobile. `nvidia-smi` somehow shows that GPU utilization is jumping between 12% and 95%. With mean somewhere between. I know from other trainings that GPU utilization is...

When I am creating an object of Class ImageDataGenerator I am getting an error as follows: TypeError Traceback (most recent call last) in 11 height_shift_range=0.05, # randomly shift images vertically...

Hi, I'm setting up my keras layer for glove embeddings as follows: X = X[:set_size] y = y[:set_size] yy = [] for i in range(0,len(X)): yy = np.concatenate((yy,X[i,0:set_size]), axis=0) X...

``` pretrain_vgg = tf.keras.applications.vgg16.VGG16(include_top=False, weights='imagenet', input_tensor=None, input_shape=(224,224,3),#

I'm creating my embedding from glove.6B file as follows embedding_layer = Embedding(input_dim=embedding_matrix.shape[0], output_dim=embedding_matrix.shape[1], input_length=max_len, weights=[embedding_matrix], trainable=False, name='embedding_layer') sequence_input = Input(shape=(max_len,), dtype='int32') tf.squeeze(tf.cast(sequence_input, tf.string)) embedded_sequences = embedding_layer(sequence_input) return embedded_sequences This gets...

Hi, [I have seen that](https://keras.io/applications/#xception) many pre-trained models are released on licenses which allow people to use the models commercially. If you have used public datasets like ImageNet for training...

Hello Team, I trained Depthwise Mobilenet and got h5 file of size around `24 MB. ` I converted this h5 file to tensorflow_js supported file format(JSON), and used technique of...

When instantiating `MobileNetV2` without special `kwargs` I get the error: ``` Using TensorFlow backend. Traceback (most recent call last): [...] File "/usr/local/lib/python2.7/dist-packages/keras_applications/mobilenet_v2.py", line 267, in MobileNetV2 if backend.image_data_format() == 'channels_first':...

I trained a ResNet50 using the GTSRB data set (http://benchmark.ini.rub.de/?section=gtsrb&subsection=news), then I "augmented" the previously employed GTSRB data set by randomly generated images of the appropriate dimension and repeated the...