I am looking for an activation function that squashes $\mathbb{R}$ to $[0,100]$.
Currently I am using $$f(x) = \frac{100}{1+e^{-x}}$$ but this does not evenly distribute the values across the interval, they are skewed to both ends. By this I mean that all values above $x=5$ map to $\approx 100$ and all values below $x=-5$ map to $\approx 0$, which we can see if we plot the graph. I would like a function which widens the range of inputs which map to values in $(0,100)$.
Can anyone point me towards such a function please.