blob: c553d372af1472761d8344450b3d580047734363 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
= Multiclass Classification
In machine learning, multiclass or multinomial classification is the problem of classifying instances into one of three or more classes.
Currently, Apache Ignite ML support the most popular method of Multiclass classification known as One-vs-Rest.
One-vs-Rest strategy involves training a single classifier per class, with the samples of that class as positive samples and all other samples as negatives.
Internally it uses one dataset but with the different changed labels for each trained classifier. If you have N classes, the N classifiers will be trained to become a MultiClassModel.
MultiClassModel uses soft-margin technique to predict the real label. It means that the MultiClassModel returns the label of the class which is better suited for the predicted vector.
== Example
To see how One-vs-Rest trainer parametrized by binary SVM classifier can be used in practice, try this https://github.com/apache/ignite/blob/master/examples/src/main/java/org/apache/ignite/examples/ml/multiclass/OneVsRestClassificationExample.java[example] that is available on GitHub and delivered with every Apache Ignite distribution.
The preprocessed Glass dataset is from the https://archive.ics.uci.edu/ml/datasets/Glass+Identification[UCI Machine Learning Repository].
There are 3 classes with labels: 1 (building_windows_float_processed), 3 (vehicle_windows_float_processed), 7 (headlamps) and feature names: 'Na-Sodium', 'Mg-Magnesium', 'Al-Aluminum', 'Ba-Barium', 'Fe-Iron'.
[source, java]
----
OneVsRestTrainer<SVMLinearClassificationModel> trainer
= new OneVsRestTrainer<>(new SVMLinearClassificationTrainer()
.withAmountOfIterations(20)
.withAmountOfLocIterations(50)
.withLambda(0.2)
.withSeed(1234L)
);
MultiClassModel<SVMLinearClassificationModel> mdl = trainer.fit(
ignite,
dataCache,
new DummyVectorizer<Integer>().labeled(0)
);
double prediction = mdl.predict(inputVector);
----