caffe icon indicating copy to clipboard operation
caffe copied to clipboard

fasterrcnn bug

Open lucasjinreal opened this issue 5 years ago • 0 comments

this line

            stds = np.sqrt(self._squared_sums // self._counts - means ** 2)

Inside rpn/anchor_target_layer.py,

the value may got negative and cause sqrt to nan....................... since squared_sum might be litte and means**2 could be big, minus got - can not sqrt

lucasjinreal avatar Aug 14 '19 07:08 lucasjinreal