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

gluon docfix #13631

Merged
merged 1 commit into from
Dec 29, 2018
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions python/mxnet/gluon/data/vision/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ class Cast(HybridBlock):


Inputs:
- **data**: input tensor with arbitrary shape.
- **data**: input tensor with arbitrary shape and dtype.

Outputs:
- **out**: output tensor with the same shape as `data`.
- **out**: output tensor with the same shape as `data` and data type as dtype.
"""
def __init__(self, dtype='float32'):
super(Cast, self).__init__()
Expand Down