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.
18 lines
488 B
18 lines
488 B
4 years ago
|
var constants = require('./util/constants');
|
||
|
var common = require('./util/common');
|
||
|
var containerCommands = require('./util/container_commands');
|
||
|
|
||
|
var msg = [
|
||
|
'Generating baseline image(s) using build/plotly.js from',
|
||
|
common.getTimeLastModified(constants.pathToPlotlyBuild),
|
||
|
'\n'
|
||
|
].join(' ');
|
||
|
|
||
|
var cmd = containerCommands.getRunCmd(
|
||
|
process.env.CIRCLECI,
|
||
|
'node test/image/make_baseline.js ' + process.argv.slice(2).join(' ')
|
||
|
);
|
||
|
|
||
|
console.log(msg);
|
||
|
common.execCmd(cmd);
|