Last active
August 25, 2022 15:11
-
-
Save elowy01/da2d6eed4165970caf336092ae857df4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Multi-Label classification | |
Typically, a classification task involves predicting a single label. Alternately, | |
it might involve predicting the likelihood across two or more class labels. | |
In these cases, the classes are mutually exclusive, meaning the classification | |
task assumes that the input belongs to one class only. | |
Some classification tasks require predicting more than one class label. | |
This means that class labels or class membership are not mutually exclusive. | |
These tasks are referred to as multiple label classification, or multi-label classification for short. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment