netVLAD
netVLAD copied to clipboard
netVLAD implementation in TensorFlow
I'm currently creating a simple model with VGG16 as a base, cropped at the conv5 layer, like so: ``` cropped_VGG16 = keras.models.Model(inputs=VGG16_base.input ,outputs=VGG16_base.get_layer('block5_conv3').output) # this is where I use the...
license?
Hey @sitzikbs, was hoping to grab this code for a commercial research application. Would you be willing to add a license file?
I am using Keras+VGG and I intend to replace the pooling layer with your function, but it seems there are no place to put. Can u help me?