Class: LogisticRegressionTrainingSummary

eclairjs/ml/classification. LogisticRegressionTrainingSummary

Abstraction for multinomial Logistic Regression Training results. Currently, the training summary ignores the training weights except for the objective trace.

Constructor

new LogisticRegressionTrainingSummary()

Source:

Extends

Methods

featuresCol() → {string}

Field in "predictions" which gives the features of each instance as a vector.
Inherited From:
Source:
Returns:
Type
string

labelCol() → {string}

Field in "predictions" which gives the true label of each instance.
Inherited From:
Source:
Returns:
Type
string

objectiveHistory() → {Array.<float>}

objective function (scaled loss + regularization) at each iteration.
Source:
Returns:
Type
Array.<float>

predictions() → {module:eclairjs/sql.DataFrame}

Dataframe outputted by the model's `transform` method.
Inherited From:
Source:
Returns:
Type
module:eclairjs/sql.DataFrame

probabilityCol() → {string}

Field in "predictions" which gives the calibrated probability of each instance as a vector.
Inherited From:
Source:
Returns:
Type
string

totalIterations() → {integer}

Number of training iterations until termination
Source:
Returns:
Type
integer