ShuGuoJ / 3DAES

16 stars 4 forks source link

train siamese.py line 107-112 #4

Open lucas2606-rs opened 2 years ago

lucas2606-rs commented 2 years ago

what s the function of line 107-112? why should 100 random selected samples as test set rather than like you mentioned in paper "the remaining labeled samples as test set"?

ShuGuoJ commented 2 years ago

In training the siamese network, we select randomly 100 samples for saving time, which does not have any influence. And in the final fine-tuning phase, 10 samples for every class are used to train the classifier and others serve as testing samples.

lucas2606-rs commented 2 years ago

OK, i got it, thx for reply