ContinualAI/clvision-challenge-2022

#track 2: 'Solutions can exploit a replay buffer containing data coming from up to 3500 training instances.' For example, in task1, can we randomly sample 3500 images from the full training set (ego_objects_challenge_train.json)?

Layjins opened this issue · 2 comments

#track 2: 'Solutions can exploit a replay buffer containing data coming from up to 3500 training instances.' For example, in task1, can we randomly sample 3500 images from the full training set (ego_objects_challenge_train.json)?

Hi @Layjins, the replay buffer can be filled only using data from the current experience. You can't use data from future or past experiences. This also means that the initial replay buffer must be empty!

You will have to choose which images to keep and which to discard before completing each training experience (this choice can greatly impact the final performance of your solution).