Package ai.djl
Interface Application.Tabular
-
- Enclosing class:
- Application
public static interface Application.TabularThe common set of applications for tabular data.
-
-
Field Summary
Fields Modifier and Type Field Description static ApplicationANYAny tabular application, including those inApplication.Tabular.static ApplicationLINEAR_REGRESSIONAn application that takes a feature vector (table row) and predicts a numerical feature based on it.static ApplicationSOFTMAX_REGRESSIONAn application that takes a feature vector (table row) and predicts a categorical feature based on it.
-
-
-
Field Detail
-
ANY
static final Application ANY
Any tabular application, including those inApplication.Tabular.
-
LINEAR_REGRESSION
static final Application LINEAR_REGRESSION
An application that takes a feature vector (table row) and predicts a numerical feature based on it.
-
SOFTMAX_REGRESSION
static final Application SOFTMAX_REGRESSION
An application that takes a feature vector (table row) and predicts a categorical feature based on it.There is no typical input, but the typical output is
Classifications.
-
-