Regressor¶
A regressor.
Methods¶
learn_one
Fits to a set of features x and a real-valued target y.
Parameters
- x — 'dict[base.typing.FeatureName, Any]'
- y — 'base.typing.RegTarget'
predict_one
Predict the output of features x.
Parameters
- x — 'dict[base.typing.FeatureName, Any]'
Returns
base.typing.RegTarget: The prediction.