sklearn.py, utils.py: remove custom log_uniform distribution in favor of scipy.stats.reciprocal
Turns out scipy.stats.reciprocal
is an alias for a log uniform distribution, see https://github.com/scipy/scipy/pull/10815. There is no need to keep around this distribution in utils.py
as a result anymore.