public class FeatureInfo extends Object implements Serializable
Information about a feature.
Modifier and Type | Class and Description |
---|---|
static class |
FeatureInfo.Builder
Helper class to build feature info.
|
Modifier and Type | Method and Description |
---|---|
int |
getFeature()
Get the feature number.
|
double |
getItemAverage()
Get the item average value of this feature.
|
int |
getIterCount()
Get the iteration count for the feature.
|
double |
getLastDeltaRMSE()
Get the last delta RMSE of the feature.
|
double |
getLastRMSE()
Get the last training RMSE of the feature.
|
double |
getSingularValue()
Get the singular value of this feature.
|
DoubleList |
getTrainingErrors()
Get the training error for each iteration.
|
double |
getUserAverage()
Get the user average value of this feature.
|
public int getFeature()
Get the feature number.
public int getIterCount()
Get the iteration count for the feature.
public DoubleList getTrainingErrors()
Get the training error for each iteration.
public double getLastRMSE()
Get the last training RMSE of the feature.
public double getLastDeltaRMSE()
Get the last delta RMSE of the feature.
public double getUserAverage()
Get the user average value of this feature.
public double getItemAverage()
Get the item average value of this feature.
public double getSingularValue()
Get the singular value of this feature.