Skip to content

decode_yolov4

YOLOv4 decoder.

This layer decodes the Yolov4 output into bounding boxes


Parameters

  • keep_top_k : Integer, how many of the top-score bounding boxes to output (The default is 300).
  • do_nms : Boolean, whether or not to run NMS on the detected bounding boxes (The default is true).
  • nms_thresh : Float, threshold of jaccard overlap (Non-Maximum Suppression) (The default is 0.5).
  • conf_thresh : Float, minimum confidence score to be detected (The default is 0.3).
  • clips : Boolean, if set true, clips the detected box into the image.