Add PP-YOLOE support
This commit is contained in:
@@ -28,7 +28,7 @@ __global__ void gpuYoloLayer(
|
||||
if (objectness < scoreThreshold)
|
||||
return;
|
||||
|
||||
int count = (int)atomicAdd(&countData[0], 1);
|
||||
int count = (int)atomicAdd(countData, 1);
|
||||
|
||||
const float alpha = scaleXY;
|
||||
const float beta = -0.5 * (scaleXY - 1);
|
||||
|
||||
Reference in New Issue
Block a user