L i%ddlmZddlZddlmZddlmZddlmZddlmZddl Z ddl Z ddl m Z ddlmZdd lmZerdd lmZd ZGd d ej(ZdZ ddZy)) annotationsN)Callable)Sequence)Any) TYPE_CHECKING)BaseDistribution) FrozenTrial) TrialState)StudyaThe parameter `{param_name}` in Trial#{trial_number} is sampled independently using `{independent_sampler_name}` instead of `{sampler_name}`, potentially degrading the optimization performance. This fallback happend because {fallback_reason}. You can suppress this warning by setting `warn_independent_sampling` to `False` in the constructor of `{sampler_name}` if this independent sampling is intended behavior.ceZdZdZd dZej d dZej d dZej ddZ ddZ ddZ ddZ dd Z y ) BaseSamplera Base class for samplers. Optuna combines two types of sampling strategies, which are called *relative sampling* and *independent sampling*. *The relative sampling* determines values of multiple parameters simultaneously so that sampling algorithms can use relationship between parameters (e.g., correlation). Target parameters of the relative sampling are described in a relative search space, which is determined by :func:`~optuna.samplers.BaseSampler.infer_relative_search_space`. *The independent sampling* determines a value of a single parameter without considering any relationship between parameters. Target parameters of the independent sampling are the parameters not described in the relative search space. More specifically, parameters are sampled by the following procedure. At the beginning of a trial, :meth:`~optuna.samplers.BaseSampler.infer_relative_search_space` is called to determine the relative search space for the trial. During the execution of the objective function, :meth:`~optuna.samplers.BaseSampler.sample_relative` is called only once when sampling the parameters belonging to the relative search space for the first time. :meth:`~optuna.samplers.BaseSampler.sample_independent` is used to sample parameters that don't belong to the relative search space. The following figure depicts the lifetime of a trial and how the above three methods are called in the trial. .. image:: ../../../../image/sampling-sequence.png | c.|jjS)N) __class____name__selfs [/mnt/ssd/data/python-lab/Trading/venv/lib/python3.12/site-packages/optuna/samplers/_base.py__str__zBaseSampler.__str__@s~~&&&ct)aInfer the search space that will be used by relative sampling in the target trial. This method is called right before :func:`~optuna.samplers.BaseSampler.sample_relative` method, and the search space returned by this method is passed to it. The parameters not contained in the search space will be sampled by using :func:`~optuna.samplers.BaseSampler.sample_independent` method. Args: study: Target study object. trial: Target trial object. Take a copy before modifying this object. Returns: A dictionary containing the parameter names and parameter's distributions. .. seealso:: Please refer to :func:`~optuna.search_space.intersection_search_space` as an implementation of :func:`~optuna.samplers.BaseSampler.infer_relative_search_space`. NotImplementedErrorrstudytrials rinfer_relative_search_spacez'BaseSampler.infer_relative_search_spaceCs 4"!rct)aSample parameters in a given search space. This method is called once at the beginning of each trial, i.e., right before the evaluation of the objective function. This method is suitable for sampling algorithms that use relationship between parameters such as Gaussian Process and CMA-ES. .. note:: The failed trials are ignored by any build-in samplers when they sample new parameters. Thus, failed trials are regarded as deleted in the samplers' perspective. Args: study: Target study object. trial: Target trial object. Take a copy before modifying this object. search_space: The search space returned by :func:`~optuna.samplers.BaseSampler.infer_relative_search_space`. Returns: A dictionary containing the parameter names and the values. r)rrr search_spaces rsample_relativezBaseSampler.sample_relative_s <"!rct)a Sample a parameter for a given distribution. This method is called only for the parameters not contained in the search space returned by :func:`~optuna.samplers.BaseSampler.sample_relative` method. This method is suitable for sampling algorithms that do not use relationship between parameters such as random sampling and TPE. .. note:: The failed trials are ignored by any build-in samplers when they sample new parameters. Thus, failed trials are regarded as deleted in the samplers' perspective. Args: study: Target study object. trial: Target trial object. Take a copy before modifying this object. param_name: Name of the sampled parameter. param_distribution: Distribution object that specifies a prior and/or scale of the sampling algorithm. Returns: A parameter value. r)rrr param_nameparam_distributions rsample_independentzBaseSampler.sample_independents H"!rcy)aTrial pre-processing. This method is called before the objective function is called and right after the trial is instantiated. More precisely, this method is called during trial initialization, just before the :func:`~optuna.samplers.BaseSampler.infer_relative_search_space` call. In other words, it is responsible for pre-processing that should be done before inferring the search space. .. note:: Added in v3.3.0 as an experimental feature. The interface may change in newer versions without prior notice. See https://github.com/optuna/optuna/releases/tag/v3.3.0. Args: study: Target study object. trial: Target trial object. Nrs r before_trialzBaseSampler.before_trials( rcy)aTrial post-processing. This method is called after the objective function returns and right before the trial is finished and its state is stored. .. note:: Added in v2.4.0 as an experimental feature. The interface may change in newer versions without prior notice. See https://github.com/optuna/optuna/releases/tag/v2.4.0. Args: study: Target study object. trial: Target trial object. Take a copy before modifying this object. state: Resulting trial state. values: Resulting trial values. Guaranteed to not be :obj:`None` if trial succeeded. Nr%)rrrstatevaluess r after_trialzBaseSampler.after_trials: rcy)aReseed sampler's random number generator. This method is called by the :class:`~optuna.study.Study` instance if trials are executed in parallel with the option ``n_jobs>1``. In that case, the sampler instance will be replicated including the state of the random number generator, and they may suggest the same values. To prevent this issue, this method assigns a different seed to each random number generator. Nr%rs r reseed_rngzBaseSampler.reseed_rngs rcj|jr#td|jjdy)Nz=If the study is being used for multi-objective optimization, z cannot be used.)_is_multi_objective ValueErrorrr)rrs r_raise_error_if_multi_objectivez+BaseSampler._raise_error_if_multi_objectives;  $ $ &O>>**++;=  'rN)returnstr)rr rr r1dict[str, BaseDistribution])rr rr rr3r1zdict[str, Any]) rr rr r!r2r"rr1r)rr rr r1None) rr rr r(r r)zSequence[float] | Noner1r4)r1r4)rr r1r4)r __module__ __qualname____doc__rabcabstractmethodrrr#r&r*r,r0r%rrr r s@' ""#." $""6 ""#.">Y" ""> #"#"#" #" - #" #"#"J ,     '    >  rr constraintscf|tjtjfvryd} ||}tjtj |r t dt|ttfs,tjdt|jdt|}|t|tsJ|jj|j t"|y#|t|tsJ|jj|j t"|wxYw)Nz Constraint values cannot be NaN.z3Constraints should be a sequence of floats but got .)r COMPLETEPRUNEDnpanyisnanr/ isinstancetuplelistwarningswarntyper_storageset_trial_system_attr _trial_id_CONSTRAINTS_KEY)constraints_funcrrr(r:cons r _process_constraints_after_trialrNs  Z((**;*;<<K u% 66"((3- ?@ @#t}- MMEd3iFXFXEYYZ[ Cj "je&DDD ,, OO   "je&DDD ,, OO   s BC//AD0) rLz(Callable[[FrozenTrial], Sequence[float]]rr rr r(r r1r4) __future__rr8collections.abcrrtypingrrrEnumpyr?optuna.distributionsr optuna.trialr r optuna.studyr &_INDEPENDENT_SAMPLING_WARNING_TEMPLATEABCr rKrNr%rrrXs" $$ 1$#"6'L#''L^! >         r