NVIDIA has released LocateAnything-3B, a 3B-parameter open-source model on Hugging Face. In one sentence: give it a description, and it accurately boxes the target in an image or video.
Capabilities covered
| Capability | Plain-language description | |---|---| | Object detection | Class name / description -> bounding box | | Phrase grounding | Natural-language phrase -> corresponding object box | | OCR / text localization | All text in the image + position | | Document layout analysis | Paragraphs / headings / table regions | | GUI element localization | Button description -> UI control box | | Point localization | Description -> point coordinates |
Technical core: Parallel Box Decoding
Traditional grounding models emit boxes auto-regressively, one at a time. LocateAnything uses Parallel Box Decoding, producing multiple boxes in a single forward pass. This advantage compounds on video streams where every frame must be localized, and a "LocateAnything-Video" variant is plausible within a year.
Training data is the in-house LocateAnything-Data: 12M images spanning "Enterprise Intelligence" and "Physical AI" domains.
Resources
- Official page: https://research.nvidia.com/labs/lpr/locate-anything
- Paper PDF: https://research.nvidia.com/labs/lpr/locate-anything/LocateAnything.pdf
- HuggingFace: https://huggingface.co/nvidia/LocateAnything-3B (released 2026-05-26)
- GitHub: https://github.com/gammahazard/locate-anything (runnable via
docker compose up)
Key observations
1. Unified VLM replaces specialist detectors. YOLO-class models (YOLOv10, RT-DETR) remain industry-grade fast on the narrow object-detection track, and LocateAnything-3B cannot match their per-task throughput. The pitch is one model, six tasks, cutting deployment cost and engineering complexity by an order of magnitude. This is the visual analogue of how general LLMs displaced many fine-tuned task models in the RAG era.
2. GUI grounding is the most under-appreciated capability. Prompting with "the blue submit button" and getting a bounding box is precisely the primitive underlying Anthropic's Computer Use, OpenAI's Operator, and other GUI agents. NVIDIA training GUI grounding in the same framework as object detection is a bet that the Agent visual stack will also consolidate.
3. NVIDIA's open-source strategy still sells hardware. The pattern repeats with Nemotron and Llama-Nemotron: the model is free, but production-grade speed and stability steer deployments toward H100/H200. "Runs on consumer GPUs" plus a single docker compose up lowers the trial barrier without changing the production economics. Open source is a business, not charity.
Open question
Will "unified VLM displaces specialist vision models" actually hold? Or will small, fast models like YOLO survive in industrial deployment the way RAG persists in engineering practice, theoretically inelegant but operationally good enough?