To add a feature to find photos according to the query in the search bar #53
kamisama-coder
started this conversation in
Ideas
Replies: 1 comment
-
can also find according to the dress but have to use another model for this .Can store with the name table or have to create other table |
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 want to add a feature that allows users to find images in a folder by typing specific search terms, such as "two people," "three people," or "group." Additionally, users can search for photos of particular individuals by typing their names to locate images where those people appear together.
To achieve this, I’m considering two approaches:
1.Caption-Based Search: Save captions for each image in a database, and use models like GPT-3 to match user queries against these captions.
2.Direct Image-Query Comparison: Instead of storing captions, directly compare the user’s search terms with the images in the database.
Both features could be implemented to offer users a choice in their search method based on their preference.
to find photos by typing the specific name:
this feature can be implemented by storing face embeddings in a database. By using these embeddings, we can store the names of people in each photo and leverage GPT-3 to interpret the user’s query and compare it with the names stored in the database.
Beta Was this translation helpful? Give feedback.
All reactions