0 votes
in Machine Learning by
What is data augmentation? Can you give some examples?

1 Answer

0 votes
by

Data augmentation is a technique for synthesizing new data by modifying existing data in such a way that the target is not changed, or it is changed in a known way.

Computer vision is one of fields where data augmentation is very useful. There are many modifications that we can do to images:

  1. Resize
  2. Horizontal or vertical flip
  3. Rotate
  4. Add noise
  5. Deform

Modify colors Each problem needs a customized data augmentation pipeline. For example, on OCR, doing flips will change the text and won’t be beneficial; however, resizes and small rotations may help.

Related questions

0 votes
asked Aug 1, 2023 in GitHub by DavidAnderson
+1 vote
asked Nov 28, 2019 in Machine Learning by sharadyadav1986
...