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.
23 lines
594 B
23 lines
594 B
4 years ago
|
nodepipe
|
||
|
|
||
|
A javascript implementation of 'intercepting filter,' inspired by netty and grizzly pipelines.
|
||
|
|
||
|
Currently the implementation is beta.
|
||
|
|
||
|
Example:
|
||
|
|
||
|
var p = new Pipeline();
|
||
|
p.addHandler({incoming:function(ctx,evt){console.log(evt);ctx.forward(evt+evt);}});
|
||
|
p.addHandler({incoming:function(ctx,evt){console.log(evt);}});
|
||
|
p.pushIncoming("yo");
|
||
|
|
||
|
>yo
|
||
|
>yoyo
|
||
|
|
||
|
TODO:
|
||
|
1. Move the test out of nodepipe.js and into its own file
|
||
|
2. Test all basic functionality
|
||
|
3. Clarify event interface (type of event, body of event, etc.)
|
||
|
4. Document basic functionality
|
||
|
5. Integrate with node.js's stream events
|