Package org.jetbrains.kotlinx.dl.api.core.layer.merge
Types
AbstractMerge
Link copied to clipboard
abstract class AbstractMerge(layerTypeName: String, name: String) : Layer
Content copied to clipboard
Layer that adds a list of inputs.
Add
Link copied to clipboard
Layer that adds a list of inputs.
Average
Link copied to clipboard
Layer that averages a list of inputs element-wise.
Concatenate
Link copied to clipboard
Layer that concatenates a list of inputs.
Maximum
Link copied to clipboard
Layer that computes the maximum (element-wise) a list of inputs.
Minimum
Link copied to clipboard
Layer that computes the minimum (element-wise) a list of inputs.
Multiply
Link copied to clipboard
Layer that multiplies (element-wise) a list of inputs.
Subtract
Link copied to clipboard
Layer that subtracts inputs, following from the previous.
Functions
l2Normalize
Link copied to clipboard
fun l2Normalize(scope: Scope?, x: Operand<Float>, axis: IntArray?): Operand<Float>
Content copied to clipboard
Normalizes a tensor wrt the L2 norm alongside the specified axis.