index.d.ts 261 B

123456
  1. import { TinyYolov2 } from './TinyYolov2';
  2. export * from './TinyYolov2Options';
  3. export * from './config';
  4. export * from './types';
  5. export { TinyYolov2 };
  6. export declare function createTinyYolov2(weights: Float32Array, withSeparableConvs?: boolean): TinyYolov2;