davanstrien / IIIF-ML-experiments

1 stars 1 forks source link

Review of existing datasets #6

Open davanstrien opened 3 years ago

davanstrien commented 3 years ago

https://paperswithcode.com/datasets?mod=images&task=face-recognition

davanstrien commented 3 years ago

Some notes on COCO:

A subset of labels which sit under 'person','animal', 'vehicle':

subset = [cat['name'] for cat in cats if cat['supercategory'] in ['person','animal', 'vehicle']]
[u'person',
  u'bicycle',
  u'car',
  u'motorcycle',
  u'airplane',
  u'bus',
  u'train',
  u'truck',
  u'boat',
  u'bird',
  u'cat',
  u'dog',
  u'horse',
  u'sheep',
  u'cow',
  u'elephant',
  u'bear',
  u'zebra',
  u'giraffe'],