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.
12 lines
248 B
12 lines
248 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
pushd "$(dirname "$0")" > /dev/null
|
||
|
SCRIPT_DIR="$(pwd)"
|
||
|
popd > /dev/null
|
||
|
DIST_DIR=$SCRIPT_DIR/dist
|
||
|
|
||
|
browserify $SCRIPT_DIR/index.js -o $DIST_DIR/polybool.js
|
||
|
uglifyjs $DIST_DIR/polybool.js --comments > $DIST_DIR/polybool.min.js
|