Skip to content

Commit

Permalink
Merge pull request #458 from aleju/dropout2d
Browse files Browse the repository at this point in the history
Add Dropout2d augmenter
  • Loading branch information
aleju authored Oct 28, 2019
2 parents 138ae7b + 54c8f5b commit 3a65918
Show file tree
Hide file tree
Showing 3 changed files with 1,013 additions and 40 deletions.
9 changes: 9 additions & 0 deletions changelogs/master/added/20191016_dropout2d.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# New Dropout Augmenters #458

* Added a new augmenter `Dropout2d`, which drops channels in images with
a defineable probability `p`. Dropped channels will be filled with zeros.
By default, the augmenter keeps at least one channel in each image
unaltered (i.e. not dropped).
* Added new augmenter `TotalDropout`, which sets all components to zero
for `p` percent of all images. The augmenter should be used in connection
with e.g. blend augmenters.
Loading

0 comments on commit 3a65918

Please sign in to comment.