In Machine Learning, during hyperparameter tuning, if you don't have a clue about the scale of the hyperparameter that you are trying to tune, it is common practice to perform grid search with roughly geometrically increasing values, for example: [0.01, 0.03, 0.1, 0.3, 1.0, 3.0, 10.0, 30.0, 100.0].
Using NumPy, I can sample 1,000 numbers from such a distribution like so:
x = np.rand(1000) * 10 - 5 # x is uniform random in [-5, 5]
y = np.exp(x)
I suppose this distribution is well known. If so, what is its name? I would like to find it in the list of distribution functions in scipy.
Edit
I'm not very familiar with the mathematical notations, but I guess it might look something like this:
I'm looking for the name of the random distribution $ Y = \exp(X) $
with $X \sim\ \mathcal{U}(-5, 5)$
where $\mathcal{U}$ represents the uniform distribution,
Thanks!