const.js 706 B

1234567891011121314151617181920
  1. import { Point } from '../classes';
  2. export var IOU_THRESHOLD = 0.4;
  3. export var BOX_ANCHORS = [
  4. new Point(0.738768, 0.874946),
  5. new Point(2.42204, 2.65704),
  6. new Point(4.30971, 7.04493),
  7. new Point(10.246, 4.59428),
  8. new Point(12.6868, 11.8741)
  9. ];
  10. export var BOX_ANCHORS_SEPARABLE = [
  11. new Point(1.603231, 2.094468),
  12. new Point(6.041143, 7.080126),
  13. new Point(2.882459, 3.518061),
  14. new Point(4.266906, 5.178857),
  15. new Point(9.041765, 10.66308)
  16. ];
  17. export var MEAN_RGB_SEPARABLE = [117.001, 114.697, 97.404];
  18. export var DEFAULT_MODEL_NAME = 'tiny_yolov2_model';
  19. export var DEFAULT_MODEL_NAME_SEPARABLE_CONV = 'tiny_yolov2_separable_conv_model';
  20. //# sourceMappingURL=const.js.map