face-api/build/common/extractWeightEntryFactory.js

16 lines
744 B
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.extractWeightEntryFactory = void 0;
const utils_1 = require("../utils");
function extractWeightEntryFactory(weightMap, paramMappings) {
2020-08-18 14:04:33 +02:00
return function (originalPath, paramRank, mappedPath) {
const tensor = weightMap[originalPath];
if (!utils_1.isTensor(tensor, paramRank)) {
2020-08-18 14:04:33 +02:00
throw new Error(`expected weightMap[${originalPath}] to be a Tensor${paramRank}D, instead have ${tensor}`);
}
paramMappings.push({ originalPath, paramPath: mappedPath || originalPath });
return tensor;
};
}
exports.extractWeightEntryFactory = extractWeightEntryFactory;
2020-08-18 14:04:33 +02:00
//# sourceMappingURL=extractWeightEntryFactory.js.map