Data augmentation on testing dataset?
I have a training data set, which includes the original data + some data augmented from the original. I also have a testing data set which are all original data. Now, I want to implement k-fold cross validation, hence I combined both data set since k-fold will be the one to split the dataset into training and testing. My question is, is that okay? Especially with the case when the original data was used as training and then the augmented one are used as testing (since the splitting is random)? How do I augment the dataset while using k-fold cross validation? Thank you so much!