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
#![allow(clippy::disallowed_methods)]
//! Bug Regression Test Suite -- Never Again
//!
//! Each test encodes a specific historical bug from the showcase spec.
//! Test names include bug numbers for traceability.
//!
//! These tests use synthetic data and do NOT require model files,
//! so they run in every `cargo test`.

use std::path::Path;
use tempfile::NamedTempFile;

include!("includes/regression_1.rs");
include!("includes/regression_2.rs");