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

<a id="model-zoo-ssd-inception-v2-coco-tf"></a>

# ssd-inception-v2-coco-tf

Real-time object finder that quickly identifies eighty common items in any image.

**Details**

- Model name: `ssd-inception-v2-coco-tf`
- Model source: [https://github.com/tensorflow/models/blob/archive/research/object_detection/g3doc/tf1_detection_zoo.md](https://github.com/tensorflow/models/blob/archive/research/object_detection/g3doc/tf1_detection_zoo.md)
- Model author: Wei Liu, et al.
- Model license: Apache 2.0
- Model size: 97.50 MB
- Exposes embeddings? no
- Tags: `detection, coco, tf, ssd, inception`

**Requirements**

- CPU support
  - yes
  - Packages: `tensorflow|tensorflow-macos`
- GPU support
  - yes
  - Packages: `tensorflow-gpu|tensorflow>=2|tensorflow-macos`

**Example usage**

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

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("ssd-inception-v2-coco-tf")

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

session = fo.launch_app(dataset)
```
