Con of this approach would be that it’s requires maintenance if they ever decide to change the illustration positions.
How we used GPT-4o for image detection with 350 similar illustrations
31–40 of 93 posts
Re: How we used GPT-4o for image detection with 350 similar illustrations
#32First time for me posting this kind of story - I thought it would make an interesting case on solving a hard computer vision problem with a crafty product engineer team.
Re: How we used GPT-4o for image detection with 350 similar illustrations
#33Interesting approach to a a very interesting challenge, given how close the images supposedly are. With the limited training data they have I'm surprised they don't mention any attempts at synthetic training data. Make (or buy) a couple museum scenes in blender, hang one of the images there, take images from a lot of angles, repeat for more scenes, lighting conditions and all 350 images. Should be easy to script. The…
They did. > “ To address this limitation, we turned to data augmentation, artificially creating new versions of each image by modifying colors, adding noise, applying distortion, or rotating images. By the end, we had generated 600 augmented images per car.”
What I am talking about is that they want to recognize scenes containing the images, but only have the images as training data. They have a good idea what those scenes will look like. Going there to take actual training pictures was evidently not viable, but generating approximations of them might have been.
Re: How we used GPT-4o for image detection with 350 similar illustrations
#34It's tough to judge without seeing examples of the targets and the user photos, but I'm curious if this could be done with just old-school SIFT. If it really is exactly the same image in the in the corpus and on the wall, does a neural embedding model really buy you a lot? A small number of high confidence tie points seems like it'd be all you need, but it probably depends a lot on just how challenging the user photo…
> LLMs and the platforms powering them are quickly becoming one-stop shops for any ML-related tasks. From my perspective, the real revolution is not the chat ability or the knowledge embedded in these models, but rather the versatility they bring in a single system.
Why use another piece of software if LLM is good enough?
Re: How we used GPT-4o for image detection with 350 similar illustrations
#35It's tough to judge without seeing examples of the targets and the user photos, but I'm curious if this could be done with just old-school SIFT. If it really is exactly the same image in the in the corpus and on the wall, does a neural embedding model really buy you a lot? A small number of high confidence tie points seems like it'd be all you need, but it probably depends a lot on just how challenging the user photo…
I find a lot of applied AI use-cases to be "same as this other method, but more expensive".
Re: How we used GPT-4o for image detection with 350 similar illustrations
#36It's tough to judge without seeing examples of the targets and the user photos, but I'm curious if this could be done with just old-school SIFT. If it really is exactly the same image in the in the corpus and on the wall, does a neural embedding model really buy you a lot? A small number of high confidence tie points seems like it'd be all you need, but it probably depends a lot on just how challenging the user photo…
From TFA: > LLMs and the platforms powering them are quickly becoming one-stop shops for any ML-related tasks. From my perspective, the real revolution is not the chat ability or the knowledge embedded in these models, but rather the versatility they bring in a single system. Why use another piece of software if LLM is good enough?
Re: How we used GPT-4o for image detection with 350 similar illustrations
#37Calling an llm and a cv model by the same name to give the appearance of agi is a pet peeve of mine. And someone that's not openai buying into this naming convention is just unpaid propaganda
> give the appearance of agi
Can you point out where specifically they're doing this? Best I can tell, they give a decent summary of the effectiveness of multi-modal LLM's with support for vision, and then talk about using it to solve an incredibly narrow task. The only diction I could see that hints at "agi" is when they describe the versatility of this approach; but how could you possibly argue against that? It's objectively more versatile (if not wasteful and more expensive).
Re: How we used GPT-4o for image detection with 350 similar illustrations
#38Earlier quoted context omitted.
I find a lot of applied AI use-cases to be "same as this other method, but more expensive".
Use cases such as?
Re: How we used GPT-4o for image detection with 350 similar illustrations
#39Earlier quoted context omitted.
From TFA: > LLMs and the platforms powering them are quickly becoming one-stop shops for any ML-related tasks. From my perspective, the real revolution is not the chat ability or the knowledge embedded in these models, but rather the versatility they bring in a single system. Why use another piece of software if LLM is good enough?
Cost. Same reason you don't deliver UPS packages with B-2 bombers.
If I have a project with a low enough lifetime inputs I'm not wasting my time labelling data and training a model. That time could be better spent working on something else. As long as the evaluation is thorough, it doesn't matter. But I still like doing some labelling manually to get a feel for the problem space.