index.js 397 B

1234567891011
  1. import { TinyYolov2 } from './TinyYolov2';
  2. export * from './TinyYolov2Options';
  3. export * from './config';
  4. export { TinyYolov2 };
  5. export function createTinyYolov2(weights, withSeparableConvs) {
  6. if (withSeparableConvs === void 0) { withSeparableConvs = true; }
  7. var net = new TinyYolov2(withSeparableConvs);
  8. net.extractWeights(weights);
  9. return net;
  10. }
  11. //# sourceMappingURL=index.js.map