nnf_prelu function

Prelu

Prelu

Applies element-wise the function PReLU(x)=max(0,x)+weightmin(0,x)PReLU(x) = max(0,x) + weight * min(0,x)

where weight is a learnable parameter.

nnf_prelu(input, weight)

Arguments

  • input: (N,*) tensor, where * means, any number of additional dimensions
  • weight: (Tensor) the learnable weights
  • Maintainer: Daniel Falbel
  • License: MIT + file LICENSE
  • Last published: 2025-02-14