📜  获取标签中每个分类值(0 和 1)的计数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:15.227000             🧑  作者: Mango

代码示例1
# Get the count of each label (0 and 1) in labels
print('0:', labels[labels==1].shape[0], '1:',labels[labels==0].shape[0])