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

<a id="model-zoo-bytedance-seed-ui-tars-1-5-7b"></a>

# ByteDance-Seed/UI-TARS-1.5-7B

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

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

UI-TARS-1.5 is an open-source multimodal agent capable of effectively performing diverse tasks within virtual worlds..

**Details**

- Model name: `ByteDance-Seed/UI-TARS-1.5-7B`
- Model source: [https://huggingface.co/ByteDance-Seed/UI-TARS-1.5-7B](https://huggingface.co/ByteDance-Seed/UI-TARS-1.5-7B)
- Model author: ByteDance
- Model license: Apache 2.0
- Exposes embeddings? no
- Tags: `detection, ocr, VLM, classification, zero-shot, visual-agent`

**Requirements**

- Packages: `huggingface-hub, transformers, torch, torchvision, qwen-vl-utils, accelerate`
- 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/UI_TARS")

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("ByteDance-Seed/UI-TARS-1.5-7B")

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

session = fo.launch_app(dataset)
```
