UNPKG

tfjs-tiny-yolov2

Version:

Tiny YOLO v2 object detection with tensorflow.js.

12 lines (11 loc) 272 B
import { CELL_SIZE } from './const'; import { TinyYolov2BackwardOptions } from './types'; export function getDefaultBackwardOptions(options: TinyYolov2BackwardOptions) { return Object.assign( {}, { minBoxSize: CELL_SIZE }, options ) }