20 lines
1.2 KiB
JavaScript
20 lines
1.2 KiB
JavaScript
import * as tf from '@tensorflow/tfjs-core';
|
|
import { SeparableConvParams } from './types';
|
|
export function extractSeparableConvParamsFactory(extractWeights, paramMappings) {
|
|
return function (channelsIn, channelsOut, mappedPrefix) {
|
|
const depthwise_filter = tf.tensor4d(extractWeights(3 * 3 * channelsIn), [3, 3, channelsIn, 1]);
|
|
const pointwise_filter = tf.tensor4d(extractWeights(channelsIn * channelsOut), [1, 1, channelsIn, channelsOut]);
|
|
const bias = tf.tensor1d(extractWeights(channelsOut));
|
|
paramMappings.push({ paramPath: `${mappedPrefix}/depthwise_filter` }, { paramPath: `${mappedPrefix}/pointwise_filter` }, { paramPath: `${mappedPrefix}/bias` });
|
|
return new SeparableConvParams(depthwise_filter, pointwise_filter, bias);
|
|
};
|
|
}
|
|
export function loadSeparableConvParamsFactory(extractWeightEntry) {
|
|
return function (prefix) {
|
|
const depthwise_filter = extractWeightEntry(`${prefix}/depthwise_filter`, 4);
|
|
const pointwise_filter = extractWeightEntry(`${prefix}/pointwise_filter`, 4);
|
|
const bias = extractWeightEntry(`${prefix}/bias`, 1);
|
|
return new SeparableConvParams(depthwise_filter, pointwise_filter, bias);
|
|
};
|
|
}
|
|
//# sourceMappingURL=extractSeparableConvParamsFactory.js.map
|