|
|
|
|
|
by kcarnold
4254 days ago
|
|
It's cool that a team of deep learning researchers can pull this off quickly. Anyone know of an "image2vec" (word2vec for images) that would empower others to try out similar things? (unfortunately it would need a better name, because "vectorize" means something different for images.) |
|
1) To setup, load a pre-trained AlexNet/Overfeat/other architecture model (e.g. trained on ILSVRC2012)
2) To get a vector from an image, run a forward pass on the images, and extract the activations at a given layer (e.g. fc7) as the output vector.
http://caffe.berkeleyvision.org/gathered/examples/feature_ex... is a step-by-step walkthrough.
There's a lot of mystique around deep learning and these kind of problems, but it's not _that_ difficult to use these tools.