From 2e06eb0e7b51a037a9231f3940763908574aa4f1 Mon Sep 17 00:00:00 2001 From: viotemp1 Date: Wed, 26 Mar 2025 08:46:05 +0200 Subject: [PATCH] update docs for optuna sampler --- docs/advanced-hyperopt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-hyperopt.md b/docs/advanced-hyperopt.md index a8458f90b..e12d700f3 100644 --- a/docs/advanced-hyperopt.md +++ b/docs/advanced-hyperopt.md @@ -173,7 +173,7 @@ class MyAwesomeStrategy(IStrategy): Possible values are either one of "NSGAIISampler", "TPESampler", "GPSampler", "CmaEsSampler", "NSGAIIISampler", "QMCSampler" (Details can be found in the [optuna-samplers documentation](https://optuna.readthedocs.io/en/stable/reference/samplers/index.html)), or "an instance of a class that inherits from `optuna.samplers.BaseSampler`". -Some research will be necessary to find additional Regressors. +Some research will be necessary to find additional Samplers (from optunahub) for example. ```