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.
25 lines
713 B
25 lines
713 B
4 years ago
|
var constants = require('./util/constants');
|
||
|
var _bundle = require('./util/browserify_wrapper');
|
||
|
|
||
|
/*
|
||
|
* Trimmed down version of ./bundle.js for CI testing
|
||
|
*
|
||
|
* Outputs:
|
||
|
*
|
||
|
* - plotly.js bundle in build/
|
||
|
* - plotly-geo-assets.js bundle in dist/ (in accordance with test/image/index.html)
|
||
|
* - plotly.min.js bundle in dist/ (for requirejs test)
|
||
|
*/
|
||
|
|
||
|
// Browserify plotly.js and plotly.min.js
|
||
|
_bundle(constants.pathToPlotlyIndex, constants.pathToPlotlyBuild, {
|
||
|
standalone: 'Plotly',
|
||
|
debug: true,
|
||
|
pathToMinBundle: constants.pathToPlotlyDistMin
|
||
|
});
|
||
|
|
||
|
// Browserify the geo assets
|
||
|
_bundle(constants.pathToPlotlyGeoAssetsSrc, constants.pathToPlotlyGeoAssetsDist, {
|
||
|
standalone: 'PlotlyGeoAssets'
|
||
|
});
|