cntk.mean( $operands as cntk.variable, [$name as String] ) as cntk.function
Create a new Function instance that computes element-wise mean of input tensors.
Parameters | |
---|---|
$operands | List of functions. |
$name | The name of the function instance in the network. |
var inputVariable1 = cntk.inputVariable(cntk.shape([3]), "float", fn.false(), fn.false(), "feature") var inputVariable2 = cntk.inputVariable(cntk.shape([3]), "float", fn.false(), fn.false(), "feature") cntk.mean(inputVariable2, "ht") => cntk.function(Composite Mean (Input(Name(feature), Shape([3]), Dynamic Axes([Sequence Axis(Default Dynamic Axis), Batch Axis(Default Batch Axis)]))))
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.