Skip to content

Commit 1abd1f9

Browse files
authored
doc(smac): Update link for get_smac_object_callback (#1610)
* doc(smac): Update link for `get_smac_object_callback` * doc(links): Update more smac links
1 parent 40f1111 commit 1abd1f9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

autosklearn/estimators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,12 +276,12 @@ def __init__(
276276
277277
smac_scenario_args : dict, optional (None)
278278
Additional arguments inserted into the scenario of SMAC. See the
279-
`SMAC documentation <https://automl.github.io/SMAC3/main/api/smac.scenario.scenario.html#module-smac.scenario.scenario>`_
279+
`SMAC documentation <https://automl.github.io/SMAC3/main/api/smac.scenario.html#smac.scenario.Scenario>`_
280280
for a list of available arguments.
281281
282282
get_smac_object_callback : callable
283283
Callback function to create an object of class
284-
`smac.optimizer.smbo.SMBO <https://automl.github.io/SMAC3/main/api/smac.optimizer.smbo.html>`_.
284+
`smac.facade.AbstractFacade <https://automl.github.io/SMAC3/main/api/smac.facade.html>`_.
285285
The function must accept the arguments ``scenario_dict``,
286286
``instances``, ``num_params``, ``runhistory``, ``seed`` and ``ta``.
287287
This is an advanced feature. Use only if you are familiar with

autosklearn/experimental/askl2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def __init__(
264264
265265
smac_scenario_args : dict, optional (None)
266266
Additional arguments inserted into the scenario of SMAC. See the
267-
`SMAC documentation <https://automl.github.io/SMAC3/main/api/smac.scenario.scenario.html#module-smac.scenario.scenario>`_
267+
`SMAC documentation <https://automl.github.io/SMAC3/main/api/smac.scenario.html#smac.scenario.Scenario>`_
268268
for a list of available arguments.
269269
270270
logging_config : dict, optional (None)

examples/40_advanced/example_multi_objective.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
competing metrics: `precision` and `recall` (read more on this tradeoff
99
in the `scikit-learn docs <https://scikit-learn.org/stable/auto_examples/model_selection/plot_precision_recall.html>`_.
1010
11-
Auto-sklearn uses `SMAC3's implementation of ParEGO <https://automl.github.io/SMAC3/main/details/multi_objective.html>`_.
11+
Auto-sklearn uses `SMAC3's implementation of ParEGO <https://automl.github.io/SMAC3/main/examples/3_multi_objective/2_parego.html#parego>`_.
1212
Multi-objective ensembling and proper access to the full Pareto set will be added in the near
1313
future.
1414
"""

0 commit comments

Comments
 (0)