public class ModelMetricsBaseV3 extends SchemaV3
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
customMetricName
Name of custom metric
|
double |
customMetricValue
Value of custom metric
|
java.lang.String |
description
Optional description for this scoring run (to note out-of-bag, sampled data, etc.)
|
FrameKeyV3 |
frame
The frame used for this scoring run.
|
long |
frameChecksum
The checksum for the frame used for this scoring run.
|
ModelKeyV3 |
model
The model used for this scoring run.
|
ModelCategory |
modelCategory
The category (e.g., Clustering) for the model used for this scoring run.
|
long |
modelChecksum
The checksum for the model used for this scoring run.
|
double |
mse
The Mean Squared Error of the prediction for this scoring run.
|
long |
nobs
Number of observations.
|
FrameV3 |
predictions
Predictions Frame.
|
double |
rmse
The Root Mean Squared Error of the prediction for this scoring run.
|
long |
scoringTime
The time in mS since the epoch for the start of this scoring run.
|
| Constructor and Description |
|---|
ModelMetricsBaseV3()
Public constructor
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Return the contents of this object as a JSON String.
|
public ModelKeyV3 model
@SerializedName(value="model_checksum") public long modelChecksum
public FrameKeyV3 frame
@SerializedName(value="frame_checksum") public long frameChecksum
public java.lang.String description
@SerializedName(value="model_category") public ModelCategory modelCategory
@SerializedName(value="scoring_time") public long scoringTime
public FrameV3 predictions
@SerializedName(value="MSE") public double mse
@SerializedName(value="RMSE") public double rmse
public long nobs
@SerializedName(value="custom_metric_name") public java.lang.String customMetricName
@SerializedName(value="custom_metric_value") public double customMetricValue