Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    A defense official reveals how AI chatbots could be used for targeting decisions

    I tried Claude’s new interactive visuals feature — and it’s one of the most fun AI tricks I’ve seen

    TCL now can’t call some of its TVs ‘QLED’ after losing in court to Samsung — and there are more legal cases coming

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Met Office ‘supercomputing as a service’ one year old

      March 12, 2026

      Tech hiring evolves as candidates ask for AI compute alongside pay and perks

      March 11, 2026

      Oracle is spending billions on AI data centers as cash flow turns negative

      March 11, 2026

      Google: Cloud attacks exploit flaws more than weak credentials

      March 10, 2026

      Could this be the key to eternal storage? Experts claim new DNA HDD can be ‘erased and overwritten repeatedly’

      March 9, 2026
    • Crypto

      Banks Respond to Kraken’s Federal Reserve Access as Trump Sides with Crypto

      March 4, 2026

      Hyperliquid and DEXs Break the Top 10 — Is the CEX Era Ending?

      March 4, 2026

      Consensus Hong Kong 2026: The Institutional Turn 

      March 4, 2026

      New Crypto Mutuum Finance (MUTM) Reports V1 Protocol Progress as Roadmap Enters Phase 3

      March 4, 2026

      Bitcoin Short Sellers Caught Off Guard in New White House Move

      March 4, 2026
    • Technology

      A defense official reveals how AI chatbots could be used for targeting decisions

      March 13, 2026

      I tried Claude’s new interactive visuals feature — and it’s one of the most fun AI tricks I’ve seen

      March 13, 2026

      TCL now can’t call some of its TVs ‘QLED’ after losing in court to Samsung — and there are more legal cases coming

      March 13, 2026

      Qualcomm reveals its super-powered Raspberry Pi competitor, promising AI power which will be ‘enabling systems that don’t just interpret the world — they interact with it’

      March 13, 2026

      What is the release date for Marshals: A Yellowstone Story episode 3 on CBS and Paramount+?

      March 13, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»From hallucinations to hardware: Lessons from a real-world computer vision project gone sideways
    Technology

    From hallucinations to hardware: Lessons from a real-world computer vision project gone sideways

    TechAiVerseBy TechAiVerseJune 28, 2025No Comments7 Mins Read6 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    From hallucinations to hardware: Lessons from a real-world computer vision project gone sideways
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    From hallucinations to hardware: Lessons from a real-world computer vision project gone sideways

    June 28, 2025 12:05 PM

    VentureBeat/Midjourney

    Join the event trusted by enterprise leaders for nearly two decades. VB Transform brings together the people building real enterprise AI strategy. Learn more


    Computer vision projects rarely go exactly as planned, and this one was no exception. The idea was simple: Build a model that could look at a photo of a laptop and identify any physical damage — things like cracked screens, missing keys or broken hinges. It seemed like a straightforward use case for image models and large language models (LLMs), but it quickly turned into something more complicated.

    Along the way, we ran into issues with hallucinations, unreliable outputs and images that were not even laptops. To solve these, we ended up applying an agentic framework in an atypical way — not for task automation, but to improve the model’s performance.

    In this post, we will walk through what we tried, what didn’t work and how a combination of approaches eventually helped us build something reliable.

    Where we started: Monolithic prompting

    Our initial approach was fairly standard for a multimodal model. We used a single, large prompt to pass an image into an image-capable LLM and asked it to identify visible damage. This monolithic prompting strategy is simple to implement and works decently for clean, well-defined tasks. But real-world data rarely plays along.

    We ran into three major issues early on:

    • Hallucinations: The model would sometimes invent damage that did not exist or mislabel what it was seeing.
    • Junk image detection: It had no reliable way to flag images that were not even laptops, like pictures of desks, walls or people occasionally slipped through and received nonsensical damage reports.
    • Inconsistent accuracy: The combination of these problems made the model too unreliable for operational use.

    This was the point when it became clear we would need to iterate.

    First fix: Mixing image resolutions

    One thing we noticed was how much image quality affected the model’s output. Users uploaded all kinds of images ranging from sharp and high-resolution to blurry. This led us to refer to research highlighting how image resolution impacts deep learning models.

    We trained and tested the model using a mix of high-and low-resolution images. The idea was to make the model more resilient to the wide range of image qualities it would encounter in practice. This helped improve consistency, but the core issues of hallucination and junk image handling persisted.

    The multimodal detour: Text-only LLM goes multimodal

    Encouraged by recent experiments in combining image captioning with text-only LLMs — like the technique covered in The Batch, where captions are generated from images and then interpreted by a language model, we decided to give it a try.

    Here’s how it works:

    • The LLM begins by generating multiple possible captions for an image. 
    • Another model, called a multimodal embedding model, checks how well each caption fits the image. In this case, we used SigLIP to score the similarity between the image and the text.
    • The system keeps the top few captions based on these scores.
    • The LLM uses those top captions to write new ones, trying to get closer to what the image actually shows.
    • It repeats this process until the captions stop improving, or it hits a set limit.

    While clever in theory, this approach introduced new problems for our use case:

    • Persistent hallucinations: The captions themselves sometimes included imaginary damage, which the LLM then confidently reported.
    • Incomplete coverage: Even with multiple captions, some issues were missed entirely.
    • Increased complexity, little benefit: The added steps made the system more complicated without reliably outperforming the previous setup.

    It was an interesting experiment, but ultimately not a solution.

    A creative use of agentic frameworks

    This was the turning point. While agentic frameworks are usually used for orchestrating task flows (think agents coordinating calendar invites or customer service actions), we wondered if breaking down the image interpretation task into smaller, specialized agents might help.

    We built an agentic framework structured like this:

    • Orchestrator agent: It checked the image and identified which laptop components were visible (screen, keyboard, chassis, ports).
    • Component agents: Dedicated agents inspected each component for specific damage types; for example, one for cracked screens, another for missing keys.
    • Junk detection agent: A separate agent flagged whether the image was even a laptop in the first place.

    This modular, task-driven approach produced much more precise and explainable results. Hallucinations dropped dramatically, junk images were reliably flagged and each agent’s task was simple and focused enough to control quality well.

    The blind spots: Trade-offs of an agentic approach

    As effective as this was, it was not perfect. Two main limitations showed up:

    • Increased latency: Running multiple sequential agents added to the total inference time.
    • Coverage gaps: Agents could only detect issues they were explicitly programmed to look for. If an image showed something unexpected that no agent was tasked with identifying, it would go unnoticed.

    We needed a way to balance precision with coverage.

    The hybrid solution: Combining agentic and monolithic approaches

    To bridge the gaps, we created a hybrid system:

    1. The agentic framework ran first, handling precise detection of known damage types and junk images. We limited the number of agents to the most essential ones to improve latency.
    2. Then, a monolithic image LLM prompt scanned the image for anything else the agents might have missed.
    3. Finally, we fine-tuned the model using a curated set of images for high-priority use cases, like frequently reported damage scenarios, to further improve accuracy and reliability.

    This combination gave us the precision and explainability of the agentic setup, the broad coverage of monolithic prompting and the confidence boost of targeted fine-tuning.

    What we learned

    A few things became clear by the time we wrapped up this project:

    • Agentic frameworks are more versatile than they get credit for: While they are usually associated with workflow management, we found they could meaningfully boost model performance when applied in a structured, modular way.
    • Blending different approaches beats relying on just one: The combination of precise, agent-based detection alongside the broad coverage of LLMs, plus a bit of fine-tuning where it mattered most, gave us far more reliable outcomes than any single method on its own.
    • Visual models are prone to hallucinations: Even the more advanced setups can jump to conclusions or see things that are not there. It takes a thoughtful system design to keep those mistakes in check.
    • Image quality variety makes a difference: Training and testing with both clear, high-resolution images and everyday, lower-quality ones helped the model stay resilient when faced with unpredictable, real-world photos.
    • You need a way to catch junk images: A dedicated check for junk or unrelated pictures was one of the simplest changes we made, and it had an outsized impact on overall system reliability.

    Final thoughts

    What started as a simple idea, using an LLM prompt to detect physical damage in laptop images, quickly turned into a much deeper experiment in combining different AI techniques to tackle unpredictable, real-world problems. Along the way, we realized that some of the most useful tools were ones not originally designed for this type of work.

    Agentic frameworks, often seen as workflow utilities, proved surprisingly effective when repurposed for tasks like structured damage detection and image filtering. With a bit of creativity, they helped us build a system that was not just more accurate, but easier to understand and manage in practice.

    Shruti Tiwari is an AI product manager at Dell Technologies.

    Vadiraj Kulkarni is a data scientist at Dell Technologies.

    Daily insights on business use cases with VB Daily

    If you want to impress your boss, VB Daily has you covered. We give you the inside scoop on what companies are doing with generative AI, from regulatory shifts to practical deployments, so you can share insights for maximum ROI.

    Read our Privacy Policy

    Thanks for subscribing. Check out more VB newsletters here.

    An error occured.

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleAI agents are hitting a liability wall. Mixus has a plan to overcome it using human overseers on high-risk workflows
    Next Article Sky ECC distributor released from French custody pending trial
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    A defense official reveals how AI chatbots could be used for targeting decisions

    March 13, 2026

    I tried Claude’s new interactive visuals feature — and it’s one of the most fun AI tricks I’ve seen

    March 13, 2026

    TCL now can’t call some of its TVs ‘QLED’ after losing in court to Samsung — and there are more legal cases coming

    March 13, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025714 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025299 Views

    Wired Headphones Are Making A Comeback, And We Have Gen Z To Thank

    July 22, 2025210 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025172 Views
    Don't Miss
    Technology March 13, 2026

    A defense official reveals how AI chatbots could be used for targeting decisions

    A defense official reveals how AI chatbots could be used for targeting decisions The US…

    I tried Claude’s new interactive visuals feature — and it’s one of the most fun AI tricks I’ve seen

    TCL now can’t call some of its TVs ‘QLED’ after losing in court to Samsung — and there are more legal cases coming

    Qualcomm reveals its super-powered Raspberry Pi competitor, promising AI power which will be ‘enabling systems that don’t just interpret the world — they interact with it’

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    A defense official reveals how AI chatbots could be used for targeting decisions

    March 13, 20263 Views

    I tried Claude’s new interactive visuals feature — and it’s one of the most fun AI tricks I’ve seen

    March 13, 20264 Views

    TCL now can’t call some of its TVs ‘QLED’ after losing in court to Samsung — and there are more legal cases coming

    March 13, 20262 Views
    Most Popular

    Outbreak turns 30

    March 14, 20250 Views

    New SuperBlack ransomware exploits Fortinet auth bypass flaws

    March 14, 20250 Views

    CDs Offer Guaranteed Returns in an Uncertain Market. Today’s CD Rates, March 14, 2025

    March 14, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.