Overview
LocateAnything-3B is a vision-language model from NVIDIA built for visual grounding: you give it an image and a text prompt, and it returns the exact pixel locations of.
- License: Other
- Context length: 32K tokens
- Languages: en
- Minimum hardware: ~3 GB VRAM
- Strengths: reasoning and on-device inference
Highlights
- Visual grounding — returns exact pixel locations for objects named in a text prompt.
- Open-vocabulary detection — boxes any named category, including dense and long-tail scenes.
- Referring grounding with reasoning — resolves expressions like "the red car behind the bus."
- GUI & document localization — locates buttons, fields, and OCR text for agents and pipelines.
What it is good at
LocateAnything-3B turns plain-language requests into spatial answers, which makes it useful anywhere you need to find things in an image rather than just describe them.
- Open-vocabulary object detection — name any category in text ("forklift", "stop sign", "ripe tomato") and the model draws boxes around every match, including in dense and long-tail scenes where a fixed-class detector like YOLO would miss.
- Referring grounding with reasoning — point it at "the red car behind the bus" or "people wearing hats" and its reasoning over the scene resolves which specific instances you mean, returning single or multiple boxes.
- GUI and document localization — locate buttons, fields, OCR text, or layout regions from an instruction, which feeds GUI agents, document-understanding pipelines, and code that needs to act on screen coordinates.
Running it locally
At 3.8B parameters the model needs roughly 8.4 GB of VRAM in FP16 for inference; quantized to INT4 that drops to about 2.1 GB, so an 8 GB card such as an RTX 4060 can run it. It uses BF16, which means an Ampere-or-newer NVIDIA GPU (RTX 30/40/50-series, A100, H100). Context length is 32K. Download the weights with:
huggingface-cli download nvidia/LocateAnything-3B
You can load it through Hugging Face Transformers (4.57.1+) and the official Eagle worker code, or skip the setup and open it with one click in Atomic Chat, which manages the download and runtime for you.
License
LocateAnything-3B is released under the NVIDIA License, listed as "other." It permits use, reproduction, and modification for academic and non-profit research only. Commercial use is not granted, so check the license terms on the model card before building anything you intend to ship or sell.
