cwLin1
Results
1
comments of
cwLin1
It can be solved by changing this [line ](https://github.com/bingykang/Fewshot_Detection/blob/20c0580356e273cd69ac16ae327226649419b44b/darknet_meta.py#L226)in darknet_meta.py ` pad = (kernel_size-1)/2 if is_pad else 0` into `pad = (kernel_size-1)//2 if is_pad else 0`