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.
28 lines
608 B
28 lines
608 B
4 years ago
|
'use strict';
|
||
|
|
||
|
var path = require('path');
|
||
|
var util = require('util');
|
||
|
var utils = require('../utils');
|
||
|
|
||
|
module.exports = function(command, val, config, key) {
|
||
|
if (typeof val === 'undefined') {
|
||
|
return;
|
||
|
}
|
||
|
// fix paths mistaken for dot-notation
|
||
|
if (utils.isObject(val)) {
|
||
|
val = utils.stringify(val);
|
||
|
}
|
||
|
|
||
|
if (typeof val === 'string') {
|
||
|
return path.resolve(val);
|
||
|
}
|
||
|
|
||
|
if (typeof val === 'boolean') {
|
||
|
val = config[key] = { show: true };
|
||
|
return val;
|
||
|
}
|
||
|
|
||
|
val = util.inspect(val);
|
||
|
throw new TypeError('--' + command + ': expected a string or boolean, but received: ' + val);
|
||
|
};
|