Closed Luodian closed 4 years ago
Or do we only need to train a feature level adaption? since the stylized source images already contain the pixel level information?
Discrim_feat is a parameter given to the feature adaptation code to determine whether to use the penultimate layer activations (discrim_feat=True) or the logits (discrim_feat=False).
I noticed that in your code, if we set
discrim_feat = True
, then we are training feature level adaption, otherwise, we are doing it at pixel level?I am not sure if I understand this procedure correctly, but if I only use default script
train_fcn_adda.sh
, I can only get a pixel level trained model? and I need to train it again by loading former model into pixel level setting?Also, the 'drn26' doesn't correctly be implemented in
discrim_feat = True
's case.Maybe I am not clearly aware of the whole procedure, but I've got really confused.