1/* 2 Appellation: reg <module> 3 Contrib: FL03 <jo3mccain@icloud.com> 4*/ 5//! # Regressive Loss Functions 6//! 7//! 8 9pub mod avg; 10 11pub(crate) mod prelude { 12 pub use super::avg::*; 13}