mlx_rs::nn

Trait Pooling

Source
pub trait Pooling
where Self: Fn(&Array, &[i32]) -> Result<Array, Exception> + DynClone,
{ }
Expand description

Marker trait for pooling operations.

Implementors§

Source§

impl<T> Pooling for T
where T: Fn(&Array, &[i32]) -> Result<Array, Exception> + DynClone,