Skip to content

Commit 3c20a3c

Browse files
committed
fix: broken links fixed
1 parent dad916e commit 3c20a3c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

source/content/examples/Active-regression.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For this example, we shall try to learn the *noisy sine* function:
2020
Uncertainty measure and query strategy for Gaussian processes
2121
-------------------------------------------------------------
2222

23-
For active learning, we shall define a custom query strategy tailored to Gaussian processes. More information on how to write your custom query strategies can be found at the page `Extending modAL <../overview/Extending-modAL>`__. In a nutshell, a *query stategy* in modAL is a function taking (at least) two arguments (an estimator object and a pool of examples), outputting the index of the queried instance and the instance itself. In our case, the arguments are ``regressor`` and ``X``.
23+
For active learning, we shall define a custom query strategy tailored to Gaussian processes. More information on how to write your custom query strategies can be found at the page `Extending modAL <../overview/Extending-modAL.html>`__. In a nutshell, a *query stategy* in modAL is a function taking (at least) two arguments (an estimator object and a pool of examples), outputting the index of the queried instance and the instance itself. In our case, the arguments are ``regressor`` and ``X``.
2424

2525
.. code:: python
2626

source/content/examples/Ensemble-regression.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ For the sake of this example, we are going to learn the *noisy absolute value* f
2525
Measuring disagreement with CommitteeRegression
2626
-----------------------------------------------
2727

28-
If you have several regressors, measuring disagreement can be done by calculating the standard deviation of the predictions for each point. This of course cannot be achieved with classifier algorithms, where averaging the class labels doesn't make sense. (Or it is undefined even, if the class labels are strings for example.) In the simplest setting, this is implemented in the function
29-
``modAL.disagreement.max_std_sampling``. For more details on this, see the `disagreement sampling API reference <Disagreement-sampling-API>`__.
28+
If you have several regressors, measuring disagreement can be done by calculating the standard deviation of the predictions for each point. This of course cannot be achieved with classifier algorithms, where averaging the class labels doesn't make sense. (Or it is undefined even, if the class labels are strings for example.) In the simplest setting, this is implemented in the function ``modAL.disagreement.max_std_sampling``.
3029

3130
This measure is default for CommitteeRegressors, so we don't need to specify this upon initialization.
3231

0 commit comments

Comments
 (0)