aprender 0.67.0

Next-generation ML framework in pure Rust — `cargo install aprender` for the `apr` CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A reader in a nested `mod.rs` -> the row's module is `deep`.
mod leaf;

#[cfg(test)]
#[path = "../attached.rs"]
mod bolted;

pub fn dir_reader() -> bool {
    std::fs::read_to_string("scripts/deep_baseline.txt").is_ok()
}

#[cfg(test)]
mod tests {
    #[test]
    fn dir_module_reads_the_tree() {
        let _ = std::fs::read_to_string("scripts/deep_baseline.txt");
    }
}