-
Updated
Oct 27, 2021 - Python
#
augmentation
Here are 238 public repositories matching this topic...
Image augmentation for machine learning experiments.
machine-learning
deep-learning
images
heatmap
crop
contrast
polygon
keypoints
affine-transformation
bounding-boxes
image-augmentation
augmentation
segmentation-maps
augment-images
Image augmentation library in Python for machine learning.
-
Updated
Oct 15, 2021 - Python
Keras model to generate HTML code from hand-drawn website mockups. Implements an image captioning architecture to drawn source images.
-
Updated
Mar 11, 2022 - Python
Data augmentation for NLP
nlp
data-science
machine-learning
natural-language-processing
ai
ml
artificial-intelligence
augmentation
adversarial-example
adversarial-attacks
-
Updated
Mar 28, 2022 - Jupyter Notebook
Official Implementation of 'Fast AutoAugment' in PyTorch.
computer-vision
deep-learning
cnn
pytorch
distributed
image-classification
convolutional-neural-networks
augmentation
automl
automated-machine-learning
-
Updated
Jun 16, 2021 - Python
fepegar
opened
Feb 12, 2020
PyTorch extensions for fast R&D prototyping and Kaggle farming
python
machine-learning
deep-learning
pipeline
image-processing
pytorch
kaggle
image-classification
segmentation
object-detection
image-segmentation
augmentation
focal-loss
tta
jaccard-loss
test-time-augmentation
-
Updated
Mar 14, 2022 - Python
Official Pytorch implementation of CutMix regularizer
-
Updated
Sep 16, 2020 - Python
A Python library for audio data augmentation. Inspired by albumentations. Useful for machine learning.
audio
python
music
machine-learning
deep-learning
dsp
sound
sound-processing
data-augmentation
augmentation
audio-effects
audio-data-augmentation
-
Updated
Mar 18, 2022 - Python
Image Test Time Augmentation with PyTorch!
computer-vision
deep-learning
pytorch
classification
segmentation
augmentation
tta
tta-wrapper
keypoint-detection
test-time-augmentation
-
Updated
Jan 5, 2022 - Python
High-performance Vision library in Python. Scale your research, not boilerplate.
python
opencv
data-science
machine-learning
ai
computer-vision
deep-learning
neural-network
gpu
cuda
image-processing
artificial-intelligence
video-processing
vision
image-classification
segmentation
type-checking
image-segmentation
augmentation
caer
-
Updated
Oct 13, 2021 - Python
Unofficial PyTorch Reimplementation of RandAugment.
computer-vision
deep-learning
pytorch
classification
imagenet
convolutional-neural-networks
cifar
augmentation
autoaugment
-
Updated
Jul 2, 2021 - Python
Efficient Learning of Augmentation Policy Schedules
python
data-science
machine-learning
deep-learning
tensorflow
artificial-intelligence
image-classification
convolutional-neural-networks
data-augmentation
augmentation
automl
automated-machine-learning
-
Updated
Oct 27, 2019 - Jupyter Notebook
iver56
commented
Aug 5, 2021
The offset can be randomized, as long as the output has the specified length
The idea is that one can have a chain of transforms, and some of them change the input length, but the final length should be fixed. That is where
good first issue
Good for newcomers
Open
Padding transform
DeltaPy - Tabular Data Augmentation (by @firmai)
finance
data-science
machine-learning
time-series
tabular-data
feature-extraction
feature-engineering
data-augmentation
augmentation
-
Updated
Mar 1, 2022 - Jupyter Notebook
Code for ICCV2019 paper "InstaBoost: Boosting Instance Segmentation Via Probability Map Guided Copy-Pasting"
-
Updated
Jan 7, 2020 - Python
various cv tools, such as label tools, data augmentation, label conversion, etc.
-
Updated
Mar 9, 2022 - Jupyter Notebook
Official implementation of 'FMix: Enhancing Mixed Sample Data Augmentation'
-
Updated
Mar 26, 2021 - Jupyter Notebook
Effective Video Augmentation Techniques for Training Convolutional Neural Networks
-
Updated
Oct 5, 2021 - Python
abyss - augmentation of Hexrays decompiler output
plugin
decompiler
idapython
decompilation
idapro
augmentation
idapython-plugin
bug-hunting
hexrays
code-auditing
-
Updated
Jan 30, 2022 - Python
TextAugment: Text Augmentation Library
nlp
natural-language-processing
word2vec
wordnet
hacktoberfest
synonym
augmentation
mixup
augmentation-methods
low-resouce-language
nlp-augmentation
-
Updated
Sep 15, 2021 - Python
ruby
rails
metadata
application
sinatra
events
hanami
log
logging
context
structured-logging
timber
timber-ruby
contextual-data
augmentation
lograge
-
Updated
Apr 16, 2020 - Ruby
AutoML for image augmentation. AutoAlbument uses the Faster AutoAugment algorithm to find optimal augmentation policies. Documentation - https://albumentations.ai/docs/autoalbument/
machine-learning
computer-vision
deep-learning
pytorch
image-augmentation
augmentation
automl
automated-machine-learning
-
Updated
Sep 4, 2021 - Python
A simpler way of reading and augmenting image segmentation data into TensorFlow
python
deep-learning
pipeline
tensorflow
labels
data-preprocessing
masks
semantic-segmentation
data-augmentation
image-augmentation
augmentation
image-preprocessing
input-pipeline
data-augmentations
-
Updated
Jun 15, 2020 - Python
Includes: Learning data augmentation strategies for object detection | GridMask data augmentation | Augmentation for small object detection in Numpy. Use RetinaNet with ResNet-18 to test these methods on VOC and KITTI.
-
Updated
Aug 21, 2020 - Python
Mix3D: Out-of-Context Data Augmentation for 3D Scenes (3DV 2021 Oral)
-
Updated
Jan 26, 2022 - Python
andrewekhalel
commented
Nov 5, 2018
Using the same concept used in keras segmentation example add pytorch segmentation example
good first issue
Good for newcomers
automatic color-grading
color
image
transfer
photography
matching
match
histogram
automatic
colour
stopmotion
mkl
augmentation
lightfield
reinhard
color-grading
histogram-equalization
monge
kantorovich
pitie
re-color
-
Updated
Nov 4, 2021 - Python
Test Time image Augmentation (TTA) wrapper for Keras model.
-
Updated
Jan 6, 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."
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__.