I want to do augmentation on a dataset containing images as an np-array stored in X_train and its label stored in y_train. Shapes are as follows:
print(X_train.shape)
print(y_train.shape)
Output:
(1100, 22, 64, 64)
(1100,)
A single image looks like this
plt.imshow(X_train[0][0])
How do I augment this dataset, so that I don't need to add its label every time?