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

<a id="model-zoo-fcn-resnet101-coco-torch"></a>

# fcn-resnet101-coco-torch

Creates detailed pixel-level labels for images, identifying and outlining twenty-one different object categories.

**Details**

- Model name: `fcn-resnet101-coco-torch`
- Model source: [https://pytorch.org/vision/main/models.html](https://pytorch.org/vision/main/models.html)
- Model author: Jonathan Long, et al.
- Model license: BSD 3-Clause
- Model size: 207.71 MB
- Exposes embeddings? no
- Tags: `segmentation, coco, torch, fcn, resnet, official`

**Requirements**

- Packages: `torch, torchvision`
- CPU support
  - yes
- GPU support
  - yes

**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("fcn-resnet101-coco-torch")

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

session = fo.launch_app(dataset)
```
