bubbliiiing / centernet-keras

这是一个centernet-keras的源码,可以用于训练自己的模型。
MIT License
63 stars 15 forks source link

数据类型错误 #3

Open DreamRiverForever opened 3 years ago

DreamRiverForever commented 3 years ago

def gaussian2D(shape, sigma=1): m, n = [(ss - 1.) / 2. for ss in shape] y, x = np.ogrid[-m:m + 1, -n:n + 1]

h = np.exp(-(x * x + y * y) / (2 * sigma * sigma))

h[h < np.finfo(h.dtype).eps * h.max()] = 0
return h

TypeError: float() argument must be a string or a number, not '_NoValueType' 这个h.max()报错

bubbliiiing commented 3 years ago

em?是版本吗,不是的话我觉得是数据集的问题,这段代码是在读取数据的时候用的