8000 DOC Fix scipy broken link by Iglesys347 · Pull Request #23697 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

DOC Fix scipy broken link #23697

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/modules/grid_search.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ A continuous log-uniform random variable is available through
:class:`~sklearn.utils.fixes.loguniform`. This is a continuous version of
log-spaced parameters. For example to specify ``C`` above, ``loguniform(1,
100)`` can be used instead of ``[1, 10, 100]`` or ``np.logspace(0, 2,
num=1000)``. This is an alias to SciPy's `stats.reciprocal
<https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.reciprocal.html>`_.
num=1000)``. This is an alias to `scipy.stats.loguniform
<https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.loguniform.html>`_.

Mirroring the example above in grid search, we can specify a continuous random
variable that is log-uniformly distributed between ``1e0`` and ``1e3``::
Expand Down
0