Weighted sum — это сумма input values после умножения каждого из них на соответствующий weight. В neural networks и linear models она обычно передается в activation function или используется напрямую для computing a prediction.
The sum of all the relevant input values multiplied by their corresponding weights. For example, suppose the relevant inputs consist of the following: ---| input weight | -1.3 | 0.6 | 0.4 | The weighted sum is therefore: A weighted sum is the input argument to an activation function.