-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The definition of a replay buffer exempler #4
Comments
Hi, |
From the new detailed guidelines that will soon be published on the website:
|
Thank you for the clarification! |
Oh I have one more confusion. It seems like we can keep the previous model (the model of the previous experience) as you guys provide LWF as a baseline. Is there any limit in the number of previous models that we can utilize in the future experience? Or does it not matter if we don't violate the gpu vram memory limit? |
Hi :), there is no explicit limit to the number of models that you can store for your method and they are not regarded as samples of the replay buffer. They are restricted by the GPU VRAM memory limit of 10GB. Furthermore, all of the models or elements that you need for training your method or during inference have to fit into this VRAM limit at once, please do not unload copies of models to the cpu or process them in sequence to comply with the VRAM limit. |
I also want to clarify one more thing about the rule of the competition.
It says we can only store up to 200 exemplers into replay buffer from previous experiences.
Then how are you going to count the number of exemplers in the buffer?
For example, if I store output feature from a certain convolution layer and output logit from a prediction head of a single image, will it be counted as 2 exemplers stored, or counted as 1 exempler that is a tuple of (feature, logit)?
Also, if I keep the average loss of each trained (seen) class, will it be counted as storing N (the number of seen classes) exemplers, or just counted as one exempler that is the list of mean value?
Moreover, is the previous model from the previous experience counted as a single exempler? Or does it treated as it is not in memory buffer?
I hope I can figure it out.
Thank you.
The text was updated successfully, but these errors were encountered: