Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Minor fix in ToTensor documentation. #16299

Merged
merged 3 commits into from
Sep 28, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/mxnet/gluon/data/vision/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ToTensor(HybridBlock):
- **data**: input tensor with (H x W x C) or (N x H x W x C) shape and uint8 type.
Outputs:
- **out**: output tensor with (C x H x W) or (N x H x W x C) shape and float32 type.
- **out**: output tensor with (C x H x W) or (N x C x H x W) shape and float32 type.
Examples
--------
Expand Down