Skip to content

decode_pelee

Pelee decoder.

This layer decodes pelee into bounding boxes.


Parameter

  • keep_top_k : Integer, maximum num of detected boxes (The default is 300)
  • background_label_id : Integer, label number of background (The default is 0)
  • do_nms : Boolean, whether run or not to run NMS (The default is true).
  • nms_thresh : Float, threshold of jaccard overlap for NMS (The default is 0.45)
  • conf_thresh : Float, threshold of confidence score to be detected (The default is 0.01)
  • clips : Boolean, if set true, clips the detected box into the image.