lenskit.tuning.spec.SearchParam =============================== .. py:class:: lenskit.tuning.spec.SearchParam Bases: :py:obj:`pydantic.BaseModel` .. py:attribute:: type :type: Literal['int', 'float'] The type of this parameter. .. py:attribute:: min :type: int | float Minimum parameter value. .. py:attribute:: max :type: int | float Maximum parameter value. .. py:attribute:: scale :type: Literal['uniform', 'log'] :value: 'uniform' Search scale for parameter values. .. py:attribute:: base :type: float | None :value: None Base for logarithmic search scales.