-
Notifications
You must be signed in to change notification settings - Fork 723
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Layer for Feature Extraction #13
Comments
What type of application/task are you trying to use the features for? |
Thanks for your answer. I have studied classifying objects with AlexNet. I am using its FC7 Layer for extracting features. Feature is a 4096 sized vector. And cosine similarity is enough for classify job. Wondering to do same steps with SqueezeNet. |
One option would be.... Take fire9/concat output, which is 13x13x512... which can be flattened into Or, you're welcome to put extra layers on the end and fine-tune. If you The space of CNN architectures is enormous! Happy exploring. :) On Tue, Jun 21, 2016 at 1:25 AM, fsrfsr notifications@github.com wrote:
Forrest Iandola |
Yes I had used fire9/concat layer but as you said it is a big vector so testing is very slow. Yes, exploring the architectures occupies my days.. :) Thanks for your suggestions. |
Those are huge and take really lot of time to simply shuffle and send to GPU for processing (my dataset is ~24000x13x13x512). My GPU is idling 60% of time or more. Another approach is to use output of fire9/relu_squeeze1x1 which is 13x13x64 a more reasonable 10816D at a cost of the highest feature recognition loss (which might even be desirable depending on how different particular dataset is in comparison to ImagNet). |
I took fire9/concat output and use it as a feature vector for 26500 patches in 22 class. then i cluster them using Kmean algorithm but the final result is not satisfying at all ! here is some part of my code
|
I want to use pre-trian squeezenet for feature extraction and fed into the kNN. But I don't know how to achieve it. |
Hi, thanks for your sharing first of all.
Which layer is the best for feature extraction? Did you study any test about it?
Thanks.
The text was updated successfully, but these errors were encountered: