Samples calculation in Replay Strategy #1105
-
Hi, I have been using Replay Strategy to train a classification model. The number of samples is fixed to 200. And as in Replay Strategy, each time I train, I will have 200/n_classes_encountered_so_far per examples per class in your memory. So this means, if I have 6 classes then the total samples used in 6 experiences would be as follows :- Experience 1 - 200//1 -> 200 (200 samples of class 1) => ~(200*6) => 1200 So can I say a total of 1200 samples would be used for the training purpose? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, but this is not what most people mean when they talk about memory size. Usually you only care about the maximum number of samples that you keep in memory at the same time. |
Beta Was this translation helpful? Give feedback.
Yes, but this is not what most people mean when they talk about memory size. Usually you only care about the maximum number of samples that you keep in memory at the same time.