FloatDistribution¶
- class FloatDistribution(low: float, high: float, step: Optional[float] = None, log: bool = False)[source]¶
Bases:
etna.distributions.distributions.BaseDistribution
Float-based distribution.
Look at
suggest_float()
to find more about the meaning of parameters.- low¶
The lower bound.
- Type
float
- high¶
The upper bound.
- Type
float
- step¶
The space between possible values.
- Type
Optional[float]
- log¶
The flag of using log domain.
- Type
bool
- Inherited-members
- Parameters
low (float) –
high (float) –
step (Optional[float]) –
log (bool) –
- Return type
None
Attributes