<!-- # hard line break macro for HTML -->

<a id="model-zoo-facebook-vggt-1b"></a>

# facebook/VGGT-1B

<a href="../../plugins/plugins_ecosystem/vggt.html" target="_blank">
    <img src="https://img.shields.io/badge/Plugin-vggt-orange" alt="From Plugin">
</a>

#### NOTE
This is a [remotely-sourced model](../remote.md#model-zoo-remote) from the
[vggt](../../plugins/plugins_ecosystem/vggt.html) plugin, maintained by the community.
It is not part of FiftyOne core and may have special installation requirements.
Please review the plugin documentation and license before use.

Visual Geometry Grounded Transformer (VGGT) is a feed-forward neural network that directly infers all key 3D attributes of a scene..

**Details**

- Model name: `facebook/VGGT-1B`
- Model source: huggingface.co/facebook/vggt-1b
- Model author: Meta AI
- Model license: CC BY-NC 4.0
- Exposes embeddings? no
- Tags: `depth, threed, keypoints`

**Requirements**

- Packages: `vggt@git+https://github.com/facebookresearch/vggt.git, torch, torchvision, open3d`
- CPU support
  - yes
- GPU support
  - yes

**Example usage**

```python
import fiftyone as fo
import fiftyone.zoo as foz

foz.register_zoo_model_source("https://github.com/harpreetsahota204/vggt")

dataset = foz.load_zoo_dataset(
    "coco-2017",
    split="validation",
    dataset_name=fo.get_default_dataset_name(),
    max_samples=50,
    shuffle=True,
)

model = foz.load_zoo_model("facebook/VGGT-1B")

dataset.apply_model(model, label_field="predictions")

session = fo.launch_app(dataset)
```
