
    -ji%                        S SK Jr  S SKrS SKJr  S SKJr  S SKJr  S SKJr  S SK	r
S SKJr  S SKJr  S S	KJr  S S
KJr  \(       a  S SKJr  Sr " S S\R*                  5      rSr          SS jrg)    )annotationsN)Callable)Sequence)Any)TYPE_CHECKING)optuna_warn)BaseDistribution)FrozenTrial)
TrialState)Studya  The 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.c                     \ rS rSrSrSS jr\R                        SS j5       r\R                          SS j5       r	\R                            SS j5       r
SS jr          SS jrSS	 jrSS
 jrSrg)BaseSampler   a  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                .    U R                   R                  $ )N)	__class____name__selfs    O/home/james-whalen/.local/lib/python3.13/site-packages/optuna/samplers/_base.py__str__BaseSampler.__str__@   s    ~~&&&    c                    [         e)a  Infer 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`.
NotImplementedErrorr   studytrials      r   infer_relative_search_space'BaseSampler.infer_relative_search_spaceC   s
    4 "!r   c                    [         e)a<  Sample 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   )r   r   r   search_spaces       r   sample_relativeBaseSampler.sample_relative_   s
    < "!r   c                    [         e)ab  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   )r   r   r   
param_nameparam_distributions        r   sample_independentBaseSampler.sample_independent   s    H "!r   c                    g)a  Trial 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.
N r   s      r   before_trialBaseSampler.before_trial   s    ( 	r   c                    g)ab  Trial 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+   )r   r   r   statevaluess        r   after_trialBaseSampler.after_trial   s    : 	r   c                    g)a  Reseed 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+   r   s    r   
reseed_rngBaseSampler.reseed_rng   s     	r   c                t    UR                  5       (       a#  [        SU R                  R                   S35      eg )Nz=If the study is being used for multi-objective optimization, z cannot be used.)_is_multi_objective
ValueErrorr   r   )r   r   s     r   _raise_error_if_multi_objective+BaseSampler._raise_error_if_multi_objective   s>    $$&&O>>**++;=  'r   r+   N)returnstr)r   r   r   r
   r;   dict[str, BaseDistribution])r   r   r   r
   r"   r=   r;   zdict[str, Any])
r   r   r   r
   r&   r<   r'   r	   r;   r   )r   r   r   r
   r;   None)
r   r   r   r
   r/   r   r0   zSequence[float] | Noner;   r>   )r;   r>   )r   r   r;   r>   )r   
__module____qualname____firstlineno____doc__r   abcabstractmethodr   r#   r(   r,   r1   r4   r9   __static_attributes__r+   r   r   r   r      s   @' 	""#."	$" "6 	""#.">Y"	" "> 	#"#" #" 	#"
 -#" 
#" #"J,  	
 ' 
>
r   r   constraintsc                   U[         R                  [         R                  4;  a  g S n U " U5      n[        R                  " [        R
                  " U5      5      (       a  [        S5      e[        U[        [        45      (       d"  [        S[        U5      R                   S35        [        U5      nUb  [        U[        5      (       d   eUR                  R                  UR                  [         U5        g ! Ub  [        U[        5      (       d   eUR                  R                  UR                  [         U5        f = f)Nz Constraint values cannot be NaN.z3Constraints should be a sequence of floats but got .)r   COMPLETEPRUNEDnpanyisnanr8   
isinstancetuplelistr   typer   _storageset_trial_system_attr	_trial_id_CONSTRAINTS_KEY)constraints_funcr   r   r/   rF   cons         r    _process_constraints_after_trialrX      s    Z((**;*;<<K
u%66"((3-  ?@@#t}--Ed3iFXFXEYYZ[ Cj"je&D&DDD,,OO	
 "je&D&DDD,,OO	
s   B
C9 9AE )
rV   z(Callable[[FrozenTrial], Sequence[float]]r   r   r   r
   r/   r   r;   r>   )
__future__r   rC   collections.abcr   r   typingr   r   numpyrK   optuna._warningsr   optuna.distributionsr	   optuna.trialr
   r   optuna.studyr   &_INDEPENDENT_SAMPLING_WARNING_TEMPLATEABCr   rU   rX   r+   r   r   <module>rc      s    " 
 $ $     ( 1 $ # "6 'L#'' L^ ! 
>

 
 	

 

r   