Details
-
New Feature
-
Status: To Do
-
Major
-
Resolution: Unresolved
-
None
Description
- In estimator, we should make the convention that data/label are provided in DataLoader format
- provide util function in mx.io for users to convert DataIters into DataLoader format
- Accept custom util functions to convert custom DataLoader into DataLoader format.
- Note: common way of using DataLoader: data=batch[0], label=batch[1], using DataIter, data=batch.data[0], label=batch.label[0]