water.bindings.pojos.ConfusionMatrixBase Maven / Gradle / Ivy
package water.bindings.pojos;
import com.google.gson.Gson;
public class ConfusionMatrixBase extends Schema {
/** Annotated confusion matrix */
public TwoDimTableV3 table;
/** Return the contents of this object as a JSON String. */
@Override
public String toString() {
return new Gson().toJson(this);
}
}