xyutao / fscil

Official repository for Few-Shot Class-Incremental Learning (FSCIL)
221 stars 36 forks source link

The split of validation dataset #2

Closed MoonJian closed 4 years ago

MoonJian commented 4 years ago

Thanks for your fantastic work, but I have a question about the validation dataset: whether you split the training set into two parts: train and val, when train the base model, and the number of val samples per class in base and new sessions?

xyutao commented 4 years ago

The new class training sets are constructed by picking N samples for each class from the original dataset. So just pick another N samples for validation purpose.

MoonJian commented 4 years ago

Thanks for your reply~