centernet-resnet101-v1-fpn-512-coco-tf2#

Advanced object finder with deeper processing for more accurate results in challenging scenes.

Details

  • Model name: centernet-resnet101-v1-fpn-512-coco-tf2

  • Model source: tensorflow/models

  • Model author: Xingyi Zhou, et al.

  • Model license: Apache 2.0

  • Model size: 329.96 MB

  • Exposes embeddings? no

  • Tags: detection, coco, tf2, centernet, resnet

Requirements

  • CPU support

    • yes

    • Packages: tensorflow>=2|tensorflow-macos

  • GPU support

    • yes

    • Packages: tensorflow-gpu>=2|tensorflow>=2|tensorflow-macos

Example usage

 1import fiftyone as fo
 2import fiftyone.zoo as foz
 3
 4dataset = foz.load_zoo_dataset(
 5    "coco-2017",
 6    split="validation",
 7    dataset_name=fo.get_default_dataset_name(),
 8    max_samples=50,
 9    shuffle=True,
10)
11
12model = foz.load_zoo_model("centernet-resnet101-v1-fpn-512-coco-tf2")
13
14dataset.apply_model(model, label_field="predictions")
15
16session = fo.launch_app(dataset)