Type Alias TinyYolov2Config

TinyYolov2Config: {
    anchors: Point[];
    classes: string[];
    filterSizes?: number[];
    iouThreshold: number;
    isFirstLayerConv2d?: boolean;
    meanRgb?: [number, number, number];
    withClassScores?: boolean;
    withSeparableConvs: boolean;
}