Multi-label classification using Multi Task / Multi Model #1450
-
I'm trying to create a model which has N categorical labels (multi-label) and each label has M classes (multi-class), the normal Structured Data Classification works with multi-class and multi-label right? The multi-class works with a specific number or inferring the number of classes, but multi-label its not clear how it works. Can I use Multi Task / Multi Model to achieve multi-label classification? I saw the nodes, blocks and the example, but I didn't get any hints besides getting the Sigmoid Cross Entropy With Logits and putting it on the search space, which I'm not sure where and if it is possible aside from the nodes / blocks from Auto Keras. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The multi label feature is not like your use case. It is for case like a dataset with M classes and an instance may belong to multiple classes out of M classes. |
Beta Was this translation helpful? Give feedback.
The multi label feature is not like your use case. It is for case like a dataset with M classes and an instance may belong to multiple classes out of M classes.