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.
29 lines
617 B
29 lines
617 B
var through = require('through');
|
|
var nextTick = typeof setImmediate !== 'undefined'
|
|
? setImmediate
|
|
: process.nextTick
|
|
;
|
|
|
|
module.exports = function (write, end) {
|
|
var tr = through(write, end);
|
|
tr.pause();
|
|
var resume = tr.resume;
|
|
var pause = tr.pause;
|
|
var paused = false;
|
|
|
|
tr.pause = function () {
|
|
paused = true;
|
|
return pause.apply(this, arguments);
|
|
};
|
|
|
|
tr.resume = function () {
|
|
paused = false;
|
|
return resume.apply(this, arguments);
|
|
};
|
|
|
|
nextTick(function () {
|
|
if (!paused) tr.resume();
|
|
});
|
|
|
|
return tr;
|
|
};
|
|
|