You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/guide/learners.rst
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -261,12 +261,12 @@ The minimum requirement for a learner to be used for nuisance models in the :ref
261
261
* The implementation as a learner for regression or classification in the `mlr3 <https://mlr3.mlr-org.com/>`_ package
262
262
or its extension packages `mlr3learners <https://mlr3learners.mlr-org.com/>`_ and
263
263
`mlr3extralearners <https://mlr3extralearners.mlr-org.com/>`_ . A guide on how to add a learner is provided in the
264
-
`chapter on extending learners in the mlr3 book <https://mlr3book.mlr-org.com/technical.html#sec-extending>`_ .
264
+
`chapter on extending learners in the mlr3 book <https://mlr3book.mlr-org.com/chapters/chapter10/advanced_technical_aspects_of_mlr3.html#sec-extending>`_ .
265
265
* The `mlr3 <https://mlr3.mlr-org.com/>`_ package makes sure that the learners satisfy some core functionalities.
266
266
To specify a specific learner in :ref:`DoubleML <doubleml_package>` users can pass objects of the class
267
267
`Learner <https://mlr3.mlr-org.com/reference/Learner.html>`_. A fast way to construct these objects is to use the
268
268
`mlr3 <https://mlr3.mlr-org.com/>`_ function `lrn() <https://mlr3.mlr-org.com/reference/mlr_sugar.html>`_.
269
-
An introduction to learners in `mlr3 <https://mlr3.mlr-org.com/>`_ is provided in the `chapter on learners of the mlr3 book <https://mlr3book.mlr-org.com/basics.html#sec-learners>`_.
269
+
An introduction to learners in `mlr3 <https://mlr3.mlr-org.com/>`_ is provided in the `chapter on learners of the mlr3 book <https://mlr3book.mlr-org.com/chapters/chapter2/data_and_basic_modeling.html#sec-learners>`_.
270
270
* It is also possible to pass learners that have been constructed from a pipeline with the `mlr3pipelines <https://mlr3pipelines.mlr-org.com/>`_
271
271
package.
272
272
* The models `DoubleML::DoubleMLIRM <https://docs.doubleml.org/r/stable/reference/DoubleMLIRM.html>`_ and
@@ -424,7 +424,7 @@ Users can also specify learners that have been constructed from a pipeline using
424
424
package. In general, pipelines can be used to perform data preprocessing, feature selection, combine learners and even
425
425
to perform hyperparameter tuning. In the following, we provide two examples on how to construct a single learner and how
426
426
to stack different learners via a pipeline. For a more detailed introduction to `mlr3pipelines <https://mlr3pipelines.mlr-org.com/>`_,
427
-
we refer to the `Pipelines Chapter in the mlr3book <https://mlr3book.mlr-org.com/pipelines.html>`_. Moreover, a
427
+
we refer to the `Pipelines Chapter in the mlr3book <https://mlr3book.mlr-org.com/chapters/chapter7/sequential_pipelines.html>`_. Moreover, a
428
428
notebook on how to use `mlr3pipelines <https://mlr3pipelines.mlr-org.com/>`_ in combination with :ref:`DoubleML <doubleml_package>`
429
429
is available in the example gallery.
430
430
@@ -482,7 +482,7 @@ Hyperparameter tuning
482
482
Parameter tuning of learners for the nuisance functions of :ref:`DoubleML <doubleml_package>` models can be done via the ``tune()`` method.
483
483
The ``tune()`` method passes various options and parameters to the tuning interface provided by the
484
484
`mlr3tuning <https://mlr3tuning.mlr-org.com/>`_ package. The `mlr3 book <https://mlr3book.mlr-org.com/>`_ provides a
485
-
`step-by-step introduction to parameter tuning <https://mlr3book.mlr-org.com/optimization.html>`_.
485
+
`step-by-step introduction to parameter tuning <https://mlr3book.mlr-org.com/chapters/chapter4/hyperparameter_optimization.html>`_.
486
486
487
487
To illustrate the parameter tuning, we generate data from a sparse partially linear regression model.
488
488
@@ -516,7 +516,7 @@ The entries in the list specify options during parameter tuning with `mlr3tuning
516
516
Alternatively, ``algorithm`` can be a ``character()`` that is used as an argument in the wrapper
0 commit comments