-1
I am using vgg16 model for feature extraction
https://github.com/fchollet/deep-learning-models/blob/master/vgg16.py
call the same through function:
model = VGG16(include_top=True, weights='imagenet')
But the function returns the softmax layer if I use the include_top=False
I have the return of the last VGG convolution layer.
How could I do model
receive the Dense 2 ? layer, in the code there is no argument to give me that result.