Closed
Description
For some of the learners e.g. SdcaRegression ML.NET public API exposes parameter weights
However, the advanced Options
for SdcaRegressionTrainer
do not have a field for 'WeightColumn'. Also, I believe the algo itself does not use weights (need to verify)
We need to scrub our public API for such spurious uses of weights
parameter.
EDIT :
- Based on investigations (see below), we see that the
SdcaRegressionTrainer
does use the weights column. So the proper fix would be to ensure that the weight column passed in the constructor gets used by the trainer. - For the example above, we need to add
WeightColumn
in the advancedOptions
forSdcaRegressionTrainer
and verify it gets used by the SDCA trainer.