face-api/build/common/types.js

12 lines
421 B
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SeparableConvParams = void 0;
class SeparableConvParams {
2020-08-18 14:04:33 +02:00
constructor(depthwise_filter, pointwise_filter, bias) {
this.depthwise_filter = depthwise_filter;
this.pointwise_filter = pointwise_filter;
this.bias = bias;
}
}
exports.SeparableConvParams = SeparableConvParams;
2020-08-18 14:04:33 +02:00
//# sourceMappingURL=types.js.map