I have split my training and test datasets using the train test split library
lengths = [int(len(supervised_data)*0.8),int(len(supervised_data)*0.2)+1]
train_data, test_data = torch.utils.data.random_split(supervised_data, lengths)
Now I am trying to append additional data to train_data.
Because I am trying to run several experiments (adding more data to training while using the same test_data for all experiments).
Is that possible?
supervised_datain your case. So, you will training your model with (train_data + additional_data) and testing it on test_data. - Rishabh Mishra