public interface ModelDescriptor
Modifier and Type | Method and Description |
---|---|
java.lang.String |
algoFullName() |
java.lang.String |
algoName() |
boolean |
balanceClasses() |
java.lang.String[] |
columnNames() |
double |
defaultThreshold()
Default threshold for assigning class labels to the target class.
|
java.lang.String[] |
features() |
java.lang.String |
foldColumn() |
ModelCategory |
getModelCategory()
Model's category.
|
java.lang.String[][] |
getOrigDomains() |
java.lang.String[] |
getOrigNames() |
boolean |
isSupervised() |
double[] |
modelClassDist() |
int |
nclasses() |
int |
nfeatures() |
java.lang.String |
offsetColumn() |
double[] |
priorClassDist() |
java.lang.String |
projectVersion()
E.g.
|
java.lang.String[][] |
scoringDomains()
Domains of categorical features.
|
java.lang.String |
timestamp() |
java.lang.String |
treatmentColumn() |
java.lang.String |
uuid() |
java.lang.String |
weightsColumn() |
java.lang.String[][] scoringDomains()
String
representing the complete domain of each feature. Null if the feature is not categorical.java.lang.String projectVersion()
String
representing version of H2O Open Source Machine Learning platform project.java.lang.String algoName()
java.lang.String algoFullName()
java.lang.String offsetColumn()
String
with the name of the offset column used. Null if there was no offset column used during training.java.lang.String weightsColumn()
String
with the name of the weights column used. Null if there were no weights applied to the dataset.java.lang.String foldColumn()
String
with the name of the fold column used. Null of there was no folding by using a fold column as a key done.java.lang.String treatmentColumn()
String
with the name of the treatment column used. Null of there was no treatment used during training.ModelCategory getModelCategory()
ModelCategory
values. Never null.boolean isSupervised()
int nfeatures()
java.lang.String[] features()
String
representing the names of the features used for model training.int nclasses()
java.lang.String[] columnNames()
String
representing the column names in the model. The very last one is the response column name,
if the model has a response column.boolean balanceClasses()
double defaultThreshold()
double[] priorClassDist()
double[] modelClassDist()
java.lang.String uuid()
java.lang.String timestamp()
java.lang.String[] getOrigNames()
java.lang.String[][] getOrigDomains()