HRKpython
HRKpython
I am using Keras with tensorflow backend and I have fine-tuned the last Conv layer and FC layer of my network based on VGG weights. Now I am using grad-CAM...
I created the Vgg model using keras with tensorflow backend and theano image ordering. For fully connected layers, I added the batch normalization after the relu activation layers. I loaded...
I am trying to train the YOLO v2 model on the custom images. I am using tensorflow version 1.11.0 and I am using the tensorflow.keras, so I modified the tutorial...
I am using Keras with tensorflow backend and I have fine-tuned the last Conv layer and FC layer of my network based on VGG weights. Now I am using CAM...
My tensorflow version is 1.14.0 I have downloaded the "mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.4_224_no_top.h5" and I am trying to load the model: ``` local_weights_file = '../mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.4_224_no_top.h5' input_tensor = Input(shape=(224,224, 3)) pre_trained_model = MobileNetV2( input_tensor...