get_estimator_class#
- infomeasure.get_estimator_class(measure=None, approach=None) EstimatorType[source]#
Get estimator class based on the estimator name and approach.
This function returns the estimator class based on the measure and approach provided. If you want an instance of an estimator, initialized with data and parameters, use the functional interface
estimator().- Parameters:
- Returns:
classThe estimator class.
- Raises:
ValueErrorIf the measure is not recognized.
ValueErrorIf the approach is not recognized.