YOLO
Utils for the Yolo Object Detection task
YoloLoss
from code_loader.helpers.detection.yolo.loss import YoloLoss
LOSS_FN = YoloLoss(num_classes: int, default_boxes: List[NDArray[np.int32]],
overlap_thresh: float, background_label: int,
features: List[Tuple[int, int]] = [],
anchors: Optional[NDArray[np.int32]] = None,
from_logits: bool = True, weights: List[float] = [4.0, 1.0, 0.4],
max_match_per_gt: int = 10,
image_size: Union[Tuple[int, int], int] = (640, 640),
cls_w: float = 0.3, obj_w: float = 0.7, box_w: float = 0.05,
yolo_match: bool = False):Args
Args
Decoder
Args
Args
Grid
Args
Last updated
Was this helpful?

