Let $v$ : a $k$-dimensional vector of positive real values.
The function is given by:
$$ f(v)_i = \frac{v_i}{\sum_{j=1}^k v_j}$$
What is this function called?
How does compare to the Softmax function?
I was inspired by the Softmax function, but I thought this keeps the proportions in a way that Softmax doesn't.
Example:
v = [1,2,3]
softmax(v) = [0.09..., 0.24..., 0.6...]
this(v) = [0.16..., 0.33..., 0.5]