YyzHarry/imbalanced-regression

Implementation of SMOGN and RRT for deep regression

ackbar03 opened this issue · 1 comments

Hi,

Could you help clarify your implementation for SMOGN and RRT in the paper?

  • For SMOGN, did you do the interpolation based on raw images? I.e. simply interpolating between the raw pixel values?
  • For RRT, how did you train the encoder step? Do you train the entire model first, and then freeze the encoder and only train the last layer?

Thanks for clarifying!

Hi - thanks for your interest!

For SMOGN, did you do the interpolation based on raw images? I.e. simply interpolating between the raw pixel values?

Yes, the interpolation is done in the input space. More details regarding SMOGN can be found in Section C.1 in our paper.

For RRT, how did you train the encoder step? Do you train the entire model first, and then freeze the encoder and only train the last layer?

Yes, in the first stage we train the entire model, and in the second stage we freeze the encoder and retrain the last regression layer. You will need to specify a training arg args.retrain_fc, see here for example.