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

<a id="model-zoo-friedfeid-ovda-c8"></a>

# FriedFeid/oVDA-c8

<a href="../../plugins/plugins_ecosystem/online_video_depth_anything.html" target="_blank">
    <img src="https://img.shields.io/badge/Plugin-online_\_video_\_depth_\_anything-orange" alt="From Plugin">
</a>

#### NOTE
This is a [remotely-sourced model](../remote.md#model-zoo-remote) from the
[online_video_depth_anything](../../plugins/plugins_ecosystem/online_video_depth_anything.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.

Online Video Depth Anything (cache_size=8). Lighter variant with a smaller temporal cache; faster and lower memory than c16 at some cost to temporal consistency..

**Details**

- Model name: `FriedFeid/oVDA-c8`
- Model source: [https://huggingface.co/FriedFeid/oVDA](https://huggingface.co/FriedFeid/oVDA)
- Model author: Heidelberg University
- Model license: NC-SA-UHDV1.0
- Exposes embeddings? no
- Tags: `depth-estimation, video, temporal, heatmap`

**Requirements**

- Packages: `torch, torchvision, einops, natsort, easydict, huggingface_hub`
- 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/online_video_depth_anything")

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("FriedFeid/oVDA-c8")

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

session = fo.launch_app(dataset)
```
