const.js 868 B

12345678910111213141516171819202122
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var classes_1 = require("../classes");
  4. exports.IOU_THRESHOLD = 0.4;
  5. exports.BOX_ANCHORS = [
  6. new classes_1.Point(0.738768, 0.874946),
  7. new classes_1.Point(2.42204, 2.65704),
  8. new classes_1.Point(4.30971, 7.04493),
  9. new classes_1.Point(10.246, 4.59428),
  10. new classes_1.Point(12.6868, 11.8741)
  11. ];
  12. exports.BOX_ANCHORS_SEPARABLE = [
  13. new classes_1.Point(1.603231, 2.094468),
  14. new classes_1.Point(6.041143, 7.080126),
  15. new classes_1.Point(2.882459, 3.518061),
  16. new classes_1.Point(4.266906, 5.178857),
  17. new classes_1.Point(9.041765, 10.66308)
  18. ];
  19. exports.MEAN_RGB_SEPARABLE = [117.001, 114.697, 97.404];
  20. exports.DEFAULT_MODEL_NAME = 'tiny_yolov2_model';
  21. exports.DEFAULT_MODEL_NAME_SEPARABLE_CONV = 'tiny_yolov2_separable_conv_model';
  22. //# sourceMappingURL=const.js.map