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.
26 lines
477 B
26 lines
477 B
4 years ago
|
#!/usr/bin/env node
|
||
|
|
||
|
var path = require('path');
|
||
|
var argv = require('minimist')(process.argv.slice(2));
|
||
|
var writeJson = require('write-json');
|
||
|
var Normalizer = require('./');
|
||
|
var config = new Normalizer();
|
||
|
|
||
|
/**
|
||
|
* Optionally specific a destination path
|
||
|
*/
|
||
|
|
||
|
var dest = argv.dest || argv.d || 'package.json';
|
||
|
|
||
|
/**
|
||
|
* Write the file
|
||
|
*/
|
||
|
|
||
|
writeJson(dest, config.normalize(), function(err) {
|
||
|
if (err) {
|
||
|
console.error(err);
|
||
|
process.exit(1);
|
||
|
}
|
||
|
console.log('done');
|
||
|
});
|