Explore Java classifiers that predict binary decisions and multiclass labels from structured data.
Binary classification
Sonar Rock or Mine Classification
Classify reflected sonar measurements as rock or mine with a binary neural network.
View walkthrough
Multiclass classification
Iris Flower Classification
Predict one of three Iris species from four measurements with a Softmax output layer.
View walkthrough
Use classification when the target is a category, such as spam or not spam, fraud or legitimate, or one of several flower species.
Binary models usually use one Sigmoid output, while multiclass models use one Softmax probability for each class.