Could anyone kindly explain to me why do i have to include this 'none': (0, 'Background') in the array named VOC_LABLES . I assume that if i would like to detect facial expression like neural or happy, i should only label these two classes. What is the rational of keeping this 'none': (0, 'Background')?
Could anyone kindly explain to me why do i have to include this 'none': (0, 'Background') in the array named VOC_LABLES . I assume that if i would like to detect facial expression like neural or happy, i should only label these two classes. What is the rational of keeping this 'none': (0, 'Background')?
VOC_LABELS = { 'none': (0, 'Background'), 'neural': (1, 'Face'), 'happy': (2, 'Face'), }