server-json/node_modules/tfjs-image-recognition-base/build/es6/common/disposeUnusedWeightTensors.js
2024-11-01 08:00:42 +00:00

8 lines
No EOL
331 B
JavaScript

export function disposeUnusedWeightTensors(weightMap, paramMappings) {
Object.keys(weightMap).forEach(function (path) {
if (!paramMappings.some(function (pm) { return pm.originalPath === path; })) {
weightMap[path].dispose();
}
});
}
//# sourceMappingURL=disposeUnusedWeightTensors.js.map