aprender-core 0.29.2

Next-generation machine learning library in pure Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14

// =============================================================================
// POPPERIAN FALSIFICATION TESTS
// =============================================================================
//
// Per Popper (1959), these tests attempt to DISPROVE the contract works.
// If any test passes when it should fail, the contract has a logic error.

#[cfg(test)]
mod tests {
    use super::*;
include!("validated_tensors_tests_generators.rs");
include!("validated_tensors_tests_stats.rs");
}