StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
13 lines
219 B
13 lines
219 B
4 years ago
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Default noop task to use when tasks only contain compositions.
|
||
|
*
|
||
|
* @param {Function} `done` callback that does nothing.
|
||
|
* @return {*}
|
||
|
*/
|
||
|
|
||
|
module.exports = function(done) {
|
||
|
return done();
|
||
|
};
|