water.bindings.pojos.ModelSynopsisV3 Maven / Gradle / Ivy
package water.bindings.pojos;
import com.google.gson.Gson;
public class ModelSynopsisV3 extends ModelSchemaBase {
/* INHERITED: Model key
* public ModelKeyV3 model_id;
*/
/* INHERITED: The algo name for this Model.
* public String algo;
*/
/* INHERITED: The pretty algo name for this Model (e.g., Generalized Linear Model, rather than GLM).
* public String algo_full_name;
*/
/* INHERITED: The response column name for this Model (if applicable). Is null otherwise.
* public String response_column_name;
*/
/* INHERITED: The Model's training frame key
* public FrameKeyV3 data_frame;
*/
/* INHERITED: Timestamp for when this model was completed
* public long timestamp;
*/
/** Return the contents of this object as a JSON String. */
@Override
public String toString() {
return new Gson().toJson(this);
}
}