Skip to content

Commit

Permalink
Fix typo in deeplabv3_resnet101.md (pytorch#249)
Browse files Browse the repository at this point in the history
Co-authored-by: Taeyoung96 <[[email protected]]>
  • Loading branch information
Taeyoung96 and Taeyoung96 authored Nov 5, 2021
1 parent 6471c99 commit fb0e1a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytorch_vision_deeplabv3_resnet101.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The images have to be loaded in to a range of `[0, 1]` and then normalized using
and `std = [0.229, 0.224, 0.225]`.

The model returns an `OrderedDict` with two Tensors that are of the same height and width as the input Tensor, but with 21 classes.
`output['out']` contains the semantic masks, and `output['aux']` contains the auxillary loss values per-pixel. In inference mode, `output['aux']` is not useful.
`output['out']` contains the semantic masks, and `output['aux']` contains the auxiliary loss values per-pixel. In inference mode, `output['aux']` is not useful.
So, `output['out']` is of shape `(N, 21, H, W)`. More documentation can be found [here](https://pytorch.org/docs/stable/torchvision/models.html#object-detection-instance-segmentation-and-person-keypoint-detection).


Expand Down

0 comments on commit fb0e1a4

Please sign in to comment.