StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
473 B
19 lines
473 B
var hiddenStore = require('./hidden-store.js');
|
|
|
|
module.exports = createStore;
|
|
|
|
function createStore() {
|
|
var key = {};
|
|
|
|
return function (obj) {
|
|
if ((typeof obj !== 'object' || obj === null) &&
|
|
typeof obj !== 'function'
|
|
) {
|
|
throw new Error('Weakmap-shim: Key must be object')
|
|
}
|
|
|
|
var store = obj.valueOf(key);
|
|
return store && store.identity === key ?
|
|
store : hiddenStore(obj, key);
|
|
};
|
|
}
|
|
|