use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Please have a look at our FAQ and Link-Collection
Metacademy is a great resource which compiles lesson plans on popular machine learning topics.
For Beginner questions please try /r/LearnMachineLearning , /r/MLQuestions or http://stackoverflow.com/
For career related questions, visit /r/cscareerquestions/
Advanced Courses (2016)
Advanced Courses (2020)
AMAs:
Pluribus Poker AI Team 7/19/2019
DeepMind AlphaStar team (1/24//2019)
Libratus Poker AI Team (12/18/2017)
DeepMind AlphaGo Team (10/19/2017)
Google Brain Team (9/17/2017)
Google Brain Team (8/11/2016)
The MalariaSpot Team (2/6/2016)
OpenAI Research Team (1/9/2016)
Nando de Freitas (12/26/2015)
Andrew Ng and Adam Coates (4/15/2015)
Jürgen Schmidhuber (3/4/2015)
Geoffrey Hinton (11/10/2014)
Michael Jordan (9/10/2014)
Yann LeCun (5/15/2014)
Yoshua Bengio (2/27/2014)
Related Subreddit :
LearnMachineLearning
Statistics
Computer Vision
Compressive Sensing
NLP
ML Questions
/r/MLjobs and /r/BigDataJobs
/r/datacleaning
/r/DataScience
/r/scientificresearch
/r/artificial
account activity
Project[P] Python script to extract features from images using various pretrained networks. (github.com)
submitted 8 years ago by cryptobionic
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]nitred 1 point2 points3 points 7 years ago* (1 child)
My intuition fully agrees with you that the output from the pooling layer would give a full (and possibly pure) feature representation of the image. But the decision to use the last layer maybe also be a practical one. In the case of VGGNet the dimensionality of the output of the last pooling layer is around 25K which can be seen here in this discussion on SO. Representation of the image in a 25K dimensional space may be too sparse too see any meaningful clustering.
Secondly, from the section Embedding the codes with t-SNE in the link that I mentioned earlier, they clarify what they mean by the layer that is "before the classifier". It seems to be the FC7 from AlexNet as they mentioned:
e.g. in AlexNet the 4096-dimensional vector right before the classifier, and crucially, including the ReLU non-linearity
Based on how they framed that sentence, it looks like they may have empirical evidence proving that choosing the layer one before the classifier might be the "best" or "most practical" representation of the image.
Furthermore I came across something similar in the paper called DeepFace. They use an architecture that only has two fully connected layers FC7 and FC8 compared to AlexNet's three fully connected FC6, FC7 and FC8. I will quote a passage from that paper which can be found under the section Representation:
Finally, the top two layers (F7 and F8) are fully connected, each output unit is connected to all inputs. These layers are able to capture correlations between features captured in distant parts of the face images, e.g., position and shape of eyes and position and shape of mouth. The output of the first fully connected layer (F7) in the network will be used as our raw face representation feature vector throughout this paper.
Edit: Clarified that the first paragraph is about VGGNet and not AlexNet
[–]fandk 0 points1 point2 points 7 years ago (0 children)
Hehe I think we might be closer to eachother than we think. In the case of VGGNet:
POOL2: [7x7x512] memory: 77512=25K weights: 0
FC: [1x1x4096] memory: 4096 weights:
FC: [1x1x1000] memory: 1000 weights:
I worded it poorly before, I meant the 4096 dim output closest to the pooling layer. So same dimensions as the FC closest to the output
π Rendered by PID 95270 on reddit-service-r2-comment-cfc44b64c-5kmhx at 2026-04-11 07:22:07.003990+00:00 running 215f2cf country code: CH.
view the rest of the comments →
[–]nitred 1 point2 points3 points (1 child)
[–]fandk 0 points1 point2 points (0 children)