pytorch-DEX icon indicating copy to clipboard operation
pytorch-DEX copied to clipboard

some minor mistakes of the code.

Open Hzzone opened this issue 4 years ago • 0 comments

  1. Image Normalization according to imagenet_mean.binaryproto.
  2. Age Estimation computing mistake. Your code:
def expected_age(vector):
    res = [(i+1)*v for i, v in enumerate(vector)]
    return sum(res)

but in the paper:

Hzzone avatar Sep 28 '19 03:09 Hzzone