Posts by David Jordão • 21 points
3 posts
-
0
votes1
answer24
viewsA: VGG16: how to use Dense_2 layer as output - python
The solution is to generate the VGG16 complete with all layers, and then select the desired layer with get_layer command modelo = VGG16(include_top=True, weights='imagenet') nome_camada = 'fc2'…
-
-1
votes1
answer24
viewsQ: VGG16: how to use Dense_2 layer as output - python
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,…
-
2
votes1
answer69
viewsQ: image processing (KNN classifier) - python
When using Kneighborsclassifier, I am getting the following error: /Feature Extraction (Python)/KNNpy:58: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please…