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

<a id="model-zoo-perceptronai-isaac-0-1"></a>

# PerceptronAI/Isaac-0.1

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

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

Isaac 0.1 is an open-source, 2B-parameter model built for real-world applications. Isaac 0.1 is the first in Perceptron AI’s family of models built to be the intelligence layer for the physical world..

**Details**

- Model name: `PerceptronAI/Isaac-0.1`
- Model source: [https://huggingface.co/PerceptronAI/Isaac-0.1](https://huggingface.co/PerceptronAI/Isaac-0.1)
- Model author: PerceptronAI
- Model license: Creative Commons Attribution Non Commercial 4.0
- Exposes embeddings? no
- Tags: `detection, ocr, VLM, classification, zero-shot`

**Requirements**

- Packages: `huggingface-hub, transformers, torch, torchvision, perceptron`
- 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/isaac0_1")

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("PerceptronAI/Isaac-0.1")

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

session = fo.launch_app(dataset)
```
