Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
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: 4 additions & 0 deletions python/mxnet/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,12 @@ class DataBatch(object):
The key of the bucket, used for bucket IO.
provide_data : list of (name, shape), optional
The *i*-th elements describes the name and shape of ``data[i]``.
If not provided, the order of arg_names of the executor is assumed.
When working with Module this is the order of the data_names argument.
provide_label : list of (name, shape), optional
The *i*-th elements describes the name and shape of ``label[i]``.
If not provided, the order of arg_names of the executor is assumed.
When working with Module this is the order of the label_names argument.
"""
def __init__(self, data, label=None, pad=None, index=None,
bucket_key=None, provide_data=None, provide_label=None):
Expand Down