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

<a id="model-zoo-ssd-mobilenet-v2-320-coco17"></a>

# ssd-mobilenet-v2-320-coco17

Fast object finder optimized for quick GPU processing of smaller input images.

**Details**

- Model name: `ssd-mobilenet-v2-320-coco17`
- Model source: [https://github.com/tensorflow/models/blob/archive/research/object_detection/g3doc/tf2_detection_zoo.md](https://github.com/tensorflow/models/blob/archive/research/object_detection/g3doc/tf2_detection_zoo.md)
- Model author: Mark Sandler, et al.
- Model license: Apache 2.0
- Model size: 43.91 MB
- Exposes embeddings? no
- Tags: `detection, coco, tf2, ssd, mobilenet`

**Requirements**

- CPU support
  - yes
  - Packages: `tensorflow>=2|tensorflow-macos`
- GPU support
  - yes
  - Packages: `tensorflow-gpu>=2|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-mobilenet-v2-320-coco17")

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

session = fo.launch_app(dataset)
```
