dataflow 0.4.0

Dataflow is a data processing library, primarily for machine learning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod stateful;
pub use stateful::*;
mod batch;
pub use batch::*;
mod sort;
pub use sort::*;
mod mapreduce;
pub use mapreduce::*;
mod map;
pub use map::*;
mod shuffle;
pub use shuffle::*;
mod selector;
pub use selector::*;