Question about Repeated Augmentation
See original GitHub issueHi, first of all, thank you for releasing the code base.
I have a small question about the sampler for Repeated Augmentation. What does this 256*256 mean?
Thank you!
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (3 by maintainers)
 Top Results From Across the Web
Top Results From Across the Web
Augment Your Batch: Improving Generalization Through ...
We propose to use batch augmentation: repli- cating instances of samples within the same batch with dif- ferent data augmentations. Batch augmentation acts...
Read more >Newest 'data-augmentation' Questions
I'm working on a 3-class text classification problem where my initial class distribution looked like this: positive: 50% negative: 25% and neutral: 25%...
Read more >Data Augmentation | How to use Deep Learning when you ...
This article is a comprehensive review of Data Augmentation techniques for Deep Learning, specific to images.
Read more >Question Data Augmentation with Controllable Rewriting in ...
Tell Me How to Ask Again: Question Data Augmentation ... coder to map the original discrete question into ... layers which consist of...
Read more >A survey on Image Data Augmentation for Deep Learning
In contrast to the techniques mentioned above, Data Augmentation approaches overfitting from the root of the problem, the training dataset. This ...
Read more > Top Related Medium Post
Top Related Medium Post
No results found
 Top Related StackOverflow Question
Top Related StackOverflow Question
No results found
 Troubleshoot Live Code
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free Top Related Reddit Thread
Top Related Reddit Thread
No results found
 Top Related Hackernoon Post
Top Related Hackernoon Post
No results found
 Top Related Tweet
Top Related Tweet
No results found
 Top Related Dev.to Post
Top Related Dev.to Post
No results found
 Top Related Hashnode Post
Top Related Hashnode Post
No results found

I have tried to remove the RAsampler for deit-tiny and deit-small, the performance is almost the same.
Hi @moskomule ,
No it’s just to determine the number of images used in the dataset for each epochs. This is not exactly
int(math.floor(len(self.dataset) / self.num_replicas))but just the nearest multiple of 256. I think it was originally used for question of batch size.Best,
Hugo