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.
|
4 years ago | |
---|---|---|
.. | ||
example | 4 years ago | |
test | 4 years ago | |
.travis.yml | 4 years ago | |
LICENSE | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago | |
readme.markdown | 4 years ago |
readme.markdown
resumer
Return a through stream that starts out paused and resumes on the next tick,
unless somebody called .pause()
.
This module has the same signature as through.
example
var resumer = require('resumer');
var s = createStream();
s.pipe(process.stdout);
function createStream () {
var stream = resumer();
stream.queue('beep boop\n');
return stream;
}
$ node example/resume.js
beep boop
methods
var resumer = require('resumer')
resumer(write, end)
Return a new through stream from write
and end
, which default to
pass-through .queue()
functions if not specified.
The stream starts out paused and will be resumed on the next tick unless you
call .pause()
first.
write
and end
get passed directly through to
through.
install
With npm do:
npm install resumer
license
MIT