Replies: 1 comment
-
@sachinruk info is not cached anywhere though guess it could be useful to do so, however, on most machines that are fit for ML it doesn't take that long to instantiate each model (without loading pretrained weights) and do the check
If you do you own pooling or want unpooled features, the featre dim is It won't take that long to run this, should be done after a coffee... using the final pre-classifier features for this is not a bad idea at all, it's a very common use for these models. Some of the large image-text pretrained models (LAION, DFN, DataComp, OpenAI CLIP models) are particularly good. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to figure out which model to use as an embedding model so that I can do nearest neighbour search on images. My current requirements are 1. Have >80% accuracy on imagenet 2. Have a small dimensionality when I pass a image through the base model.
For 1. I can look at this page with the results. However, for 2. I need to initialise a model (without pretrained weights of course) to figure this out. I was wondering if we can store this information in a similar csv file (or anywhere really) so that I don't have to do this exercise.
TIA 🙏 .
p.s. feel free to let me know if the embedding via this method is a bad idea.
Beta Was this translation helpful? Give feedback.
All reactions