dataflow 0.4.0

Dataflow is a data processing library, primarily for machine learning.
Documentation
1
2
3
4
5
6
7
8
9
/// Dataloader module contains the main dataloader struct, as well as dataloader utilities
pub mod dataloader;
/// Pipeline module contains the dataflow pipeline struct, as well as all pipeline utilities
pub mod pipeline;

pub mod prelude {
    pub use crate::dataloader::*;
    pub use crate::pipeline::*;
}