Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的标签看起来像这样
label = [0, 1, 0, 0, 1, 0]
这意味着1, 4匹配的样本输入中存在类。
1, 4
没有充分的理由为此创建one-hot编码版本,如果您想保持输出标签大小完全相同,6在您的情况下,您不能one-hot对其进行编码版本。
one-hot
6
在哪里multi-label classification做,你不能(更恰当地不应该)softmax用作激活。Softmax适用于只有一个输出可以是真值的情况。因此,在您的情况下,最好使用sigmoid cross-entropy.
multi-label classification
softmax
Softmax
sigmoid cross-entropy