-
Notifications
You must be signed in to change notification settings - Fork 6.8k
[MXNET-102] Added tutorial on how to use data augmenters. #10055
Conversation
The filename and location ( Could you make it simpler like |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a JIRA
83528f8
to
a0c4fb9
Compare
@rahul003 made the suggested changes. |
@rahul003 @szha @piiswrong @cjolivier01 can we get this merged? |
Mixing gluon and mx.image is weird. We should have separate tutorials |
@piiswrong Until we've got the new Gluon augmentation, using mx.image inside a |
6681fc9
to
b4e0327
Compare
b4e0327
to
5913abc
Compare
@marcoabreu the build seems temperamental at the moment, got a successful build on the 4th attempt. My 1st attempt errored trying to download CIFAR-100, 2nd attempt failed on |
Yeah sorry, our tests are quite flaky :/ |
@marcoabreu are there Github/JIRA issue(s) for the individual tests that fail? or is there a general issue I can add this information to? |
Yes, we track them on GitHub with the labels "Flaky" and "test". I think they're all tracked (pexcept the perl ones), but feel free to double check if the ones you encountered are already there. |
* [MXNET-102] Added tutorial on how to use data augmenters. * Removed Gluon from tutorial. * Added Gluon version. * Updated index.md * Commit to force build.
* [MXNET-102] Added tutorial on how to use data augmenters. * Removed Gluon from tutorial. * Added Gluon version. * Updated index.md * Commit to force build.
Description
Added tutorial on methods of using data augmenters.
Checklist
Essentials
N/A, as only added a single markdown file.
Changes
Added tutorial.
Comments
Quote from tutorial:
In this tutorial we discuss the different interfaces avaliable in MXNet to perform data augmentation. We start by showing a complete example using Gluon's
mxnet.gluon.data.Dataset
, and then unpack the example to gain a greater understanding of the internals. In the process you'll learn about augmentation functions,mxnet.image.Augmenter
classes and Augmenter lists. We also provide examples usingmxnet.image.ImageIter
if you haven't yet moved to Gluon.