pub trait LayerOps<F>: Convolution<F> + Rnn<F> + Pooling<F> + Relu<F> + ReluPointwise<F> + Sigmoid<F> + SigmoidPointwise<F> + Tanh<F> + TanhPointwise<F> + Softmax<F> + LogSoftmax<F> + Dropout<F> + Gemm<F> + Axpby<F> + Copy<F> { }
Expand description
Encapsulates all traits used in Layers.
Object Safety§
This trait is not object safe.