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.
31 lines
716 B
31 lines
716 B
'use strict';
|
|
|
|
var path = require('path');
|
|
var util = require('util');
|
|
var utils = require('../utils');
|
|
|
|
module.exports = function(app, base, options) {
|
|
return function(val, key, config, schema) {
|
|
if (typeof val === 'undefined') {
|
|
return;
|
|
}
|
|
|
|
if (typeof val === 'string') {
|
|
val = val.split(',');
|
|
}
|
|
|
|
if (!Array.isArray(val)) {
|
|
val = util.inspect(val);
|
|
throw new TypeError('--' + key + ': expected a string or boolean, but received: ' + val);
|
|
}
|
|
|
|
if (config.cwd) {
|
|
app.cwd = path.resolve(app.cwd, path.resolve(config.cwd));
|
|
}
|
|
|
|
config[key] = val.map(function(name) {
|
|
return utils.tryResolve(name, app.cwd);
|
|
});
|
|
return config[key];
|
|
};
|
|
};
|
|
|