2020-08-18 14:04:33 +02:00
|
|
|
import { Point } from '../classes/Point';
|
|
|
|
export declare type TinyYolov2Config = {
|
|
|
|
withSeparableConvs: boolean;
|
|
|
|
iouThreshold: number;
|
|
|
|
anchors: Point[];
|
|
|
|
classes: string[];
|
|
|
|
meanRgb?: [number, number, number];
|
|
|
|
withClassScores?: boolean;
|
|
|
|
filterSizes?: number[];
|
|
|
|
isFirstLayerConv2d?: boolean;
|
|
|
|
};
|
|
|
|
export declare function validateConfig(config: any): void;
|
2020-08-21 15:01:04 +02:00
|
|
|
//# sourceMappingURL=config.d.ts.map
|