2020-08-20 02:05:34 +02:00
|
|
|
"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;
|
|
|
|
}
|
|
|
|
}
|
2020-08-20 02:05:34 +02:00
|
|
|
exports.SeparableConvParams = SeparableConvParams;
|
2020-08-18 14:04:33 +02:00
|
|
|
//# sourceMappingURL=types.js.map
|