MultiTargetRegressor¶
Multi-target regressor.
Methods¶
learn_one
Fits to a set of features x and a real-valued target y.
Parameters
- x —
dict[FeatureName, typing.Any] - y —
dict[FeatureName, RegTarget] - kwargs —
typing.Any
predict_one
Predict the outputs of features x.
Parameters
- x —
dict[FeatureName, typing.Any]
Returns
dict[FeatureName, RegTarget]: The predictions.