Function autograd::ops::reduce_min [] [src]

pub fn reduce_min<T: ArrayLike>(x: &Tensor, axes: &T, keep_dims: bool) -> Tensor

Takes min along specified axes.

Elements of axes can be negative.

extern crate ndarray;
extern crate autograd as ag;

let mut ctx = ag::Context::new();
let ref x = ag::constant(ndarray::arr2(&[[2., 4.], [3., 1.]]), &mut ctx);
let ref y = ag::reduce_min(&x, &[0], false);

assert_eq!(y.eval(&mut ctx), ndarray::arr1(&[2., 1.]).into_dyn());