Created
May 17, 2021 02:32
-
-
Save anujonthemove/d6d84be473e27057f8d95b89bac50cf9 to your computer and use it in GitHub Desktop.
Pascal labels in csv along with object id for TensorFlow 1.15 Object Detection API models.
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
'aeroplane' | 1 | |
---|---|---|
'bicycle' | 2 | |
'bird' | 3 | |
'boat' | 4 | |
'bottle' | 5 | |
'bus' | 6 | |
'car' | 7 | |
'cat' | 8 | |
'chair' | 9 | |
'cow' | 10 | |
'diningtable' | 11 | |
'dog' | 12 | |
'horse' | 13 | |
'motorbike' | 14 | |
'person' | 15 | |
'pottedplant' | 16 | |
'sheep' | 17 | |
'sofa' | 18 | |
'train' | 19 | |
'tvmonitor' | 20 |
Class label 0 by default is for background class I believe.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey man, should I keep the class label as 0 if there is no object in the grid cell?
Thank you