Performs classification on the given data point. @param data the data point to classify @return the results of the classification. @throws UntrainedModelException if the method is called before the model has been trained @throws ModelMismatchException if the given data point is incompatible with the
(DataPoint data)
| 22 | * @throws ModelMismatchException if the given data point is incompatible with the model |
| 23 | */ |
| 24 | public CategoricalResults classify(DataPoint data); |
| 25 | /** |
| 26 | * Trains the classifier and constructs a model for classification using the |
| 27 | * given data set. If the training method knows how, it will used the |
no outgoing calls