EmotionDetection
EmotionDetection copied to clipboard
Semantic encoder and decoder: what's the pair between arguments and weights?
As this issue say, may I ask for the right matching? Thanks a lot.
Could you give the sample of how to run the code? I cannot match the code with the weights.
parser.add_argument('--arch_encoder', default='resnet50_dilated16',
help="architecture of net_encoder")
parser.add_argument('--arch_decoder', default='psp_bilinear',
help="architecture of net_decoder")
parser.add_argument('--fc_dim', default=2048, type=int,
help='number of features between encoder and decoder')
# Path related arguments
parser.add_argument('--weights_encoder', default='./model/baseline-resnet50dilated-ppm_deepsup/encoder_epoch_20.pth')
parser.add_argument('--weights_decoder', default='./model/baseline-resnet50dilated-ppm_deepsup/decoder_epoch_20.pth')
Originally posted by @cswin in https://github.com/amr4i/EmotionDetection/issues/6#issuecomment-486479272