use activation::Activation;
#[derive(Copy, Clone)]
pub struct RectifiedLinearUnit;
impl RectifiedLinearUnit {
pub fn new() -> RectifiedLinearUnit {
return RectifiedLinearUnit;
}
}
impl Activation for RectifiedLinearUnit {
fn calc(&self, x: Vec<f64>) -> Vec<f64> {
x.iter()
.map(|&n| if n <= 0f64 { 0f64 } else { n })
.collect::<Vec<_>>()
}
fn derivative(&self, x: Vec<f64>) -> Vec<f64> {
x.iter()
.map(|&n| if n <= 0f64 { 0f64 } else { n })
.collect::<Vec<_>>()
}
}
#[cfg(test)]
mod tests {
use super::Activation;
use super::RectifiedLinearUnit;
#[test]
fn rectifiedlinearunit_test() {
let activation = RectifiedLinearUnit::new();
assert_approx_eq!(activation.calc(vec![3.4f64])[0], 3.4f64);
assert_approx_eq!(activation.calc(vec![-3.4f64])[0], 0f64);
}
#[test]
fn rectifiedlinearunit_derivative_test() {
let activation = RectifiedLinearUnit::new();
assert_approx_eq!(activation.derivative(vec![-3.4f64])[0], 0f64);
assert_approx_eq!(activation.derivative(vec![3.4f64])[0], 3.4f64);
}
}