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.
 
 
 
 
StackGenVis/frontend/node_modules/pipe
Angelos Chatzimparmpas e069030893 fix the frontend 3 years ago
..
LICENSE.TXT fix the frontend 3 years ago
README fix the frontend 3 years ago
nodepipe.js fix the frontend 3 years ago
package.json fix the frontend 3 years ago
test.js fix the frontend 3 years ago

README

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