Package ai.djl
Interface Application.Tabular
- Enclosing class:
- Application
public static interface Application.Tabular
The common set of applications for tabular data.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ApplicationAny tabular application, including those inApplication.Tabular.static final ApplicationAn application that takes a feature vector (table row) and predicts a numerical feature based on it.static final ApplicationAn application that takes a feature vector (table row) and predicts a categorical feature based on it.
-
Field Details
-
ANY
Any tabular application, including those inApplication.Tabular. -
LINEAR_REGRESSION
An application that takes a feature vector (table row) and predicts a numerical feature based on it. -
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.
-