-
Updated
Jun 15, 2022 - Python
augmentation
Here are 266 public repositories matching this topic...
-
Updated
May 24, 2022 - Python
-
Updated
Jun 21, 2022 - Python
-
Updated
Jul 7, 2022 - Jupyter Notebook
-
Updated
Jun 16, 2021 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Jun 29, 2022 - Python
-
Updated
Sep 16, 2020 - Python
-
Updated
Jan 5, 2022 - Python
-
Updated
Oct 13, 2021 - Python
Padding transform
This transform takes a fraction of the end or the start of the audio and treats that part as padding. We can implement several modes:
- constant (zero)
- wrap
- reflect
-
Updated
Jul 2, 2021 - Python
-
Updated
Oct 27, 2019 - Jupyter Notebook
-
Updated
Mar 1, 2022 - Jupyter Notebook
-
Updated
Jan 7, 2020 - Python
-
Updated
Mar 9, 2022 - Jupyter Notebook
-
Updated
Mar 26, 2021 - Jupyter Notebook
-
Updated
Oct 5, 2021 - Python
-
Updated
Jan 30, 2022 - Python
-
Updated
Jun 21, 2022 - Python
-
Updated
Apr 16, 2020 - Ruby
-
Updated
Sep 4, 2021 - Python
-
Updated
Jun 15, 2020 - Python
-
Updated
Aug 21, 2020 - Python
-
Updated
Apr 18, 2022 - Python
-
Updated
Jul 6, 2022 - Python
Using the same concept used in keras segmentation example add pytorch segmentation example
-
Updated
Jul 4, 2022 - Python
Improve this page
Add a description, image, and links to the augmentation topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the augmentation topic, visit your repo's landing page and select "manage topics."

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

Enhancement
A discussion in #614 revealed a good place for improvement - we should ensure that input image is continuous upon start of the augmentation pipeline. This could be implemented by adding
image = np.ascontiguousarray(image)to image and mask targets.A proposed place to add this call - somewhere at the beginning of
A.Compose.__call__.