Parsing COCO


In [1]:
import json

In [4]:
loc = "/Users/adammenges/Dropbox (Lobe)/Datasets/COCO/Offical/Captions/captions_train2014.json"
loc_ins = "/Users/adammenges/Dropbox (Lobe)/Datasets/COCO/Offical/Instances/instances_train2014.json"

In [5]:
with open(loc) as data_file:    
    caps = json.load(data_file)
    
with open(loc_ins) as data_file:    
    ins = json.load(data_file)

In [6]:
caps.keys()


Out[6]:
dict_keys(['info', 'images', 'licenses', 'annotations'])

In [7]:
caps['images']


Out[7]:
[{'coco_url': 'http://mscoco.org/images/57870',
  'date_captured': '2013-11-14 16:28:13',
  'file_name': 'COCO_train2014_000000057870.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3153/2970773875_164f0c0b83_z.jpg',
  'height': 480,
  'id': 57870,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/384029',
  'date_captured': '2013-11-14 16:29:45',
  'file_name': 'COCO_train2014_000000384029.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2422/3577229611_3a3235458a_z.jpg',
  'height': 429,
  'id': 384029,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/222016',
  'date_captured': '2013-11-14 16:37:59',
  'file_name': 'COCO_train2014_000000222016.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1431/1118526611_09172475e5_z.jpg',
  'height': 640,
  'id': 222016,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/520950',
  'date_captured': '2013-11-14 16:44:40',
  'file_name': 'COCO_train2014_000000520950.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7007/6413705793_1c391cd697_z.jpg',
  'height': 427,
  'id': 520950,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/69675',
  'date_captured': '2013-11-14 16:46:33',
  'file_name': 'COCO_train2014_000000069675.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7156/6415223357_5ef0955050_z.jpg',
  'height': 480,
  'id': 69675,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/547471',
  'date_captured': '2013-11-14 16:48:45',
  'file_name': 'COCO_train2014_000000547471.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6146/5976678628_8776fd68b0_z.jpg',
  'height': 640,
  'id': 547471,
  'license': 3,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/122688',
  'date_captured': '2013-11-14 16:52:26',
  'file_name': 'COCO_train2014_000000122688.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3249/2911640772_49daa557a0_z.jpg',
  'height': 640,
  'id': 122688,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/392136',
  'date_captured': '2013-11-14 16:54:17',
  'file_name': 'COCO_train2014_000000392136.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2231/2165411619_48f765e711_z.jpg',
  'height': 347,
  'id': 392136,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/398494',
  'date_captured': '2013-11-14 16:58:36',
  'file_name': 'COCO_train2014_000000398494.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3034/2702899336_e5957d911d_z.jpg',
  'height': 640,
  'id': 398494,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/90570',
  'date_captured': '2013-11-14 17:24:23',
  'file_name': 'COCO_train2014_000000090570.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8012/7478438612_33bb7f4d05_z.jpg',
  'height': 429,
  'id': 90570,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/504616',
  'date_captured': '2013-11-14 17:25:53',
  'file_name': 'COCO_train2014_000000504616.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3232/2865439282_b1bb926238_z.jpg',
  'height': 640,
  'id': 504616,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/161919',
  'date_captured': '2013-11-14 17:47:11',
  'file_name': 'COCO_train2014_000000161919.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7195/7112147055_26b8dcee9f_z.jpg',
  'height': 612,
  'id': 161919,
  'license': 1,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/457732',
  'date_captured': '2013-11-14 18:00:02',
  'file_name': 'COCO_train2014_000000457732.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7284/9606706453_d8b9137ec2_z.jpg',
  'height': 640,
  'id': 457732,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/44404',
  'date_captured': '2013-11-14 18:03:01',
  'file_name': 'COCO_train2014_000000044404.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5542/9326338939_6b9a44460c_z.jpg',
  'height': 480,
  'id': 44404,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/4428',
  'date_captured': '2013-11-14 18:14:26',
  'file_name': 'COCO_train2014_000000004428.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4088/4951350236_392f0f821d_z.jpg',
  'height': 640,
  'id': 4428,
  'license': 5,
  'width': 429},
 {'coco_url': 'http://mscoco.org/images/170558',
  'date_captured': '2013-11-14 18:28:04',
  'file_name': 'COCO_train2014_000000170558.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2217/2309291357_549d58c19a_z.jpg',
  'height': 640,
  'id': 170558,
  'license': 5,
  'width': 481},
 {'coco_url': 'http://mscoco.org/images/405613',
  'date_captured': '2013-11-14 18:36:04',
  'file_name': 'COCO_train2014_000000405613.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5229/5599536441_5ffb9c1dba_z.jpg',
  'height': 383,
  'id': 405613,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/283524',
  'date_captured': '2013-11-14 18:46:34',
  'file_name': 'COCO_train2014_000000283524.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8275/8698713784_1a7f1a51ef_z.jpg',
  'height': 480,
  'id': 283524,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/37015',
  'date_captured': '2013-11-14 18:47:26',
  'file_name': 'COCO_train2014_000000037015.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8124/8647260855_11247ab35a_z.jpg',
  'height': 480,
  'id': 37015,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/71631',
  'date_captured': '2013-11-14 18:51:03',
  'file_name': 'COCO_train2014_000000071631.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1291/1062672084_a10658e960_z.jpg',
  'height': 425,
  'id': 71631,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/491269',
  'date_captured': '2013-11-14 18:51:10',
  'file_name': 'COCO_train2014_000000491269.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1304/1062672028_ab4d86a656_z.jpg',
  'height': 425,
  'id': 491269,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/365363',
  'date_captured': '2013-11-14 19:00:26',
  'file_name': 'COCO_train2014_000000365363.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3424/3390111150_a7447728e3_z.jpg',
  'height': 500,
  'id': 365363,
  'license': 2,
  'width': 335},
 {'coco_url': 'http://mscoco.org/images/64460',
  'date_captured': '2013-11-14 19:09:19',
  'file_name': 'COCO_train2014_000000064460.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8250/8454125509_b608c77398_z.jpg',
  'height': 424,
  'id': 64460,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/581674',
  'date_captured': '2013-11-14 19:10:05',
  'file_name': 'COCO_train2014_000000581674.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8527/8454124021_48393547a6_z.jpg',
  'height': 424,
  'id': 581674,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/470072',
  'date_captured': '2013-11-14 19:27:08',
  'file_name': 'COCO_train2014_000000470072.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8087/8387551525_34e4e51cc3_z.jpg',
  'height': 424,
  'id': 470072,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/344806',
  'date_captured': '2013-11-14 19:36:25',
  'file_name': 'COCO_train2014_000000344806.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2080/2505925583_68ff8e24ae_z.jpg',
  'height': 426,
  'id': 344806,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/84427',
  'date_captured': '2013-11-14 19:36:55',
  'file_name': 'COCO_train2014_000000084427.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2155/1601082165_688aa0c2e7_z.jpg',
  'height': 427,
  'id': 84427,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/317237',
  'date_captured': '2013-11-14 20:22:14',
  'file_name': 'COCO_train2014_000000317237.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5331/9514032125_9430afb6a9_z.jpg',
  'height': 480,
  'id': 317237,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/409382',
  'date_captured': '2013-11-14 20:25:44',
  'file_name': 'COCO_train2014_000000409382.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2240/5697123651_31c1119887_z.jpg',
  'height': 612,
  'id': 409382,
  'license': 1,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/570608',
  'date_captured': '2013-11-14 20:42:32',
  'file_name': 'COCO_train2014_000000570608.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7397/9606373937_37d8ca9487_z.jpg',
  'height': 640,
  'id': 570608,
  'license': 5,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/469605',
  'date_captured': '2013-11-14 22:18:07',
  'file_name': 'COCO_train2014_000000469605.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4154/4832252750_36d4196573_z.jpg',
  'height': 427,
  'id': 469605,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/356702',
  'date_captured': '2013-11-14 22:21:57',
  'file_name': 'COCO_train2014_000000356702.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8035/8055162508_2142538386_z.jpg',
  'height': 480,
  'id': 356702,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/405207',
  'date_captured': '2013-11-14 22:24:22',
  'file_name': 'COCO_train2014_000000405207.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2150/2259915284_0fff851619_z.jpg',
  'height': 640,
  'id': 405207,
  'license': 6,
  'width': 417},
 {'coco_url': 'http://mscoco.org/images/472925',
  'date_captured': '2013-11-14 22:38:22',
  'file_name': 'COCO_train2014_000000472925.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7022/6825493903_43f199b9bf_z.jpg',
  'height': 480,
  'id': 472925,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/214704',
  'date_captured': '2013-11-14 22:56:17',
  'file_name': 'COCO_train2014_000000214704.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2667/4444559660_ef50d6d70e_z.jpg',
  'height': 424,
  'id': 214704,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/279108',
  'date_captured': '2013-11-14 22:56:55',
  'file_name': 'COCO_train2014_000000279108.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7018/6690957773_b94115bb5d_z.jpg',
  'height': 426,
  'id': 279108,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/438422',
  'date_captured': '2013-11-14 22:57:03',
  'file_name': 'COCO_train2014_000000438422.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7172/6690972609_c08d75a8bb_z.jpg',
  'height': 427,
  'id': 438422,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/257350',
  'date_captured': '2013-11-14 23:09:01',
  'file_name': 'COCO_train2014_000000257350.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/167/450867373_6867569304_z.jpg',
  'height': 375,
  'id': 257350,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/393493',
  'date_captured': '2013-11-14 23:26:20',
  'file_name': 'COCO_train2014_000000393493.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3243/2970519630_f88800a2cc_z.jpg',
  'height': 400,
  'id': 393493,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/62426',
  'date_captured': '2013-11-14 23:42:40',
  'file_name': 'COCO_train2014_000000062426.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2592/4057996751_473d2de7ae_z.jpg',
  'height': 640,
  'id': 62426,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/19380',
  'date_captured': '2013-11-14 23:42:43',
  'file_name': 'COCO_train2014_000000019380.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2676/4057997717_ac0b8138e3_z.jpg',
  'height': 640,
  'id': 19380,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/485894',
  'date_captured': '2013-11-14 23:45:46',
  'file_name': 'COCO_train2014_000000485894.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2598/3873592699_5d1d4021a7_z.jpg',
  'height': 427,
  'id': 485894,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/446014',
  'date_captured': '2013-11-14 23:47:25',
  'file_name': 'COCO_train2014_000000446014.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2632/3909222420_ede0208827_z.jpg',
  'height': 640,
  'id': 446014,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/530683',
  'date_captured': '2013-11-14 23:50:43',
  'file_name': 'COCO_train2014_000000530683.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/52/181543138_2b5352a951_z.jpg',
  'height': 640,
  'id': 530683,
  'license': 4,
  'width': 425},
 {'coco_url': 'http://mscoco.org/images/292835',
  'date_captured': '2013-11-15 00:08:52',
  'file_name': 'COCO_train2014_000000292835.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4138/4809294977_f54a3750cb_z.jpg',
  'height': 640,
  'id': 292835,
  'license': 3,
  'width': 390},
 {'coco_url': 'http://mscoco.org/images/262845',
  'date_captured': '2013-11-15 00:23:02',
  'file_name': 'COCO_train2014_000000262845.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3362/3624356537_e435a8c509_z.jpg',
  'height': 500,
  'id': 262845,
  'license': 4,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/299411',
  'date_captured': '2013-11-15 00:51:32',
  'file_name': 'COCO_train2014_000000299411.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3340/3514039016_8408114558_z.jpg',
  'height': 320,
  'id': 299411,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/42493',
  'date_captured': '2013-11-15 00:53:31',
  'file_name': 'COCO_train2014_000000042493.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2392/1573508261_51504fad01_z.jpg',
  'height': 375,
  'id': 42493,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/239811',
  'date_captured': '2013-11-15 01:13:06',
  'file_name': 'COCO_train2014_000000239811.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3181/3030535949_2590c51c45_z.jpg',
  'height': 480,
  'id': 239811,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/2024',
  'date_captured': '2013-11-15 01:17:08',
  'file_name': 'COCO_train2014_000000002024.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4050/4578726045_37c155faae_z.jpg',
  'height': 480,
  'id': 2024,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/95133',
  'date_captured': '2013-11-15 01:38:13',
  'file_name': 'COCO_train2014_000000095133.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7440/9753422924_cf310d076e_z.jpg',
  'height': 480,
  'id': 95133,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/287541',
  'date_captured': '2013-11-15 01:41:55',
  'file_name': 'COCO_train2014_000000287541.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4138/4800723892_3581aa09fb_z.jpg',
  'height': 429,
  'id': 287541,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/441488',
  'date_captured': '2013-11-15 01:47:12',
  'file_name': 'COCO_train2014_000000441488.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2219/2268722570_d9bbdabffc_z.jpg',
  'height': 480,
  'id': 441488,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/179620',
  'date_captured': '2013-11-15 01:48:58',
  'file_name': 'COCO_train2014_000000179620.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1207/5177869463_deacd4f58d_z.jpg',
  'height': 640,
  'id': 179620,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/70000',
  'date_captured': '2013-11-15 02:07:34',
  'file_name': 'COCO_train2014_000000070000.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4125/4840262155_aa1fc6b90a_z.jpg',
  'height': 425,
  'id': 70000,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/536587',
  'date_captured': '2013-11-15 02:28:59',
  'file_name': 'COCO_train2014_000000536587.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8445/7909037350_174696ddaf_z.jpg',
  'height': 640,
  'id': 536587,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/543877',
  'date_captured': '2013-11-15 02:38:25',
  'file_name': 'COCO_train2014_000000543877.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8425/7578960798_9011b0e43f_z.jpg',
  'height': 427,
  'id': 543877,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/420721',
  'date_captured': '2013-11-15 03:16:11',
  'file_name': 'COCO_train2014_000000420721.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7069/6924285073_2316131ded_z.jpg',
  'height': 640,
  'id': 420721,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/540162',
  'date_captured': '2013-11-15 03:20:28',
  'file_name': 'COCO_train2014_000000540162.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7001/6679753659_990f1e17ab_z.jpg',
  'height': 640,
  'id': 540162,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/218956',
  'date_captured': '2013-11-15 03:38:42',
  'file_name': 'COCO_train2014_000000218956.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7159/6623474765_d2a9fba4b7_z.jpg',
  'height': 640,
  'id': 218956,
  'license': 2,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/318574',
  'date_captured': '2013-11-15 03:50:03',
  'file_name': 'COCO_train2014_000000318574.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3087/2769437130_3ef3e84473_z.jpg',
  'height': 426,
  'id': 318574,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/172899',
  'date_captured': '2013-11-15 03:51:19',
  'file_name': 'COCO_train2014_000000172899.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6216/6245119151_71dc23fb1e_z.jpg',
  'height': 640,
  'id': 172899,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/352884',
  'date_captured': '2013-11-15 04:01:35',
  'file_name': 'COCO_train2014_000000352884.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7194/6918082803_30efdd5b9f_z.jpg',
  'height': 640,
  'id': 352884,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/394326',
  'date_captured': '2013-11-15 04:38:02',
  'file_name': 'COCO_train2014_000000394326.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5302/5629404691_8d5fa6df9e_z.jpg',
  'height': 640,
  'id': 394326,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/535786',
  'date_captured': '2013-11-15 04:46:30',
  'file_name': 'COCO_train2014_000000535786.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5019/5521720231_eaeb97b5c1_z.jpg',
  'height': 426,
  'id': 535786,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/357684',
  'date_captured': '2013-11-15 04:58:02',
  'file_name': 'COCO_train2014_000000357684.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2516/3939806632_398c7cc8ff_z.jpg',
  'height': 640,
  'id': 357684,
  'license': 1,
  'width': 496},
 {'coco_url': 'http://mscoco.org/images/576757',
  'date_captured': '2013-11-15 05:04:23',
  'file_name': 'COCO_train2014_000000576757.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5163/5347358404_824bed16de_z.jpg',
  'height': 480,
  'id': 576757,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/165499',
  'date_captured': '2013-11-15 05:17:15',
  'file_name': 'COCO_train2014_000000165499.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1046/5115130935_d96c1de6d2_z.jpg',
  'height': 480,
  'id': 165499,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/181104',
  'date_captured': '2013-11-15 05:17:18',
  'file_name': 'COCO_train2014_000000181104.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1432/5115759894_c40074d838_z.jpg',
  'height': 640,
  'id': 181104,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/55627',
  'date_captured': '2013-11-15 05:17:36',
  'file_name': 'COCO_train2014_000000055627.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1211/5121047833_3678d95e55_z.jpg',
  'height': 480,
  'id': 55627,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/241364',
  'date_captured': '2013-11-15 05:44:45',
  'file_name': 'COCO_train2014_000000241364.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2606/3796756171_b1686b9b87_z.jpg',
  'height': 640,
  'id': 241364,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/209967',
  'date_captured': '2013-11-15 06:02:18',
  'file_name': 'COCO_train2014_000000209967.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4015/4579306316_b41872d3b8_z.jpg',
  'height': 640,
  'id': 209967,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/153674',
  'date_captured': '2013-11-15 06:27:06',
  'file_name': 'COCO_train2014_000000153674.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4124/5032564321_76906f5cf0_z.jpg',
  'height': 640,
  'id': 153674,
  'license': 5,
  'width': 429},
 {'coco_url': 'http://mscoco.org/images/354444',
  'date_captured': '2013-11-15 06:49:08',
  'file_name': 'COCO_train2014_000000354444.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2723/4430135596_2ce9379f2a_z.jpg',
  'height': 640,
  'id': 354444,
  'license': 1,
  'width': 494},
 {'coco_url': 'http://mscoco.org/images/98760',
  'date_captured': '2013-11-15 07:46:29',
  'file_name': 'COCO_train2014_000000098760.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8104/8615414617_462c734dd8_z.jpg',
  'height': 427,
  'id': 98760,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/311914',
  'date_captured': '2013-11-15 10:31:43',
  'file_name': 'COCO_train2014_000000311914.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/48/136584515_f5c1548da7_z.jpg',
  'height': 427,
  'id': 311914,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/467311',
  'date_captured': '2013-11-15 10:46:37',
  'file_name': 'COCO_train2014_000000467311.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4110/4999332699_9e69b6cb34_z.jpg',
  'height': 429,
  'id': 467311,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/236772',
  'date_captured': '2013-11-15 11:29:05',
  'file_name': 'COCO_train2014_000000236772.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3133/3127664461_c5364fc53a_z.jpg',
  'height': 480,
  'id': 236772,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/49183',
  'date_captured': '2013-11-15 11:31:42',
  'file_name': 'COCO_train2014_000000049183.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1175/834892191_e16ae10b72_z.jpg',
  'height': 375,
  'id': 49183,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/426038',
  'date_captured': '2013-11-15 11:35:43',
  'file_name': 'COCO_train2014_000000426038.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2596/3732657676_af6de6d9df_z.jpg',
  'height': 427,
  'id': 426038,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/309322',
  'date_captured': '2013-11-15 11:40:46',
  'file_name': 'COCO_train2014_000000309322.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5020/5408902809_49882ddc43_z.jpg',
  'height': 480,
  'id': 309322,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/318189',
  'date_captured': '2013-11-15 11:57:58',
  'file_name': 'COCO_train2014_000000318189.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2491/3694226461_faf7c14808_z.jpg',
  'height': 349,
  'id': 318189,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/343322',
  'date_captured': '2013-11-15 12:01:13',
  'file_name': 'COCO_train2014_000000343322.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2650/3920024878_bfd8514fa0_z.jpg',
  'height': 640,
  'id': 343322,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/36633',
  'date_captured': '2013-11-15 12:08:18',
  'file_name': 'COCO_train2014_000000036633.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3831/9923900725_67185ab49a_z.jpg',
  'height': 400,
  'id': 36633,
  'license': 3,
  'width': 606},
 {'coco_url': 'http://mscoco.org/images/213546',
  'date_captured': '2013-11-15 12:11:24',
  'file_name': 'COCO_train2014_000000213546.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3350/3437795124_8f644036da_z.jpg',
  'height': 640,
  'id': 213546,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/378710',
  'date_captured': '2013-11-15 12:15:07',
  'file_name': 'COCO_train2014_000000378710.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2828/10238741115_267068421d_z.jpg',
  'height': 480,
  'id': 378710,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/189993',
  'date_captured': '2013-11-15 12:32:24',
  'file_name': 'COCO_train2014_000000189993.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/37/106121550_46de88a5cd_z.jpg',
  'height': 375,
  'id': 189993,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/551125',
  'date_captured': '2013-11-15 12:33:40',
  'file_name': 'COCO_train2014_000000551125.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3705/10238657284_453e3e175e_z.jpg',
  'height': 480,
  'id': 551125,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/77806',
  'date_captured': '2013-11-15 12:51:46',
  'file_name': 'COCO_train2014_000000077806.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/13/18556661_29f9806ee7_z.jpg',
  'height': 640,
  'id': 77806,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/546451',
  'date_captured': '2013-11-15 13:12:23',
  'file_name': 'COCO_train2014_000000546451.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4068/4379671119_09c3a63610_z.jpg',
  'height': 640,
  'id': 546451,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/444546',
  'date_captured': '2013-11-15 13:16:46',
  'file_name': 'COCO_train2014_000000444546.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3729/9715775978_4094dd5bff_z.jpg',
  'height': 640,
  'id': 444546,
  'license': 1,
  'width': 424},
 {'coco_url': 'http://mscoco.org/images/147016',
  'date_captured': '2013-11-15 13:20:51',
  'file_name': 'COCO_train2014_000000147016.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2798/4067524828_ee6618082b_z.jpg',
  'height': 425,
  'id': 147016,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/497616',
  'date_captured': '2013-11-15 13:26:54',
  'file_name': 'COCO_train2014_000000497616.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3392/3452774704_a6f3221a88_z.jpg',
  'height': 358,
  'id': 497616,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/520208',
  'date_captured': '2013-11-15 13:30:21',
  'file_name': 'COCO_train2014_000000520208.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8104/8529757626_a8f05f8d9a_z.jpg',
  'height': 480,
  'id': 520208,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/199628',
  'date_captured': '2013-11-15 13:37:47',
  'file_name': 'COCO_train2014_000000199628.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8206/8286632206_68495ab886_z.jpg',
  'height': 640,
  'id': 199628,
  'license': 1,
  'width': 424},
 {'coco_url': 'http://mscoco.org/images/280980',
  'date_captured': '2013-11-15 13:42:53',
  'file_name': 'COCO_train2014_000000280980.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/134/318719580_03cd1df05d_z.jpg',
  'height': 333,
  'id': 280980,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/167613',
  'date_captured': '2013-11-15 13:46:15',
  'file_name': 'COCO_train2014_000000167613.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7002/6542022635_ed9a7b9ea3_z.jpg',
  'height': 429,
  'id': 167613,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/142088',
  'date_captured': '2013-11-15 13:46:22',
  'file_name': 'COCO_train2014_000000142088.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4090/5056742098_e64eea4358_z.jpg',
  'height': 480,
  'id': 142088,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/301778',
  'date_captured': '2013-11-15 13:52:05',
  'file_name': 'COCO_train2014_000000301778.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7080/7178754834_0289d70146_z.jpg',
  'height': 640,
  'id': 301778,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/454325',
  'date_captured': '2013-11-15 13:52:23',
  'file_name': 'COCO_train2014_000000454325.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2384/2462060601_e5636e2c63_z.jpg',
  'height': 640,
  'id': 454325,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/289019',
  'date_captured': '2013-11-15 13:59:06',
  'file_name': 'COCO_train2014_000000289019.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3365/3555781339_7309018c2a_z.jpg',
  'height': 480,
  'id': 289019,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/246804',
  'date_captured': '2013-11-15 14:00:23',
  'file_name': 'COCO_train2014_000000246804.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5295/5533939254_0071eec445_z.jpg',
  'height': 480,
  'id': 246804,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/62604',
  'date_captured': '2013-11-15 14:05:00',
  'file_name': 'COCO_train2014_000000062604.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4014/4385518763_8e99eb56af_z.jpg',
  'height': 333,
  'id': 62604,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/388911',
  'date_captured': '2013-11-15 14:14:24',
  'file_name': 'COCO_train2014_000000388911.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3827/9234834386_785ed9707f_z.jpg',
  'height': 427,
  'id': 388911,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/412535',
  'date_captured': '2013-11-15 14:14:53',
  'file_name': 'COCO_train2014_000000412535.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3565/3826805371_942400804b_z.jpg',
  'height': 375,
  'id': 412535,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/62279',
  'date_captured': '2013-11-15 14:26:27',
  'file_name': 'COCO_train2014_000000062279.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7099/7183134655_5cc311fa4a_z.jpg',
  'height': 383,
  'id': 62279,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/496939',
  'date_captured': '2013-11-15 14:28:38',
  'file_name': 'COCO_train2014_000000496939.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4109/4963843251_b2b4448410_z.jpg',
  'height': 457,
  'id': 496939,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/66514',
  'date_captured': '2013-11-15 14:34:20',
  'file_name': 'COCO_train2014_000000066514.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3202/2852215843_f127048c8e_z.jpg',
  'height': 427,
  'id': 66514,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/93785',
  'date_captured': '2013-11-15 14:54:23',
  'file_name': 'COCO_train2014_000000093785.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1056/1097121176_2a9bf900c3_z.jpg',
  'height': 500,
  'id': 93785,
  'license': 1,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/486320',
  'date_captured': '2013-11-15 14:59:04',
  'file_name': 'COCO_train2014_000000486320.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/137/432286950_60135ac47d_z.jpg',
  'height': 500,
  'id': 486320,
  'license': 5,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/217306',
  'date_captured': '2013-11-15 15:01:53',
  'file_name': 'COCO_train2014_000000217306.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2135/2496132607_23d09546f5_z.jpg',
  'height': 480,
  'id': 217306,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/287927',
  'date_captured': '2013-11-15 15:22:19',
  'file_name': 'COCO_train2014_000000287927.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/185/424341689_7076dcc423_z.jpg',
  'height': 480,
  'id': 287927,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/269829',
  'date_captured': '2013-11-15 15:25:35',
  'file_name': 'COCO_train2014_000000269829.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2343/2519014102_02d5dc1792_z.jpg',
  'height': 426,
  'id': 269829,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/353139',
  'date_captured': '2013-11-15 15:50:25',
  'file_name': 'COCO_train2014_000000353139.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2743/4075621673_95b12a7854_z.jpg',
  'height': 640,
  'id': 353139,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/574001',
  'date_captured': '2013-11-15 15:51:09',
  'file_name': 'COCO_train2014_000000574001.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2515/4242373482_b4df7f950d_z.jpg',
  'height': 428,
  'id': 574001,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/96557',
  'date_captured': '2013-11-15 16:28:01',
  'file_name': 'COCO_train2014_000000096557.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/200/467773002_e016fb464d_z.jpg',
  'height': 640,
  'id': 96557,
  'license': 2,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/559527',
  'date_captured': '2013-11-15 16:38:36',
  'file_name': 'COCO_train2014_000000559527.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4031/4713683639_1c36584bb7_z.jpg',
  'height': 429,
  'id': 559527,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/477797',
  'date_captured': '2013-11-15 16:59:20',
  'file_name': 'COCO_train2014_000000477797.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4006/4189265261_8c0ca0f633_z.jpg',
  'height': 480,
  'id': 477797,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/223726',
  'date_captured': '2013-11-15 17:02:19',
  'file_name': 'COCO_train2014_000000223726.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3332/3203364850_d23c3fd684_z.jpg',
  'height': 388,
  'id': 223726,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/413746',
  'date_captured': '2013-11-15 17:46:34',
  'file_name': 'COCO_train2014_000000413746.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7304/8725379684_a06af66635_z.jpg',
  'height': 424,
  'id': 413746,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/313932',
  'date_captured': '2013-11-15 19:30:14',
  'file_name': 'COCO_train2014_000000313932.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6189/6071620976_3d4e1bf110_z.jpg',
  'height': 480,
  'id': 313932,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/524068',
  'date_captured': '2013-11-15 19:37:49',
  'file_name': 'COCO_train2014_000000524068.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8284/7545545266_428a6944da_z.jpg',
  'height': 427,
  'id': 524068,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/270912',
  'date_captured': '2013-11-15 20:26:06',
  'file_name': 'COCO_train2014_000000270912.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2318/2459095299_2c4db94354_z.jpg',
  'height': 480,
  'id': 270912,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/528906',
  'date_captured': '2013-11-15 20:26:09',
  'file_name': 'COCO_train2014_000000528906.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3177/2459963136_5a4565ea1f_z.jpg',
  'height': 480,
  'id': 528906,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/278347',
  'date_captured': '2013-11-15 21:33:24',
  'file_name': 'COCO_train2014_000000278347.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7149/6562747737_c09a922881_z.jpg',
  'height': 427,
  'id': 278347,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/267688',
  'date_captured': '2013-11-15 22:02:33',
  'file_name': 'COCO_train2014_000000267688.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6060/6214192724_004bfb4aee_z.jpg',
  'height': 427,
  'id': 267688,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/374114',
  'date_captured': '2013-11-15 22:33:30',
  'file_name': 'COCO_train2014_000000374114.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2634/3727410890_f2a59d0de6_z.jpg',
  'height': 640,
  'id': 374114,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/341550',
  'date_captured': '2013-11-15 22:37:25',
  'file_name': 'COCO_train2014_000000341550.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4051/4489645856_cc16735c4f_z.jpg',
  'height': 399,
  'id': 341550,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/79481',
  'date_captured': '2013-11-16 00:36:54',
  'file_name': 'COCO_train2014_000000079481.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7195/6935589424_9bcb5b93ce_z.jpg',
  'height': 457,
  'id': 79481,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/560459',
  'date_captured': '2013-11-16 02:17:38',
  'file_name': 'COCO_train2014_000000560459.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7148/6596268781_82aca7a2f2_z.jpg',
  'height': 427,
  'id': 560459,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/147170',
  'date_captured': '2013-11-16 04:24:36',
  'file_name': 'COCO_train2014_000000147170.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5498/9595038365_646fbbfefe_z.jpg',
  'height': 427,
  'id': 147170,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/448698',
  'date_captured': '2013-11-16 05:03:19',
  'file_name': 'COCO_train2014_000000448698.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3795/9781966753_c8292a95f4_z.jpg',
  'height': 480,
  'id': 448698,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/302389',
  'date_captured': '2013-11-16 05:23:04',
  'file_name': 'COCO_train2014_000000302389.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2867/9975943515_334c1a18ea_z.jpg',
  'height': 427,
  'id': 302389,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/399956',
  'date_captured': '2013-11-16 11:58:54',
  'file_name': 'COCO_train2014_000000399956.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7096/7181709591_4788c719a9_z.jpg',
  'height': 612,
  'id': 399956,
  'license': 4,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/377694',
  'date_captured': '2013-11-16 12:03:03',
  'file_name': 'COCO_train2014_000000377694.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8164/7507780384_a90fcbe720_z.jpg',
  'height': 438,
  'id': 377694,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/316676',
  'date_captured': '2013-11-16 12:18:01',
  'file_name': 'COCO_train2014_000000316676.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3405/3246394413_442425aecf_z.jpg',
  'height': 640,
  'id': 316676,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/96997',
  'date_captured': '2013-11-16 12:21:40',
  'file_name': 'COCO_train2014_000000096997.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8394/8693460686_22981ae2d2_z.jpg',
  'height': 427,
  'id': 96997,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/309093',
  'date_captured': '2013-11-16 12:35:21',
  'file_name': 'COCO_train2014_000000309093.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2461/3662330204_54e1404d62_z.jpg',
  'height': 480,
  'id': 309093,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/570246',
  'date_captured': '2013-11-16 13:03:22',
  'file_name': 'COCO_train2014_000000570246.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5270/5648018145_a822b80e2e_z.jpg',
  'height': 640,
  'id': 570246,
  'license': 3,
  'width': 501},
 {'coco_url': 'http://mscoco.org/images/70868',
  'date_captured': '2013-11-16 13:03:35',
  'file_name': 'COCO_train2014_000000070868.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3177/2549154658_279b3be5dc_z.jpg',
  'height': 480,
  'id': 70868,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/409513',
  'date_captured': '2013-11-16 13:07:48',
  'file_name': 'COCO_train2014_000000409513.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6167/6177985094_7cd79dcbdf_z.jpg',
  'height': 480,
  'id': 409513,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/387083',
  'date_captured': '2013-11-16 13:10:17',
  'file_name': 'COCO_train2014_000000387083.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2346/2443383170_ec17640495_z.jpg',
  'height': 427,
  'id': 387083,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/513541',
  'date_captured': '2013-11-16 13:11:24',
  'file_name': 'COCO_train2014_000000513541.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1020/5183158695_b26e583045_z.jpg',
  'height': 480,
  'id': 513541,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/576801',
  'date_captured': '2013-11-16 13:12:37',
  'file_name': 'COCO_train2014_000000576801.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3153/5791268965_602338eff5_z.jpg',
  'height': 448,
  'id': 576801,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/239728',
  'date_captured': '2013-11-16 13:13:08',
  'file_name': 'COCO_train2014_000000239728.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2518/3756414892_496c19b4d2_z.jpg',
  'height': 427,
  'id': 239728,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/474882',
  'date_captured': '2013-11-16 13:14:50',
  'file_name': 'COCO_train2014_000000474882.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/66/192610222_c7ee055828_z.jpg',
  'height': 373,
  'id': 474882,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/95989',
  'date_captured': '2013-11-16 13:41:02',
  'file_name': 'COCO_train2014_000000095989.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8390/8462634584_32c11c5e0c_z.jpg',
  'height': 427,
  'id': 95989,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/523617',
  'date_captured': '2013-11-16 14:07:42',
  'file_name': 'COCO_train2014_000000523617.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8219/8274217668_1c5d62f511_z.jpg',
  'height': 330,
  'id': 523617,
  'license': 1,
  'width': 442},
 {'coco_url': 'http://mscoco.org/images/462559',
  'date_captured': '2013-11-16 14:11:12',
  'file_name': 'COCO_train2014_000000462559.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5245/5329536807_d493e45d92_z.jpg',
  'height': 640,
  'id': 462559,
  'license': 1,
  'width': 429},
 {'coco_url': 'http://mscoco.org/images/280260',
  'date_captured': '2013-11-16 14:15:47',
  'file_name': 'COCO_train2014_000000280260.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2837/9070708379_4e1ef2d8ff_z.jpg',
  'height': 612,
  'id': 280260,
  'license': 1,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/150867',
  'date_captured': '2013-11-16 14:19:09',
  'file_name': 'COCO_train2014_000000150867.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/119/294546776_417a3f3375_z.jpg',
  'height': 480,
  'id': 150867,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/153946',
  'date_captured': '2013-11-16 14:22:23',
  'file_name': 'COCO_train2014_000000153946.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6187/6031685411_721a8b591a_z.jpg',
  'height': 480,
  'id': 153946,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/483008',
  'date_captured': '2013-11-16 14:39:31',
  'file_name': 'COCO_train2014_000000483008.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2892/9693873388_344e96c1de_z.jpg',
  'height': 640,
  'id': 483008,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/424102',
  'date_captured': '2013-11-16 14:50:24',
  'file_name': 'COCO_train2014_000000424102.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7262/7626627452_dd1a4c247c_z.jpg',
  'height': 427,
  'id': 424102,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/168194',
  'date_captured': '2013-11-16 15:06:47',
  'file_name': 'COCO_train2014_000000168194.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2242/2391063178_dc4a69e2bb_z.jpg',
  'height': 425,
  'id': 168194,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/101418',
  'date_captured': '2013-11-16 15:07:55',
  'file_name': 'COCO_train2014_000000101418.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4134/4807386348_7192a620df_z.jpg',
  'height': 480,
  'id': 101418,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/445528',
  'date_captured': '2013-11-16 15:07:57',
  'file_name': 'COCO_train2014_000000445528.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4101/4806766769_2935a03950_z.jpg',
  'height': 480,
  'id': 445528,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/334080',
  'date_captured': '2013-11-16 15:15:04',
  'file_name': 'COCO_train2014_000000334080.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2036/2443118239_83acc55ee7_z.jpg',
  'height': 427,
  'id': 334080,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/108627',
  'date_captured': '2013-11-16 15:15:08',
  'file_name': 'COCO_train2014_000000108627.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2209/2443382056_895cb0a7fc_z.jpg',
  'height': 427,
  'id': 108627,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/122108',
  'date_captured': '2013-11-16 15:38:52',
  'file_name': 'COCO_train2014_000000122108.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3443/3785016576_1614e8998b_z.jpg',
  'height': 480,
  'id': 122108,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/157032',
  'date_captured': '2013-11-16 15:42:17',
  'file_name': 'COCO_train2014_000000157032.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3248/3067923463_5b860d2acd_z.jpg',
  'height': 480,
  'id': 157032,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/326511',
  'date_captured': '2013-11-16 16:19:14',
  'file_name': 'COCO_train2014_000000326511.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3766/10211465875_fc3858d091_z.jpg',
  'height': 639,
  'id': 326511,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/345781',
  'date_captured': '2013-11-16 16:22:30',
  'file_name': 'COCO_train2014_000000345781.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2881/10065493043_9bd3f31650_z.jpg',
  'height': 612,
  'id': 345781,
  'license': 2,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/371029',
  'date_captured': '2013-11-16 16:45:55',
  'file_name': 'COCO_train2014_000000371029.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5122/5215919699_937883dac2_z.jpg',
  'height': 480,
  'id': 371029,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/145179',
  'date_captured': '2013-11-16 16:51:10',
  'file_name': 'COCO_train2014_000000145179.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8105/8522092309_136478ff6e_z.jpg',
  'height': 480,
  'id': 145179,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/170850',
  'date_captured': '2013-11-16 16:52:32',
  'file_name': 'COCO_train2014_000000170850.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8463/8357215262_a9c8531bd9_z.jpg',
  'height': 480,
  'id': 170850,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/77375',
  'date_captured': '2013-11-16 17:01:49',
  'file_name': 'COCO_train2014_000000077375.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3765/9561197754_03807cb846_z.jpg',
  'height': 640,
  'id': 77375,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/525589',
  'date_captured': '2013-11-16 17:05:17',
  'file_name': 'COCO_train2014_000000525589.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8125/8713041200_b948e3866b_z.jpg',
  'height': 480,
  'id': 525589,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/560628',
  'date_captured': '2013-11-16 17:30:08',
  'file_name': 'COCO_train2014_000000560628.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7036/6934384653_4879d1c2a0_z.jpg',
  'height': 640,
  'id': 560628,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/212091',
  'date_captured': '2013-11-16 17:34:47',
  'file_name': 'COCO_train2014_000000212091.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2066/2166184614_49f57b18a0_z.jpg',
  'height': 347,
  'id': 212091,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/18885',
  'date_captured': '2013-11-16 17:45:35',
  'file_name': 'COCO_train2014_000000018885.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1212/1252126536_9a9d9173b3_z.jpg',
  'height': 480,
  'id': 18885,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/167603',
  'date_captured': '2013-11-16 18:08:31',
  'file_name': 'COCO_train2014_000000167603.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4079/4948146448_68f1b0aea2_z.jpg',
  'height': 429,
  'id': 167603,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/225750',
  'date_captured': '2013-11-16 18:15:45',
  'file_name': 'COCO_train2014_000000225750.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2207/2206497757_29129f9b1a_z.jpg',
  'height': 640,
  'id': 225750,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/155845',
  'date_captured': '2013-11-16 18:40:58',
  'file_name': 'COCO_train2014_000000155845.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4074/4854653126_96c0018702_z.jpg',
  'height': 480,
  'id': 155845,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/215481',
  'date_captured': '2013-11-16 18:44:38',
  'file_name': 'COCO_train2014_000000215481.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8052/8149421577_1b1dcffc3a_z.jpg',
  'height': 480,
  'id': 215481,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/136461',
  'date_captured': '2013-11-16 18:46:42',
  'file_name': 'COCO_train2014_000000136461.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8219/8438946240_de78935b54_z.jpg',
  'height': 640,
  'id': 136461,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/259446',
  'date_captured': '2013-11-16 18:48:55',
  'file_name': 'COCO_train2014_000000259446.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4104/5072710763_2bbbbc67bf_z.jpg',
  'height': 358,
  'id': 259446,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/412198',
  'date_captured': '2013-11-16 18:52:02',
  'file_name': 'COCO_train2014_000000412198.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4023/4568201151_460e63cf25_z.jpg',
  'height': 640,
  'id': 412198,
  'license': 1,
  'width': 360},
 {'coco_url': 'http://mscoco.org/images/277854',
  'date_captured': '2013-11-16 18:53:26',
  'file_name': 'COCO_train2014_000000277854.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6023/6194612348_552906843d_z.jpg',
  'height': 480,
  'id': 277854,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/160163',
  'date_captured': '2013-11-16 19:13:53',
  'file_name': 'COCO_train2014_000000160163.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8245/8462227523_666dd3e7ec_z.jpg',
  'height': 480,
  'id': 160163,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/556801',
  'date_captured': '2013-11-16 19:17:03',
  'file_name': 'COCO_train2014_000000556801.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3425/3739015319_00c95fa3bf_z.jpg',
  'height': 480,
  'id': 556801,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/219025',
  'date_captured': '2013-11-16 19:27:53',
  'file_name': 'COCO_train2014_000000219025.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7367/9953296865_c94b0a26ff_z.jpg',
  'height': 480,
  'id': 219025,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/147303',
  'date_captured': '2013-11-16 19:37:21',
  'file_name': 'COCO_train2014_000000147303.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7348/9964349114_47e89dbe48_z.jpg',
  'height': 360,
  'id': 147303,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/540988',
  'date_captured': '2013-11-16 19:56:29',
  'file_name': 'COCO_train2014_000000540988.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3257/3088281920_ca7ce67f08_z.jpg',
  'height': 480,
  'id': 540988,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/388754',
  'date_captured': '2013-11-16 20:00:24',
  'file_name': 'COCO_train2014_000000388754.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7360/9524633165_4824d553a8_z.jpg',
  'height': 480,
  'id': 388754,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/265709',
  'date_captured': '2013-11-16 20:11:32',
  'file_name': 'COCO_train2014_000000265709.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5276/5826813116_4e0e751c73_z.jpg',
  'height': 429,
  'id': 265709,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/303291',
  'date_captured': '2013-11-16 20:14:22',
  'file_name': 'COCO_train2014_000000303291.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2656/4019343291_2cb6f7c827_z.jpg',
  'height': 640,
  'id': 303291,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/505126',
  'date_captured': '2013-11-16 20:20:13',
  'file_name': 'COCO_train2014_000000505126.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/65/203929319_36948388b3_z.jpg',
  'height': 500,
  'id': 505126,
  'license': 3,
  'width': 333},
 {'coco_url': 'http://mscoco.org/images/246446',
  'date_captured': '2013-11-16 20:28:12',
  'file_name': 'COCO_train2014_000000246446.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5542/9479250940_3e0a5e214f_z.jpg',
  'height': 427,
  'id': 246446,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/210932',
  'date_captured': '2013-11-16 20:28:15',
  'file_name': 'COCO_train2014_000000210932.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3655/3615427364_d6c89a6d17_z.jpg',
  'height': 640,
  'id': 210932,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/160559',
  'date_captured': '2013-11-16 20:31:04',
  'file_name': 'COCO_train2014_000000160559.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7395/9538720430_57a904d064_z.jpg',
  'height': 480,
  'id': 160559,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/492386',
  'date_captured': '2013-11-16 20:47:42',
  'file_name': 'COCO_train2014_000000492386.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2828/9397362228_dd3a4989bc_z.jpg',
  'height': 480,
  'id': 492386,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/496283',
  'date_captured': '2013-11-16 21:04:52',
  'file_name': 'COCO_train2014_000000496283.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2270/2150388635_2bc6780b88_z.jpg',
  'height': 516,
  'id': 496283,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/351430',
  'date_captured': '2013-11-16 21:12:19',
  'file_name': 'COCO_train2014_000000351430.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7407/10050231846_d797512844_z.jpg',
  'height': 640,
  'id': 351430,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/8649',
  'date_captured': '2013-11-16 21:14:33',
  'file_name': 'COCO_train2014_000000008649.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3693/9758053786_d560ea77bd_z.jpg',
  'height': 640,
  'id': 8649,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/85685',
  'date_captured': '2013-11-16 21:21:19',
  'file_name': 'COCO_train2014_000000085685.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4044/4304472583_51be59cdce_z.jpg',
  'height': 473,
  'id': 85685,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/483751',
  'date_captured': '2013-11-16 21:28:08',
  'file_name': 'COCO_train2014_000000483751.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2567/4296996795_4363458306_z.jpg',
  'height': 500,
  'id': 483751,
  'license': 3,
  'width': 487},
 {'coco_url': 'http://mscoco.org/images/186233',
  'date_captured': '2013-11-16 21:48:34',
  'file_name': 'COCO_train2014_000000186233.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2001/2152517466_34f4fa0dbc_z.jpg',
  'height': 375,
  'id': 186233,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/109424',
  'date_captured': '2013-11-16 21:52:07',
  'file_name': 'COCO_train2014_000000109424.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2732/4261211457_f77b8e154a_z.jpg',
  'height': 399,
  'id': 109424,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/348850',
  'date_captured': '2013-11-16 21:52:13',
  'file_name': 'COCO_train2014_000000348850.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4011/4261204067_fa23eec3b6_z.jpg',
  'height': 499,
  'id': 348850,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/127204',
  'date_captured': '2013-11-16 21:56:47',
  'file_name': 'COCO_train2014_000000127204.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2579/4154908086_e5aa7e6da6_z.jpg',
  'height': 375,
  'id': 127204,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/49845',
  'date_captured': '2013-11-16 22:02:03',
  'file_name': 'COCO_train2014_000000049845.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2428/3836109312_36fb6e2694_z.jpg',
  'height': 640,
  'id': 49845,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/338819',
  'date_captured': '2013-11-16 22:10:03',
  'file_name': 'COCO_train2014_000000338819.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7164/6673723427_2271940d49_z.jpg',
  'height': 480,
  'id': 338819,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/124815',
  'date_captured': '2013-11-16 22:26:20',
  'file_name': 'COCO_train2014_000000124815.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3487/3709803928_982dcdbb6a_z.jpg',
  'height': 640,
  'id': 124815,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/54254',
  'date_captured': '2013-11-16 22:30:39',
  'file_name': 'COCO_train2014_000000054254.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2838/10098102403_ab8176dd41_z.jpg',
  'height': 427,
  'id': 54254,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/555120',
  'date_captured': '2013-11-16 22:30:41',
  'file_name': 'COCO_train2014_000000555120.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7374/10098103653_30516530d7_z.jpg',
  'height': 427,
  'id': 555120,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/280778',
  'date_captured': '2013-11-16 22:48:11',
  'file_name': 'COCO_train2014_000000280778.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8257/8612223025_0ca826566e_z.jpg',
  'height': 480,
  'id': 280778,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/13352',
  'date_captured': '2013-11-16 23:11:07',
  'file_name': 'COCO_train2014_000000013352.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3215/2462285958_97673fde12_z.jpg',
  'height': 640,
  'id': 13352,
  'license': 4,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/132420',
  'date_captured': '2013-11-16 23:17:23',
  'file_name': 'COCO_train2014_000000132420.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8368/8474278315_9dc4d1c78d_z.jpg',
  'height': 427,
  'id': 132420,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/367449',
  'date_captured': '2013-11-16 23:19:14',
  'file_name': 'COCO_train2014_000000367449.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3644/3442172005_df52376c25_z.jpg',
  'height': 640,
  'id': 367449,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/548562',
  'date_captured': '2013-11-16 23:38:01',
  'file_name': 'COCO_train2014_000000548562.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/176/417189795_0736b87b1c_z.jpg',
  'height': 375,
  'id': 548562,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/427491',
  'date_captured': '2013-11-17 00:20:12',
  'file_name': 'COCO_train2014_000000427491.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8439/7814647240_7d8216f574_z.jpg',
  'height': 429,
  'id': 427491,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/525721',
  'date_captured': '2013-11-17 00:20:19',
  'file_name': 'COCO_train2014_000000525721.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8443/7814647494_0cd08d2320_z.jpg',
  'height': 429,
  'id': 525721,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/18736',
  'date_captured': '2013-11-17 00:20:25',
  'file_name': 'COCO_train2014_000000018736.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4086/5148133031_1a9552a429_z.jpg',
  'height': 640,
  'id': 18736,
  'license': 4,
  'width': 423},
 {'coco_url': 'http://mscoco.org/images/391426',
  'date_captured': '2013-11-17 00:38:17',
  'file_name': 'COCO_train2014_000000391426.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2319/2439004575_bafd2c2845_z.jpg',
  'height': 640,
  'id': 391426,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/221615',
  'date_captured': '2013-11-17 00:41:25',
  'file_name': 'COCO_train2014_000000221615.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8337/8160667485_0932ef3a09_z.jpg',
  'height': 299,
  'id': 221615,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/520451',
  'date_captured': '2013-11-17 00:41:32',
  'file_name': 'COCO_train2014_000000520451.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8199/8166367139_a0f16c09dc_z.jpg',
  'height': 428,
  'id': 520451,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/193094',
  'date_captured': '2013-11-17 00:53:40',
  'file_name': 'COCO_train2014_000000193094.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/33/39281983_814f4c859f_z.jpg',
  'height': 480,
  'id': 193094,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/507934',
  'date_captured': '2013-11-17 01:43:20',
  'file_name': 'COCO_train2014_000000507934.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2679/4208087990_02633214ec_z.jpg',
  'height': 428,
  'id': 507934,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/453287',
  'date_captured': '2013-11-17 02:06:21',
  'file_name': 'COCO_train2014_000000453287.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1373/1491270407_a1fe188a2b_z.jpg',
  'height': 333,
  'id': 453287,
  'license': 6,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/177976',
  'date_captured': '2013-11-17 02:17:10',
  'file_name': 'COCO_train2014_000000177976.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3716/9767689964_88b3b83088_z.jpg',
  'height': 427,
  'id': 177976,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/498943',
  'date_captured': '2013-11-17 02:17:22',
  'file_name': 'COCO_train2014_000000498943.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4049/4532685478_139af40701_z.jpg',
  'height': 444,
  'id': 498943,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/463172',
  'date_captured': '2013-11-17 02:19:15',
  'file_name': 'COCO_train2014_000000463172.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6186/6048594313_00c88a500c_z.jpg',
  'height': 480,
  'id': 463172,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/270715',
  'date_captured': '2013-11-17 02:21:25',
  'file_name': 'COCO_train2014_000000270715.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7231/7137063231_506759ab67_z.jpg',
  'height': 640,
  'id': 270715,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/67674',
  'date_captured': '2013-11-17 02:51:04',
  'file_name': 'COCO_train2014_000000067674.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1038/945272067_673ae10ee4_z.jpg',
  'height': 363,
  'id': 67674,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/10581',
  'date_captured': '2013-11-17 02:55:06',
  'file_name': 'COCO_train2014_000000010581.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2782/5819889526_b6177f7351_z.jpg',
  'height': 640,
  'id': 10581,
  'license': 3,
  'width': 478},
 {'coco_url': 'http://mscoco.org/images/146049',
  'date_captured': '2013-11-17 02:55:21',
  'file_name': 'COCO_train2014_000000146049.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3078/2544778759_81f41977f7_z.jpg',
  'height': 480,
  'id': 146049,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/533050',
  'date_captured': '2013-11-17 03:28:10',
  'file_name': 'COCO_train2014_000000533050.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8271/10239759933_b12be6b840_z.jpg',
  'height': 436,
  'id': 533050,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/521772',
  'date_captured': '2013-11-17 03:28:33',
  'file_name': 'COCO_train2014_000000521772.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7451/9053891363_43ff0b1aef_z.jpg',
  'height': 343,
  'id': 521772,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/180220',
  'date_captured': '2013-11-17 03:33:22',
  'file_name': 'COCO_train2014_000000180220.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3258/2891675450_af3ef67a9d_z.jpg',
  'height': 480,
  'id': 180220,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/267516',
  'date_captured': '2013-11-17 03:37:46',
  'file_name': 'COCO_train2014_000000267516.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1157/862137916_d2b25537ed_z.jpg',
  'height': 426,
  'id': 267516,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/91160',
  'date_captured': '2013-11-17 03:39:00',
  'file_name': 'COCO_train2014_000000091160.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5327/10214045693_e1226199ca_z.jpg',
  'height': 360,
  'id': 91160,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/224794',
  'date_captured': '2013-11-17 03:39:58',
  'file_name': 'COCO_train2014_000000224794.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5538/10077029995_64207e8b72_z.jpg',
  'height': 480,
  'id': 224794,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/255123',
  'date_captured': '2013-11-17 04:08:08',
  'file_name': 'COCO_train2014_000000255123.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3347/3432450698_a61fc5e1b1_z.jpg',
  'height': 520,
  'id': 255123,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/36448',
  'date_captured': '2013-11-17 04:08:17',
  'file_name': 'COCO_train2014_000000036448.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5179/5568030633_63e3fb5e7a_z.jpg',
  'height': 480,
  'id': 36448,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/192764',
  'date_captured': '2013-11-17 04:12:29',
  'file_name': 'COCO_train2014_000000192764.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/223/486470339_0c40484ddb_z.jpg',
  'height': 640,
  'id': 192764,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/208261',
  'date_captured': '2013-11-17 04:14:14',
  'file_name': 'COCO_train2014_000000208261.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2462/3565003902_9e5be6e991_z.jpg',
  'height': 640,
  'id': 208261,
  'license': 2,
  'width': 484},
 {'coco_url': 'http://mscoco.org/images/463596',
  'date_captured': '2013-11-17 04:24:04',
  'file_name': 'COCO_train2014_000000463596.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3512/3179825079_59207949e0_z.jpg',
  'height': 640,
  'id': 463596,
  'license': 4,
  'width': 452},
 {'coco_url': 'http://mscoco.org/images/487399',
  'date_captured': '2013-11-17 04:48:05',
  'file_name': 'COCO_train2014_000000487399.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4033/4530460998_2f025993a8_z.jpg',
  'height': 480,
  'id': 487399,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/221380',
  'date_captured': '2013-11-17 05:21:46',
  'file_name': 'COCO_train2014_000000221380.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1120/539022653_45b00bf761_z.jpg',
  'height': 500,
  'id': 221380,
  'license': 5,
  'width': 333},
 {'coco_url': 'http://mscoco.org/images/74477',
  'date_captured': '2013-11-17 05:23:44',
  'file_name': 'COCO_train2014_000000074477.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7405/9567869178_0b5fb9eb02_z.jpg',
  'height': 427,
  'id': 74477,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/74533',
  'date_captured': '2013-11-17 05:25:48',
  'file_name': 'COCO_train2014_000000074533.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3168/2993443494_ebff719792_z.jpg',
  'height': 425,
  'id': 74533,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/412632',
  'date_captured': '2013-11-17 05:32:08',
  'file_name': 'COCO_train2014_000000412632.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3564/3320284351_5ddb597d6e_z.jpg',
  'height': 480,
  'id': 412632,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/188637',
  'date_captured': '2013-11-17 05:37:23',
  'file_name': 'COCO_train2014_000000188637.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5460/9473896243_7ffdf36603_z.jpg',
  'height': 640,
  'id': 188637,
  'license': 5,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/307264',
  'date_captured': '2013-11-17 05:46:14',
  'file_name': 'COCO_train2014_000000307264.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3284/2972677619_ba5053fe80_z.jpg',
  'height': 248,
  'id': 307264,
  'license': 1,
  'width': 336},
 {'coco_url': 'http://mscoco.org/images/80406',
  'date_captured': '2013-11-17 05:49:00',
  'file_name': 'COCO_train2014_000000080406.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2815/9454671243_b6f642bc10_z.jpg',
  'height': 640,
  'id': 80406,
  'license': 2,
  'width': 478},
 {'coco_url': 'http://mscoco.org/images/327628',
  'date_captured': '2013-11-17 05:50:17',
  'file_name': 'COCO_train2014_000000327628.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3256/2873207867_a7731db035_z.jpg',
  'height': 640,
  'id': 327628,
  'license': 1,
  'width': 425},
 {'coco_url': 'http://mscoco.org/images/465153',
  'date_captured': '2013-11-17 05:50:49',
  'file_name': 'COCO_train2014_000000465153.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3004/2884243183_e0b5ef65af_z.jpg',
  'height': 429,
  'id': 465153,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/75256',
  'date_captured': '2013-11-17 05:58:52',
  'file_name': 'COCO_train2014_000000075256.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3018/2736707653_220833e931_z.jpg',
  'height': 640,
  'id': 75256,
  'license': 1,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/138514',
  'date_captured': '2013-11-17 06:04:28',
  'file_name': 'COCO_train2014_000000138514.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6217/6257009233_16bbf08130_z.jpg',
  'height': 640,
  'id': 138514,
  'license': 5,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/203744',
  'date_captured': '2013-11-17 06:16:18',
  'file_name': 'COCO_train2014_000000203744.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3743/9337631007_6f702d020c_z.jpg',
  'height': 382,
  'id': 203744,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/425709',
  'date_captured': '2013-11-17 06:21:25',
  'file_name': 'COCO_train2014_000000425709.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7295/10076374615_f07590a108_z.jpg',
  'height': 640,
  'id': 425709,
  'license': 1,
  'width': 424},
 {'coco_url': 'http://mscoco.org/images/20308',
  'date_captured': '2013-11-17 06:26:33',
  'file_name': 'COCO_train2014_000000020308.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2843/9958063494_46d07307a2_z.jpg',
  'height': 424,
  'id': 20308,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/510207',
  'date_captured': '2013-11-17 06:27:41',
  'file_name': 'COCO_train2014_000000510207.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2015/2115258661_68dc523d26_z.jpg',
  'height': 310,
  'id': 510207,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/361059',
  'date_captured': '2013-11-17 06:30:00',
  'file_name': 'COCO_train2014_000000361059.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3665/9958039865_2de6984a1f_z.jpg',
  'height': 424,
  'id': 361059,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/204572',
  'date_captured': '2013-11-17 06:31:20',
  'file_name': 'COCO_train2014_000000204572.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2853/9976243426_325c1e4a12_z.jpg',
  'height': 640,
  'id': 204572,
  'license': 3,
  'width': 454},
 {'coco_url': 'http://mscoco.org/images/69242',
  'date_captured': '2013-11-17 06:32:13',
  'file_name': 'COCO_train2014_000000069242.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5506/9962094086_e6e2690026_z.jpg',
  'height': 427,
  'id': 69242,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/210679',
  'date_captured': '2013-11-17 06:35:18',
  'file_name': 'COCO_train2014_000000210679.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7445/9300456102_e32e0d8a9c_z.jpg',
  'height': 427,
  'id': 210679,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/262623',
  'date_captured': '2013-11-17 06:41:08',
  'file_name': 'COCO_train2014_000000262623.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1216/1318391832_8985b9486b_z.jpg',
  'height': 480,
  'id': 262623,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/87135',
  'date_captured': '2013-11-17 06:43:41',
  'file_name': 'COCO_train2014_000000087135.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1065/1187643418_904da2a2a0_z.jpg',
  'height': 314,
  'id': 87135,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/297510',
  'date_captured': '2013-11-17 06:45:08',
  'file_name': 'COCO_train2014_000000297510.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5517/9762487173_3125cf4a8f_z.jpg',
  'height': 480,
  'id': 297510,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/31604',
  'date_captured': '2013-11-17 06:49:22',
  'file_name': 'COCO_train2014_000000031604.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/181/485589650_601e7e50a1_z.jpg',
  'height': 480,
  'id': 31604,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/424982',
  'date_captured': '2013-11-17 06:52:27',
  'file_name': 'COCO_train2014_000000424982.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/197/485590528_c6f6a015fe_z.jpg',
  'height': 480,
  'id': 424982,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/469556',
  'date_captured': '2013-11-17 06:55:11',
  'file_name': 'COCO_train2014_000000469556.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/185/432752692_18c5c7386d_z.jpg',
  'height': 375,
  'id': 469556,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/559024',
  'date_captured': '2013-11-17 07:06:29',
  'file_name': 'COCO_train2014_000000559024.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5340/9633760187_7fae097be7_z.jpg',
  'height': 480,
  'id': 559024,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/227490',
  'date_captured': '2013-11-17 07:08:10',
  'file_name': 'COCO_train2014_000000227490.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7341/9646332580_0da86ae4ed_z.jpg',
  'height': 343,
  'id': 227490,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/570618',
  'date_captured': '2013-11-17 07:08:13',
  'file_name': 'COCO_train2014_000000570618.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7316/9646323562_80a15f4f4a_z.jpg',
  'height': 301,
  'id': 570618,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/266623',
  'date_captured': '2013-11-17 07:20:02',
  'file_name': 'COCO_train2014_000000266623.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3809/9566722155_db26d01dae_z.jpg',
  'height': 480,
  'id': 266623,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/79354',
  'date_captured': '2013-11-17 07:24:03',
  'file_name': 'COCO_train2014_000000079354.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3822/9551708288_eb509cea2b_z.jpg',
  'height': 480,
  'id': 79354,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/61048',
  'date_captured': '2013-11-17 07:35:26',
  'file_name': 'COCO_train2014_000000061048.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7416/9516605812_991cb17714_z.jpg',
  'height': 440,
  'id': 61048,
  'license': 4,
  'width': 580},
 {'coco_url': 'http://mscoco.org/images/200764',
  'date_captured': '2013-11-17 08:31:29',
  'file_name': 'COCO_train2014_000000200764.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5333/9266844609_df846178c8_z.jpg',
  'height': 640,
  'id': 200764,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/199956',
  'date_captured': '2013-11-17 08:55:58',
  'file_name': 'COCO_train2014_000000199956.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7326/9536407607_38232c76c5_z.jpg',
  'height': 480,
  'id': 199956,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/25695',
  'date_captured': '2013-11-17 08:59:28',
  'file_name': 'COCO_train2014_000000025695.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2818/9131848469_b5f4b5f9b6_z.jpg',
  'height': 480,
  'id': 25695,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/290511',
  'date_captured': '2013-11-17 09:32:59',
  'file_name': 'COCO_train2014_000000290511.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2496/3978019668_5cef8ed1f6_z.jpg',
  'height': 640,
  'id': 290511,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/176008',
  'date_captured': '2013-11-17 09:35:42',
  'file_name': 'COCO_train2014_000000176008.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2884/9081552013_07825a0a0a_z.jpg',
  'height': 640,
  'id': 176008,
  'license': 2,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/85339',
  'date_captured': '2013-11-17 09:59:19',
  'file_name': 'COCO_train2014_000000085339.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2301/1492096361_9f96e74977_z.jpg',
  'height': 480,
  'id': 85339,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/568614',
  'date_captured': '2013-11-17 10:19:09',
  'file_name': 'COCO_train2014_000000568614.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1212/1399985099_cb4eaff37d_z.jpg',
  'height': 480,
  'id': 568614,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/49643',
  'date_captured': '2013-11-17 13:08:48',
  'file_name': 'COCO_train2014_000000049643.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8046/8149444474_5aa0d668ff_z.jpg',
  'height': 409,
  'id': 49643,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/548183',
  'date_captured': '2013-11-17 13:19:22',
  'file_name': 'COCO_train2014_000000548183.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8321/8063873415_dbbaa02ae7_z.jpg',
  'height': 480,
  'id': 548183,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/448255',
  'date_captured': '2013-11-17 14:07:37',
  'file_name': 'COCO_train2014_000000448255.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2519/4176760780_949922897b_z.jpg',
  'height': 640,
  'id': 448255,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/443749',
  'date_captured': '2013-11-17 15:27:42',
  'file_name': 'COCO_train2014_000000443749.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8466/8139052029_e1b1959e8b_z.jpg',
  'height': 428,
  'id': 443749,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/546013',
  'date_captured': '2013-11-17 16:08:39',
  'file_name': 'COCO_train2014_000000546013.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5099/5440383604_3d2089e549_z.jpg',
  'height': 480,
  'id': 546013,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/487286',
  'date_captured': '2013-11-17 16:17:24',
  'file_name': 'COCO_train2014_000000487286.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2275/2440980043_fd23d971ee_z.jpg',
  'height': 427,
  'id': 487286,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/133200',
  'date_captured': '2013-11-17 16:17:28',
  'file_name': 'COCO_train2014_000000133200.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2299/2440978529_0c7c89af42_z.jpg',
  'height': 368,
  'id': 133200,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/256778',
  'date_captured': '2013-11-17 16:48:14',
  'file_name': 'COCO_train2014_000000256778.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3832/9936280474_57219c0bdd_z.jpg',
  'height': 427,
  'id': 256778,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/355987',
  'date_captured': '2013-11-17 16:54:04',
  'file_name': 'COCO_train2014_000000355987.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3730/9936284234_9f9b663c22_z.jpg',
  'height': 427,
  'id': 355987,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/416766',
  'date_captured': '2013-11-17 16:58:43',
  'file_name': 'COCO_train2014_000000416766.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5505/9823071754_b2e82d7f66_z.jpg',
  'height': 423,
  'id': 416766,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/535526',
  'date_captured': '2013-11-17 17:12:28',
  'file_name': 'COCO_train2014_000000535526.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5485/9855739093_5b7073c283_z.jpg',
  'height': 612,
  'id': 535526,
  'license': 4,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/326374',
  'date_captured': '2013-11-17 17:14:19',
  'file_name': 'COCO_train2014_000000326374.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5332/9901251165_77e8043102_z.jpg',
  'height': 426,
  'id': 326374,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/566743',
  'date_captured': '2013-11-17 17:17:29',
  'file_name': 'COCO_train2014_000000566743.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4045/4252909893_dcae5cb156_z.jpg',
  'height': 480,
  'id': 566743,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/546031',
  'date_captured': '2013-11-17 17:21:57',
  'file_name': 'COCO_train2014_000000546031.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6239/6319853721_c2ffda3927_z.jpg',
  'height': 495,
  'id': 546031,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/271870',
  'date_captured': '2013-11-17 17:39:09',
  'file_name': 'COCO_train2014_000000271870.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7424/9339867258_4d3488804f_z.jpg',
  'height': 451,
  'id': 271870,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/16531',
  'date_captured': '2013-11-17 17:52:22',
  'file_name': 'COCO_train2014_000000016531.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7319/9159934704_4baefabfb0_z.jpg',
  'height': 427,
  'id': 16531,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/148839',
  'date_captured': '2013-11-17 18:04:52',
  'file_name': 'COCO_train2014_000000148839.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3646/3295159419_09fba41978_z.jpg',
  'height': 463,
  'id': 148839,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/567627',
  'date_captured': '2013-11-17 18:05:56',
  'file_name': 'COCO_train2014_000000567627.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2126/2088610709_b785aee3b9_z.jpg',
  'height': 500,
  'id': 567627,
  'license': 2,
  'width': 428},
 {'coco_url': 'http://mscoco.org/images/334594',
  'date_captured': '2013-11-17 18:32:39',
  'file_name': 'COCO_train2014_000000334594.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2194/2461817577_7389722e51_z.jpg',
  'height': 333,
  'id': 334594,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/414189',
  'date_captured': '2013-11-17 18:33:45',
  'file_name': 'COCO_train2014_000000414189.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2626/4253906166_7c7f25e32a_z.jpg',
  'height': 480,
  'id': 414189,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/544386',
  'date_captured': '2013-11-17 18:49:32',
  'file_name': 'COCO_train2014_000000544386.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8512/8452473520_07715bdc0a_z.jpg',
  'height': 424,
  'id': 544386,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/307082',
  'date_captured': '2013-11-17 18:55:03',
  'file_name': 'COCO_train2014_000000307082.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8470/8444679052_be3bef9e23_z.jpg',
  'height': 427,
  'id': 307082,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/155417',
  'date_captured': '2013-11-17 19:31:52',
  'file_name': 'COCO_train2014_000000155417.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7134/8074969435_b9045f4fcd_z.jpg',
  'height': 423,
  'id': 155417,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/429685',
  'date_captured': '2013-11-17 19:40:35',
  'file_name': 'COCO_train2014_000000429685.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3240/3025457526_6a694d2a97_z.jpg',
  'height': 480,
  'id': 429685,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/529602',
  'date_captured': '2013-11-17 20:09:49',
  'file_name': 'COCO_train2014_000000529602.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5535/10236200115_98a0a663c5_z.jpg',
  'height': 640,
  'id': 529602,
  'license': 1,
  'width': 478},
 {'coco_url': 'http://mscoco.org/images/407936',
  'date_captured': '2013-11-17 20:09:57',
  'file_name': 'COCO_train2014_000000407936.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5485/10236112934_ab40eb3355_z.jpg',
  'height': 480,
  'id': 407936,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/379279',
  'date_captured': '2013-11-17 20:10:02',
  'file_name': 'COCO_train2014_000000379279.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8137/10236465363_621a4f4ced_z.jpg',
  'height': 427,
  'id': 379279,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/403144',
  'date_captured': '2013-11-17 20:14:23',
  'file_name': 'COCO_train2014_000000403144.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3069/2518965815_1de15672fb_z.jpg',
  'height': 640,
  'id': 403144,
  'license': 4,
  'width': 424},
 {'coco_url': 'http://mscoco.org/images/287735',
  'date_captured': '2013-11-17 20:22:04',
  'file_name': 'COCO_train2014_000000287735.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2349/1535920902_167377fc5d_z.jpg',
  'height': 400,
  'id': 287735,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/504099',
  'date_captured': '2013-11-17 20:41:27',
  'file_name': 'COCO_train2014_000000504099.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7104/7218176092_665b1cf3c4_z.jpg',
  'height': 427,
  'id': 504099,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/228712',
  'date_captured': '2013-11-17 20:41:31',
  'file_name': 'COCO_train2014_000000228712.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7095/7218172446_6f92c28a58_z.jpg',
  'height': 427,
  'id': 228712,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/412794',
  'date_captured': '2013-11-17 20:56:56',
  'file_name': 'COCO_train2014_000000412794.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8541/8685396858_b148bd80fc_z.jpg',
  'height': 480,
  'id': 412794,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/498679',
  'date_captured': '2013-11-17 20:59:54',
  'file_name': 'COCO_train2014_000000498679.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8255/8624405673_f327b23084_z.jpg',
  'height': 427,
  'id': 498679,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/271875',
  'date_captured': '2013-11-17 21:20:05',
  'file_name': 'COCO_train2014_000000271875.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1229/1031377025_eb56fb1d3a_z.jpg',
  'height': 480,
  'id': 271875,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/51278',
  'date_captured': '2013-11-17 21:35:34',
  'file_name': 'COCO_train2014_000000051278.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7024/6596286677_f452dd3725_z.jpg',
  'height': 427,
  'id': 51278,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/30693',
  'date_captured': '2013-11-17 21:37:23',
  'file_name': 'COCO_train2014_000000030693.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8322/7974081518_d1eb6bedea_z.jpg',
  'height': 427,
  'id': 30693,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/328819',
  'date_captured': '2013-11-17 21:37:30',
  'file_name': 'COCO_train2014_000000328819.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8172/8048169262_85dd12c164_z.jpg',
  'height': 145,
  'id': 328819,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/170512',
  'date_captured': '2013-11-17 22:36:29',
  'file_name': 'COCO_train2014_000000170512.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7357/9429768599_a582a6d8b9_z.jpg',
  'height': 371,
  'id': 170512,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/502964',
  'date_captured': '2013-11-17 22:54:29',
  'file_name': 'COCO_train2014_000000502964.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3048/2775048012_7b1c560c28_z.jpg',
  'height': 480,
  'id': 502964,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/197318',
  'date_captured': '2013-11-17 23:34:31',
  'file_name': 'COCO_train2014_000000197318.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6208/6029701527_52531a2bcf_z.jpg',
  'height': 480,
  'id': 197318,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/335866',
  'date_captured': '2013-11-17 23:38:27',
  'file_name': 'COCO_train2014_000000335866.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6024/5960346694_5c22581e26_z.jpg',
  'height': 480,
  'id': 335866,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/203867',
  'date_captured': '2013-11-18 00:10:13',
  'file_name': 'COCO_train2014_000000203867.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5162/5727523788_6918b04600_z.jpg',
  'height': 480,
  'id': 203867,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/43971',
  'date_captured': '2013-11-18 00:17:37',
  'file_name': 'COCO_train2014_000000043971.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4003/4341514333_0ef2e09d4d_z.jpg',
  'height': 481,
  'id': 43971,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/66309',
  'date_captured': '2013-11-18 00:45:01',
  'file_name': 'COCO_train2014_000000066309.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3458/3376780607_52f30e3bb1_z.jpg',
  'height': 390,
  'id': 66309,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/426664',
  'date_captured': '2013-11-18 00:57:57',
  'file_name': 'COCO_train2014_000000426664.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3644/3456776031_d0f46acd68_z.jpg',
  'height': 640,
  'id': 426664,
  'license': 2,
  'width': 450},
 {'coco_url': 'http://mscoco.org/images/196291',
  'date_captured': '2013-11-18 01:02:19',
  'file_name': 'COCO_train2014_000000196291.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8159/7359571760_37321faa50_z.jpg',
  'height': 480,
  'id': 196291,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/512845',
  'date_captured': '2013-11-18 01:25:42',
  'file_name': 'COCO_train2014_000000512845.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/128/362040994_1cfb9a339c_z.jpg',
  'height': 480,
  'id': 512845,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/219680',
  'date_captured': '2013-11-18 01:28:52',
  'file_name': 'COCO_train2014_000000219680.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3008/2679080675_2c3c1b5749_z.jpg',
  'height': 480,
  'id': 219680,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/513956',
  'date_captured': '2013-11-18 01:34:00',
  'file_name': 'COCO_train2014_000000513956.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7059/7136500841_e6b4c3a5ee_z.jpg',
  'height': 427,
  'id': 513956,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/341844',
  'date_captured': '2013-11-18 01:39:36',
  'file_name': 'COCO_train2014_000000341844.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4151/5063499853_f614bbf3ae_z.jpg',
  'height': 640,
  'id': 341844,
  'license': 4,
  'width': 394},
 {'coco_url': 'http://mscoco.org/images/105026',
  'date_captured': '2013-11-18 01:41:36',
  'file_name': 'COCO_train2014_000000105026.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7145/6750624785_baaacdabf7_z.jpg',
  'height': 480,
  'id': 105026,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/106652',
  'date_captured': '2013-11-18 01:41:43',
  'file_name': 'COCO_train2014_000000106652.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7154/6750622153_b38875cf45_z.jpg',
  'height': 480,
  'id': 106652,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/243792',
  'date_captured': '2013-11-18 01:46:35',
  'file_name': 'COCO_train2014_000000243792.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/54/141490412_7a458392f5_z.jpg',
  'height': 480,
  'id': 243792,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/496678',
  'date_captured': '2013-11-18 01:46:37',
  'file_name': 'COCO_train2014_000000496678.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/47/141496098_869b1ab70a_z.jpg',
  'height': 480,
  'id': 496678,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/239754',
  'date_captured': '2013-11-18 02:01:40',
  'file_name': 'COCO_train2014_000000239754.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2691/4096114605_fb9a893c0b_z.jpg',
  'height': 640,
  'id': 239754,
  'license': 3,
  'width': 542},
 {'coco_url': 'http://mscoco.org/images/47087',
  'date_captured': '2013-11-18 02:08:29',
  'file_name': 'COCO_train2014_000000047087.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6182/6033578237_61697601af_z.jpg',
  'height': 480,
  'id': 47087,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/520343',
  'date_captured': '2013-11-18 02:18:00',
  'file_name': 'COCO_train2014_000000520343.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3018/2436671491_1ccd35ef74_z.jpg',
  'height': 640,
  'id': 520343,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/326935',
  'date_captured': '2013-11-18 02:19:47',
  'file_name': 'COCO_train2014_000000326935.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3039/2745828573_4ef8b73a1f_z.jpg',
  'height': 333,
  'id': 326935,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/191120',
  'date_captured': '2013-11-18 02:24:26',
  'file_name': 'COCO_train2014_000000191120.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4140/4806800643_df9359d380_z.jpg',
  'height': 481,
  'id': 191120,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/349129',
  'date_captured': '2013-11-18 02:35:28',
  'file_name': 'COCO_train2014_000000349129.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3249/2701772887_83956bbab5_z.jpg',
  'height': 426,
  'id': 349129,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/577196',
  'date_captured': '2013-11-18 02:37:57',
  'file_name': 'COCO_train2014_000000577196.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8177/7917337574_524606a82c_z.jpg',
  'height': 640,
  'id': 577196,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/32044',
  'date_captured': '2013-11-18 02:41:34',
  'file_name': 'COCO_train2014_000000032044.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7135/7863719138_e482cc9db3_z.jpg',
  'height': 428,
  'id': 32044,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/140426',
  'date_captured': '2013-11-18 02:42:16',
  'file_name': 'COCO_train2014_000000140426.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7197/6859514767_a858c2ceaa_z.jpg',
  'height': 480,
  'id': 140426,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/97747',
  'date_captured': '2013-11-18 02:44:23',
  'file_name': 'COCO_train2014_000000097747.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3038/3117092924_cc91dc30e2_z.jpg',
  'height': 480,
  'id': 97747,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/50658',
  'date_captured': '2013-11-18 02:44:32',
  'file_name': 'COCO_train2014_000000050658.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3287/3114622796_5bc87a60d3_z.jpg',
  'height': 480,
  'id': 50658,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/263094',
  'date_captured': '2013-11-18 02:52:02',
  'file_name': 'COCO_train2014_000000263094.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5116/7150649385_5d24f8c04d_z.jpg',
  'height': 640,
  'id': 263094,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/387392',
  'date_captured': '2013-11-18 02:53:17',
  'file_name': 'COCO_train2014_000000387392.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5085/5214638436_5a6338d268_z.jpg',
  'height': 480,
  'id': 387392,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/80105',
  'date_captured': '2013-11-18 02:55:32',
  'file_name': 'COCO_train2014_000000080105.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7212/7174349125_e716b58fae_z.jpg',
  'height': 480,
  'id': 80105,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/149961',
  'date_captured': '2013-11-18 02:59:05',
  'file_name': 'COCO_train2014_000000149961.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1154/1364551290_74172e40b5_z.jpg',
  'height': 480,
  'id': 149961,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/336477',
  'date_captured': '2013-11-18 03:10:32',
  'file_name': 'COCO_train2014_000000336477.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7004/6423753713_db4880f1e8_z.jpg',
  'height': 640,
  'id': 336477,
  'license': 4,
  'width': 614},
 {'coco_url': 'http://mscoco.org/images/162077',
  'date_captured': '2013-11-18 03:18:28',
  'file_name': 'COCO_train2014_000000162077.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/187/466257023_e062e0a6db_z.jpg',
  'height': 360,
  'id': 162077,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/232889',
  'date_captured': '2013-11-18 03:28:32',
  'file_name': 'COCO_train2014_000000232889.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3783/10207916525_d08357c6fc_z.jpg',
  'height': 426,
  'id': 232889,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/539631',
  'date_captured': '2013-11-18 03:42:23',
  'file_name': 'COCO_train2014_000000539631.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5211/5444273602_de18f919d5_z.jpg',
  'height': 410,
  'id': 539631,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/580837',
  'date_captured': '2013-11-18 03:47:27',
  'file_name': 'COCO_train2014_000000580837.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5050/5225690150_731eccfdc4_z.jpg',
  'height': 480,
  'id': 580837,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/420025',
  'date_captured': '2013-11-18 04:00:51',
  'file_name': 'COCO_train2014_000000420025.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3805/9975916976_818b93131a_z.jpg',
  'height': 425,
  'id': 420025,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/419310',
  'date_captured': '2013-11-18 04:00:53',
  'file_name': 'COCO_train2014_000000419310.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2854/9975852495_e602f08d53_z.jpg',
  'height': 425,
  'id': 419310,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/450776',
  'date_captured': '2013-11-18 04:00:55',
  'file_name': 'COCO_train2014_000000450776.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5335/9975788016_3a94f3e200_z.jpg',
  'height': 425,
  'id': 450776,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/274570',
  'date_captured': '2013-11-18 04:04:18',
  'file_name': 'COCO_train2014_000000274570.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7372/9137754706_3dfe586b8d_z.jpg',
  'height': 480,
  'id': 274570,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/497522',
  'date_captured': '2013-11-18 04:10:15',
  'file_name': 'COCO_train2014_000000497522.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3818/9862338026_299ebcb6d3_z.jpg',
  'height': 427,
  'id': 497522,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/515622',
  'date_captured': '2013-11-18 04:10:26',
  'file_name': 'COCO_train2014_000000515622.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7403/9426577155_a5ae76dc26_z.jpg',
  'height': 612,
  'id': 515622,
  'license': 2,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/311933',
  'date_captured': '2013-11-18 04:18:28',
  'file_name': 'COCO_train2014_000000311933.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4054/4420226879_2455493263_z.jpg',
  'height': 480,
  'id': 311933,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/505700',
  'date_captured': '2013-11-18 04:18:45',
  'file_name': 'COCO_train2014_000000505700.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4026/4420227799_b0b075ee05_z.jpg',
  'height': 480,
  'id': 505700,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/555037',
  'date_captured': '2013-11-18 04:20:30',
  'file_name': 'COCO_train2014_000000555037.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7341/9829118614_f739abd725_z.jpg',
  'height': 480,
  'id': 555037,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/63230',
  'date_captured': '2013-11-18 04:24:29',
  'file_name': 'COCO_train2014_000000063230.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3663/3358475111_d3db6ae464_z.jpg',
  'height': 480,
  'id': 63230,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/502204',
  'date_captured': '2013-11-18 04:24:54',
  'file_name': 'COCO_train2014_000000502204.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3177/2740694473_cfd1f8140a_z.jpg',
  'height': 427,
  'id': 502204,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/190884',
  'date_captured': '2013-11-18 04:41:54',
  'file_name': 'COCO_train2014_000000190884.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8464/8396929629_9090fb7368_z.jpg',
  'height': 480,
  'id': 190884,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/158105',
  'date_captured': '2013-11-18 04:43:57',
  'file_name': 'COCO_train2014_000000158105.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2163/2061709138_f9ab9abf15_z.jpg',
  'height': 640,
  'id': 158105,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/128027',
  'date_captured': '2013-11-18 04:52:19',
  'file_name': 'COCO_train2014_000000128027.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5484/9726541559_1d46786e27_z.jpg',
  'height': 480,
  'id': 128027,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/504911',
  'date_captured': '2013-11-18 04:56:29',
  'file_name': 'COCO_train2014_000000504911.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3476/3752088133_b23c372c36_z.jpg',
  'height': 431,
  'id': 504911,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/129064',
  'date_captured': '2013-11-18 04:57:46',
  'file_name': 'COCO_train2014_000000129064.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2635/3797569704_eb64f0b603_z.jpg',
  'height': 640,
  'id': 129064,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/133549',
  'date_captured': '2013-11-18 04:57:59',
  'file_name': 'COCO_train2014_000000133549.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3440/3300137376_3886971e97_z.jpg',
  'height': 429,
  'id': 133549,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/402759',
  'date_captured': '2013-11-18 05:00:10',
  'file_name': 'COCO_train2014_000000402759.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3289/2705595014_bf07cfe6d2_z.jpg',
  'height': 476,
  'id': 402759,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/128631',
  'date_captured': '2013-11-18 05:02:27',
  'file_name': 'COCO_train2014_000000128631.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7333/9659168355_c01058fbe5_z.jpg',
  'height': 426,
  'id': 128631,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/387731',
  'date_captured': '2013-11-18 05:03:24',
  'file_name': 'COCO_train2014_000000387731.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3787/9653666577_47777bbe7d_z.jpg',
  'height': 480,
  'id': 387731,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/129438',
  'date_captured': '2013-11-18 05:08:43',
  'file_name': 'COCO_train2014_000000129438.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/133/386357387_2d3ff58d94_z.jpg',
  'height': 418,
  'id': 129438,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/23072',
  'date_captured': '2013-11-18 05:17:26',
  'file_name': 'COCO_train2014_000000023072.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8076/8349647310_ee7948dca5_z.jpg',
  'height': 640,
  'id': 23072,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/282485',
  'date_captured': '2013-11-18 05:19:33',
  'file_name': 'COCO_train2014_000000282485.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3567/3531531924_bdd4b85ddf_z.jpg',
  'height': 640,
  'id': 282485,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/83770',
  'date_captured': '2013-11-18 05:19:52',
  'file_name': 'COCO_train2014_000000083770.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8141/7444968726_d9e046d616_z.jpg',
  'height': 480,
  'id': 83770,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/173634',
  'date_captured': '2013-11-18 05:19:54',
  'file_name': 'COCO_train2014_000000173634.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8025/7444957000_32ec757822_z.jpg',
  'height': 640,
  'id': 173634,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/510239',
  'date_captured': '2013-11-18 05:33:14',
  'file_name': 'COCO_train2014_000000510239.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7441/9529852393_8718973186_z.jpg',
  'height': 424,
  'id': 510239,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/278301',
  'date_captured': '2013-11-18 05:44:55',
  'file_name': 'COCO_train2014_000000278301.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3120/3223602941_66da39a38b_z.jpg',
  'height': 640,
  'id': 278301,
  'license': 4,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/417720',
  'date_captured': '2013-11-18 05:46:56',
  'file_name': 'COCO_train2014_000000417720.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5458/9529946680_ed124d4dd6_z.jpg',
  'height': 640,
  'id': 417720,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/501358',
  'date_captured': '2013-11-18 05:54:37',
  'file_name': 'COCO_train2014_000000501358.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7319/9479352482_e593da1c28_z.jpg',
  'height': 427,
  'id': 501358,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/388171',
  'date_captured': '2013-11-18 06:04:09',
  'file_name': 'COCO_train2014_000000388171.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7356/9513819001_76a0499a74_z.jpg',
  'height': 430,
  'id': 388171,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/576733',
  'date_captured': '2013-11-18 06:05:04',
  'file_name': 'COCO_train2014_000000576733.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7456/9485623215_079d090c8b_z.jpg',
  'height': 480,
  'id': 576733,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/469587',
  'date_captured': '2013-11-18 06:14:13',
  'file_name': 'COCO_train2014_000000469587.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3051/2991667017_3de6659d50_z.jpg',
  'height': 480,
  'id': 469587,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/136184',
  'date_captured': '2013-11-18 06:28:13',
  'file_name': 'COCO_train2014_000000136184.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7247/7042354841_5f188e569d_z.jpg',
  'height': 426,
  'id': 136184,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/216406',
  'date_captured': '2013-11-18 06:48:20',
  'file_name': 'COCO_train2014_000000216406.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6062/6054893738_8025613c3e_z.jpg',
  'height': 384,
  'id': 216406,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/266200',
  'date_captured': '2013-11-18 06:48:22',
  'file_name': 'COCO_train2014_000000266200.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6197/6054335817_cda0e0e9f6_z.jpg',
  'height': 384,
  'id': 266200,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/317788',
  'date_captured': '2013-11-18 06:50:40',
  'file_name': 'COCO_train2014_000000317788.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3004/2611948070_30ba0a7924_z.jpg',
  'height': 640,
  'id': 317788,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/114701',
  'date_captured': '2013-11-18 07:14:43',
  'file_name': 'COCO_train2014_000000114701.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2377/2243712589_14e7e3e1be_z.jpg',
  'height': 480,
  'id': 114701,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/134327',
  'date_captured': '2013-11-18 07:30:19',
  'file_name': 'COCO_train2014_000000134327.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4013/4320408006_915eeb3b4d_z.jpg',
  'height': 502,
  'id': 134327,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/38801',
  'date_captured': '2013-11-18 07:50:46',
  'file_name': 'COCO_train2014_000000038801.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4102/5604205714_3d71b6d30d_z.jpg',
  'height': 428,
  'id': 38801,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/167126',
  'date_captured': '2013-11-18 08:05:02',
  'file_name': 'COCO_train2014_000000167126.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3385/3521113603_3ecf35d1ca_z.jpg',
  'height': 396,
  'id': 167126,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/424439',
  'date_captured': '2013-11-18 08:43:34',
  'file_name': 'COCO_train2014_000000424439.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8400/8756068377_8e6f16e4d8_z.jpg',
  'height': 480,
  'id': 424439,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/455877',
  'date_captured': '2013-11-18 08:43:41',
  'file_name': 'COCO_train2014_000000455877.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1365/1062677116_9743c6a8d2_z.jpg',
  'height': 425,
  'id': 455877,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/569538',
  'date_captured': '2013-11-18 09:07:46',
  'file_name': 'COCO_train2014_000000569538.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3137/2819040761_d7ecf6658d_z.jpg',
  'height': 400,
  'id': 569538,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/421658',
  'date_captured': '2013-11-18 09:08:58',
  'file_name': 'COCO_train2014_000000421658.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4076/4807426140_38d6dec193_z.jpg',
  'height': 480,
  'id': 421658,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/541767',
  'date_captured': '2013-11-18 09:11:31',
  'file_name': 'COCO_train2014_000000541767.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8334/8093258505_62c29b68da_z.jpg',
  'height': 425,
  'id': 541767,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/418099',
  'date_captured': '2013-11-18 09:11:33',
  'file_name': 'COCO_train2014_000000418099.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4101/4806804743_82ff4ddf2d_z.jpg',
  'height': 480,
  'id': 418099,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/96975',
  'date_captured': '2013-11-18 09:41:12',
  'file_name': 'COCO_train2014_000000096975.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3048/2403065601_58a63cc61f_z.jpg',
  'height': 640,
  'id': 96975,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/330952',
  'date_captured': '2013-11-18 10:01:28',
  'file_name': 'COCO_train2014_000000330952.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7086/7334881406_5469c5c4c9_z.jpg',
  'height': 383,
  'id': 330952,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/533504',
  'date_captured': '2013-11-18 10:01:45',
  'file_name': 'COCO_train2014_000000533504.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4050/4529817015_4f7816d904_z.jpg',
  'height': 480,
  'id': 533504,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/301362',
  'date_captured': '2013-11-18 10:01:48',
  'file_name': 'COCO_train2014_000000301362.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4041/4530451678_6b10a2ac73_z.jpg',
  'height': 480,
  'id': 301362,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/241809',
  'date_captured': '2013-11-18 10:05:51',
  'file_name': 'COCO_train2014_000000241809.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3034/2857079655_bb6f5ffb0b_z.jpg',
  'height': 480,
  'id': 241809,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/261800',
  'date_captured': '2013-11-18 10:13:21',
  'file_name': 'COCO_train2014_000000261800.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7204/6982099079_d152fb67b1_z.jpg',
  'height': 612,
  'id': 261800,
  'license': 2,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/528960',
  'date_captured': '2013-11-18 10:15:13',
  'file_name': 'COCO_train2014_000000528960.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/99/289874010_4cbd52d87d_z.jpg',
  'height': 480,
  'id': 528960,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/539265',
  'date_captured': '2013-11-18 10:17:11',
  'file_name': 'COCO_train2014_000000539265.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2531/3711980200_5d4aa14274_z.jpg',
  'height': 459,
  'id': 539265,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/192866',
  'date_captured': '2013-11-18 10:37:59',
  'file_name': 'COCO_train2014_000000192866.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6009/5920945567_d978b5c80c_z.jpg',
  'height': 478,
  'id': 192866,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/152701',
  'date_captured': '2013-11-18 10:39:08',
  'file_name': 'COCO_train2014_000000152701.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6130/5921508948_6fba0f10a0_z.jpg',
  'height': 478,
  'id': 152701,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/334032',
  'date_captured': '2013-11-18 11:06:47',
  'file_name': 'COCO_train2014_000000334032.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3505/5697693368_775f0e44f6_z.jpg',
  'height': 330,
  'id': 334032,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/192576',
  'date_captured': '2013-11-18 11:22:24',
  'file_name': 'COCO_train2014_000000192576.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3211/2888177610_a5ea1ec0d6_z.jpg',
  'height': 480,
  'id': 192576,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/40283',
  'date_captured': '2013-11-18 11:23:47',
  'file_name': 'COCO_train2014_000000040283.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2124/2160945814_39e684e9bd_z.jpg',
  'height': 427,
  'id': 40283,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/107571',
  'date_captured': '2013-11-18 11:25:56',
  'file_name': 'COCO_train2014_000000107571.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8190/8124008072_d16c8fd7a0_z.jpg',
  'height': 427,
  'id': 107571,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/184135',
  'date_captured': '2013-11-18 11:37:15',
  'file_name': 'COCO_train2014_000000184135.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5258/5462661419_f54e106b74_z.jpg',
  'height': 508,
  'id': 184135,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/264241',
  'date_captured': '2013-11-18 11:46:39',
  'file_name': 'COCO_train2014_000000264241.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8380/8455130391_12827e6d45_z.jpg',
  'height': 427,
  'id': 264241,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/467809',
  'date_captured': '2013-11-18 12:21:16',
  'file_name': 'COCO_train2014_000000467809.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1349/1429843705_bf4bf615ae_z.jpg',
  'height': 428,
  'id': 467809,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/446732',
  'date_captured': '2013-11-18 12:41:55',
  'file_name': 'COCO_train2014_000000446732.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3747/10043798856_a9071a9124_z.jpg',
  'height': 387,
  'id': 446732,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/153960',
  'date_captured': '2013-11-18 13:23:09',
  'file_name': 'COCO_train2014_000000153960.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3174/2998499721_2d63fe9545_z.jpg',
  'height': 427,
  'id': 153960,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/572243',
  'date_captured': '2013-11-18 13:42:04',
  'file_name': 'COCO_train2014_000000572243.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3079/3162526015_5d16bb7952_z.jpg',
  'height': 480,
  'id': 572243,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/410366',
  'date_captured': '2013-11-18 14:13:36',
  'file_name': 'COCO_train2014_000000410366.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6143/6026457936_e442e9c998_z.jpg',
  'height': 640,
  'id': 410366,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/14757',
  'date_captured': '2013-11-18 14:24:14',
  'file_name': 'COCO_train2014_000000014757.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1243/856143882_0e65571608_z.jpg',
  'height': 480,
  'id': 14757,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/544156',
  'date_captured': '2013-11-18 14:30:07',
  'file_name': 'COCO_train2014_000000544156.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8247/8469399088_6184b4d702_z.jpg',
  'height': 640,
  'id': 544156,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/88789',
  'date_captured': '2013-11-18 14:31:54',
  'file_name': 'COCO_train2014_000000088789.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7314/9120241259_a9a5eb002d_z.jpg',
  'height': 612,
  'id': 88789,
  'license': 2,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/241887',
  'date_captured': '2013-11-18 14:54:52',
  'file_name': 'COCO_train2014_000000241887.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2537/5791806984_385da8db61_z.jpg',
  'height': 373,
  'id': 241887,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/337156',
  'date_captured': '2013-11-18 14:55:08',
  'file_name': 'COCO_train2014_000000337156.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2683/5792085594_c46a6d2498_z.jpg',
  'height': 356,
  'id': 337156,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/16314',
  'date_captured': '2013-11-18 15:22:42',
  'file_name': 'COCO_train2014_000000016314.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4098/4926848363_8612b97aab_z.jpg',
  'height': 431,
  'id': 16314,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/97540',
  'date_captured': '2013-11-18 15:22:48',
  'file_name': 'COCO_train2014_000000097540.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4099/4927025807_fb0950dee2_z.jpg',
  'height': 640,
  'id': 97540,
  'license': 4,
  'width': 423},
 {'coco_url': 'http://mscoco.org/images/130834',
  'date_captured': '2013-11-18 15:28:28',
  'file_name': 'COCO_train2014_000000130834.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1076/536698786_abbbe9f513_z.jpg',
  'height': 393,
  'id': 130834,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/158322',
  'date_captured': '2013-11-18 15:30:43',
  'file_name': 'COCO_train2014_000000158322.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/26/97493266_7ff3cbd9b8_z.jpg',
  'height': 375,
  'id': 158322,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/8290',
  'date_captured': '2013-11-18 15:56:07',
  'file_name': 'COCO_train2014_000000008290.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4137/4806794507_7f2b44a044_z.jpg',
  'height': 480,
  'id': 8290,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/571955',
  'date_captured': '2013-11-18 16:01:32',
  'file_name': 'COCO_train2014_000000571955.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8427/7711131798_9439394906_z.jpg',
  'height': 359,
  'id': 571955,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/625',
  'date_captured': '2013-11-18 16:18:05',
  'file_name': 'COCO_train2014_000000000625.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2589/3682156730_9e92670053_z.jpg',
  'height': 446,
  'id': 625,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/48204',
  'date_captured': '2013-11-18 16:18:13',
  'file_name': 'COCO_train2014_000000048204.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3618/3681339797_9f20213567_z.jpg',
  'height': 417,
  'id': 48204,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/242631',
  'date_captured': '2013-11-18 16:19:07',
  'file_name': 'COCO_train2014_000000242631.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2553/3664308406_67e2fc0b46_z.jpg',
  'height': 427,
  'id': 242631,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/185290',
  'date_captured': '2013-11-18 16:19:14',
  'file_name': 'COCO_train2014_000000185290.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2559/3663495975_8d94464b52_z.jpg',
  'height': 640,
  'id': 185290,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/466839',
  'date_captured': '2013-11-18 16:26:40',
  'file_name': 'COCO_train2014_000000466839.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/63/219406846_ffc4bd0d61_z.jpg',
  'height': 374,
  'id': 466839,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/570403',
  'date_captured': '2013-11-18 16:30:07',
  'file_name': 'COCO_train2014_000000570403.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3454/3808105672_9ab677a2d8_z.jpg',
  'height': 480,
  'id': 570403,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/445427',
  'date_captured': '2013-11-18 16:32:34',
  'file_name': 'COCO_train2014_000000445427.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3480/3784212883_44babe6864_z.jpg',
  'height': 480,
  'id': 445427,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/185448',
  'date_captured': '2013-11-18 16:32:41',
  'file_name': 'COCO_train2014_000000185448.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3585/3784217669_7d2958bc34_z.jpg',
  'height': 480,
  'id': 185448,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/123166',
  'date_captured': '2013-11-18 16:44:32',
  'file_name': 'COCO_train2014_000000123166.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3020/2745018281_2c8b55f8d2_z.jpg',
  'height': 640,
  'id': 123166,
  'license': 4,
  'width': 617},
 {'coco_url': 'http://mscoco.org/images/437714',
  'date_captured': '2013-11-18 17:05:23',
  'file_name': 'COCO_train2014_000000437714.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2805/10254708274_6924b0c8f1_z.jpg',
  'height': 427,
  'id': 437714,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/464951',
  'date_captured': '2013-11-18 17:09:27',
  'file_name': 'COCO_train2014_000000464951.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5477/10067265093_0cac233544_z.jpg',
  'height': 640,
  'id': 464951,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/279341',
  'date_captured': '2013-11-18 17:11:35',
  'file_name': 'COCO_train2014_000000279341.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1021/860956215_b2bf38d7c4_z.jpg',
  'height': 426,
  'id': 279341,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/1025',
  'date_captured': '2013-11-18 17:19:34',
  'file_name': 'COCO_train2014_000000001025.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8391/8475353422_a3a61913dd_z.jpg',
  'height': 427,
  'id': 1025,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/286698',
  'date_captured': '2013-11-18 17:21:08',
  'file_name': 'COCO_train2014_000000286698.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2079/2244694386_0b2d580bd8_z.jpg',
  'height': 640,
  'id': 286698,
  'license': 2,
  'width': 564},
 {'coco_url': 'http://mscoco.org/images/147049',
  'date_captured': '2013-11-18 17:30:09',
  'file_name': 'COCO_train2014_000000147049.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2386/2060226430_91643ba431_z.jpg',
  'height': 480,
  'id': 147049,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/307315',
  'date_captured': '2013-11-18 17:30:13',
  'file_name': 'COCO_train2014_000000307315.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2252/2059463997_0af1a31d80_z.jpg',
  'height': 640,
  'id': 307315,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/14998',
  'date_captured': '2013-11-18 18:02:12',
  'file_name': 'COCO_train2014_000000014998.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6206/6153282099_6429651140_z.jpg',
  'height': 480,
  'id': 14998,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/466771',
  'date_captured': '2013-11-18 18:02:15',
  'file_name': 'COCO_train2014_000000466771.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6063/6153820434_58312d756e_z.jpg',
  'height': 480,
  'id': 466771,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/22815',
  'date_captured': '2013-11-18 18:02:17',
  'file_name': 'COCO_train2014_000000022815.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6159/6153275103_b1080b28c8_z.jpg',
  'height': 458,
  'id': 22815,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/7069',
  'date_captured': '2013-11-18 18:27:00',
  'file_name': 'COCO_train2014_000000007069.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6215/6337935686_86777fa9ac_z.jpg',
  'height': 428,
  'id': 7069,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/55298',
  'date_captured': '2013-11-18 18:38:58',
  'file_name': 'COCO_train2014_000000055298.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2321/2342215120_c2480cb6de_z.jpg',
  'height': 481,
  'id': 55298,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/104898',
  'date_captured': '2013-11-18 18:39:37',
  'file_name': 'COCO_train2014_000000104898.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4075/4808977113_c2e6766edb_z.jpg',
  'height': 480,
  'id': 104898,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/380885',
  'date_captured': '2013-11-18 19:16:27',
  'file_name': 'COCO_train2014_000000380885.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2512/3847915566_f571a00c59_z.jpg',
  'height': 478,
  'id': 380885,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/312486',
  'date_captured': '2013-11-18 19:32:59',
  'file_name': 'COCO_train2014_000000312486.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3434/3721534242_347f9c4d1a_z.jpg',
  'height': 640,
  'id': 312486,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/203868',
  'date_captured': '2013-11-18 19:33:06',
  'file_name': 'COCO_train2014_000000203868.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2590/3720716727_b803e0b3a2_z.jpg',
  'height': 640,
  'id': 203868,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/409155',
  'date_captured': '2013-11-18 19:47:46',
  'file_name': 'COCO_train2014_000000409155.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3652/3392992734_90ccb5fb32_z.jpg',
  'height': 480,
  'id': 409155,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/415849',
  'date_captured': '2013-11-18 19:56:14',
  'file_name': 'COCO_train2014_000000415849.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3271/3035922006_b8c8e4bcaa_z.jpg',
  'height': 360,
  'id': 415849,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/495789',
  'date_captured': '2013-11-18 19:58:37',
  'file_name': 'COCO_train2014_000000495789.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2186/2128265704_d179cc01ca_z.jpg',
  'height': 480,
  'id': 495789,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/526598',
  'date_captured': '2013-11-18 20:01:47',
  'file_name': 'COCO_train2014_000000526598.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3054/3030641850_8f982eed89_z.jpg',
  'height': 480,
  'id': 526598,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/413414',
  'date_captured': '2013-11-18 20:27:33',
  'file_name': 'COCO_train2014_000000413414.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3573/3405834376_38558d6e1b_z.jpg',
  'height': 500,
  'id': 413414,
  'license': 1,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/466169',
  'date_captured': '2013-11-18 20:42:00',
  'file_name': 'COCO_train2014_000000466169.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2851/9903293634_96bb766510_z.jpg',
  'height': 424,
  'id': 466169,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/502297',
  'date_captured': '2013-11-18 20:51:30',
  'file_name': 'COCO_train2014_000000502297.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3257/2518896290_514c012db8_z.jpg',
  'height': 427,
  'id': 502297,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/406462',
  'date_captured': '2013-11-18 21:26:20',
  'file_name': 'COCO_train2014_000000406462.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5331/9485044132_fdfc38fe3b_z.jpg',
  'height': 487,
  'id': 406462,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/246278',
  'date_captured': '2013-11-18 21:28:16',
  'file_name': 'COCO_train2014_000000246278.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1153/1231559434_bf8f286de9_z.jpg',
  'height': 426,
  'id': 246278,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/264169',
  'date_captured': '2013-11-18 21:43:48',
  'file_name': 'COCO_train2014_000000264169.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3302/3653054234_d0cea4286b_z.jpg',
  'height': 427,
  'id': 264169,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/402362',
  'date_captured': '2013-11-18 22:26:25',
  'file_name': 'COCO_train2014_000000402362.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3727/8865835868_e287f97d1f_z.jpg',
  'height': 427,
  'id': 402362,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/167712',
  'date_captured': '2013-11-18 22:26:32',
  'file_name': 'COCO_train2014_000000167712.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2824/8865840238_297d900fcc_z.jpg',
  'height': 427,
  'id': 167712,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/56303',
  'date_captured': '2013-11-18 22:54:01',
  'file_name': 'COCO_train2014_000000056303.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1034/1235937354_321db59f31_z.jpg',
  'height': 480,
  'id': 56303,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/375788',
  'date_captured': '2013-11-18 22:54:43',
  'file_name': 'COCO_train2014_000000375788.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4097/4929767135_555e77bb39_z.jpg',
  'height': 480,
  'id': 375788,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/50618',
  'date_captured': '2013-11-18 23:42:17',
  'file_name': 'COCO_train2014_000000050618.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2832/9577623842_e7654909e7_z.jpg',
  'height': 530,
  'id': 50618,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/374971',
  'date_captured': '2013-11-18 23:44:07',
  'file_name': 'COCO_train2014_000000374971.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3050/2625695167_0b6e45178a_z.jpg',
  'height': 426,
  'id': 374971,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/96453',
  'date_captured': '2013-11-18 23:44:22',
  'file_name': 'COCO_train2014_000000096453.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3159/2625692167_f63ffc11f5_z.jpg',
  'height': 500,
  'id': 96453,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/307137',
  'date_captured': '2013-11-18 23:50:17',
  'file_name': 'COCO_train2014_000000307137.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7164/6589226467_9e8929b2d0_z.jpg',
  'height': 640,
  'id': 307137,
  'license': 2,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/131915',
  'date_captured': '2013-11-18 23:50:20',
  'file_name': 'COCO_train2014_000000131915.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7010/6589241933_8af5c9ac66_z.jpg',
  'height': 640,
  'id': 131915,
  'license': 2,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/106051',
  'date_captured': '2013-11-18 23:58:50',
  'file_name': 'COCO_train2014_000000106051.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7447/10231537916_052faf770b_z.jpg',
  'height': 427,
  'id': 106051,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/521184',
  'date_captured': '2013-11-18 23:58:53',
  'file_name': 'COCO_train2014_000000521184.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8399/10225990783_06e2096a53_z.jpg',
  'height': 427,
  'id': 521184,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/519489',
  'date_captured': '2013-11-19 00:05:30',
  'file_name': 'COCO_train2014_000000519489.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2817/10140111034_daf475c94a_z.jpg',
  'height': 427,
  'id': 519489,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/42671',
  'date_captured': '2013-11-19 00:09:02',
  'file_name': 'COCO_train2014_000000042671.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5447/10058998276_502295517f_z.jpg',
  'height': 427,
  'id': 42671,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/472662',
  'date_captured': '2013-11-19 00:09:10',
  'file_name': 'COCO_train2014_000000472662.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7422/10058958495_fa0a1ffa81_z.jpg',
  'height': 427,
  'id': 472662,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/369199',
  'date_captured': '2013-11-19 00:14:30',
  'file_name': 'COCO_train2014_000000369199.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2894/10139481006_e4e24935ed_z.jpg',
  'height': 427,
  'id': 369199,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/265744',
  'date_captured': '2013-11-19 00:16:01',
  'file_name': 'COCO_train2014_000000265744.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2859/9777126264_d55b8f3f5c_z.jpg',
  'height': 424,
  'id': 265744,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/312660',
  'date_captured': '2013-11-19 00:17:21',
  'file_name': 'COCO_train2014_000000312660.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5456/9734556652_742473442c_z.jpg',
  'height': 424,
  'id': 312660,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/147780',
  'date_captured': '2013-11-19 00:33:48',
  'file_name': 'COCO_train2014_000000147780.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2857/9675708346_eb2c4c2456_z.jpg',
  'height': 427,
  'id': 147780,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/235358',
  'date_captured': '2013-11-19 00:39:39',
  'file_name': 'COCO_train2014_000000235358.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7359/9590421124_ef5f66e931_z.jpg',
  'height': 474,
  'id': 235358,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/359825',
  'date_captured': '2013-11-19 00:39:42',
  'file_name': 'COCO_train2014_000000359825.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2883/9590420016_bae252ebdc_z.jpg',
  'height': 459,
  'id': 359825,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/552054',
  'date_captured': '2013-11-19 00:39:45',
  'file_name': 'COCO_train2014_000000552054.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3725/9590397168_8d7662c519_z.jpg',
  'height': 460,
  'id': 552054,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/75477',
  'date_captured': '2013-11-19 00:49:06',
  'file_name': 'COCO_train2014_000000075477.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3726/9482251667_4bedc47270_z.jpg',
  'height': 640,
  'id': 75477,
  'license': 1,
  'width': 479},
 {'coco_url': 'http://mscoco.org/images/417693',
  'date_captured': '2013-11-19 01:08:18',
  'file_name': 'COCO_train2014_000000417693.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3769/9393586519_45d7119368_z.jpg',
  'height': 426,
  'id': 417693,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/562623',
  'date_captured': '2013-11-19 01:08:24',
  'file_name': 'COCO_train2014_000000562623.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5485/9396366374_e21e185263_z.jpg',
  'height': 411,
  'id': 562623,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/359141',
  'date_captured': '2013-11-19 01:38:18',
  'file_name': 'COCO_train2014_000000359141.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2814/9192986211_3cbaf1d897_z.jpg',
  'height': 426,
  'id': 359141,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/153667',
  'date_captured': '2013-11-19 02:18:29',
  'file_name': 'COCO_train2014_000000153667.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5343/8846304195_c744434a38_z.jpg',
  'height': 612,
  'id': 153667,
  'license': 4,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/98746',
  'date_captured': '2013-11-19 02:40:39',
  'file_name': 'COCO_train2014_000000098746.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8119/8693511580_87200084fc_z.jpg',
  'height': 416,
  'id': 98746,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/420529',
  'date_captured': '2013-11-19 02:45:47',
  'file_name': 'COCO_train2014_000000420529.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8382/8625105888_1997eeb5d2_z.jpg',
  'height': 427,
  'id': 420529,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/147788',
  'date_captured': '2013-11-19 03:22:48',
  'file_name': 'COCO_train2014_000000147788.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8246/8475282476_eb5d3fa98b_z.jpg',
  'height': 612,
  'id': 147788,
  'license': 4,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/283658',
  'date_captured': '2013-11-19 18:01:20',
  'file_name': 'COCO_train2014_000000283658.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2122/2212061756_644888069b_z.jpg',
  'height': 480,
  'id': 283658,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/52038',
  'date_captured': '2013-11-19 18:01:40',
  'file_name': 'COCO_train2014_000000052038.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3315/3490145267_6d85491719_z.jpg',
  'height': 428,
  'id': 52038,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/36736',
  'date_captured': '2013-11-19 18:08:26',
  'file_name': 'COCO_train2014_000000036736.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2300/2113494273_cb4437b13a_z.jpg',
  'height': 430,
  'id': 36736,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/260347',
  'date_captured': '2013-11-19 18:08:39',
  'file_name': 'COCO_train2014_000000260347.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8160/7592557980_9d7442591c_z.jpg',
  'height': 480,
  'id': 260347,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/512629',
  'date_captured': '2013-11-19 18:09:16',
  'file_name': 'COCO_train2014_000000512629.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8447/7844054188_a74abd1795_z.jpg',
  'height': 640,
  'id': 512629,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/132538',
  'date_captured': '2013-11-19 18:12:50',
  'file_name': 'COCO_train2014_000000132538.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2080/1804070336_e2ea945d5a_z.jpg',
  'height': 375,
  'id': 132538,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/530796',
  'date_captured': '2013-11-19 18:13:37',
  'file_name': 'COCO_train2014_000000530796.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1325/5127222676_7eab04682a_z.jpg',
  'height': 480,
  'id': 530796,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/488924',
  'date_captured': '2013-11-19 18:22:13',
  'file_name': 'COCO_train2014_000000488924.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3109/3143750104_5003de16c4_z.jpg',
  'height': 480,
  'id': 488924,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/545334',
  'date_captured': '2013-11-19 18:28:23',
  'file_name': 'COCO_train2014_000000545334.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2397/1729568175_483cafde81_z.jpg',
  'height': 480,
  'id': 545334,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/274734',
  'date_captured': '2013-11-19 18:28:50',
  'file_name': 'COCO_train2014_000000274734.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7094/7017349369_a9fae7a16e_z.jpg',
  'height': 383,
  'id': 274734,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/204537',
  'date_captured': '2013-11-19 18:29:25',
  'file_name': 'COCO_train2014_000000204537.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6070/6158556913_007628b298_z.jpg',
  'height': 480,
  'id': 204537,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/479729',
  'date_captured': '2013-11-19 18:47:50',
  'file_name': 'COCO_train2014_000000479729.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8339/8231329597_1b9934b714_z.jpg',
  'height': 480,
  'id': 479729,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/42828',
  'date_captured': '2013-11-19 18:48:26',
  'file_name': 'COCO_train2014_000000042828.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8352/8345804256_c61f174e2c_z.jpg',
  'height': 522,
  'id': 42828,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/255181',
  'date_captured': '2013-11-19 18:54:28',
  'file_name': 'COCO_train2014_000000255181.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2653/3937362450_db05de1d94_z.jpg',
  'height': 480,
  'id': 255181,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/457530',
  'date_captured': '2013-11-19 18:54:28',
  'file_name': 'COCO_train2014_000000457530.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2003/5716181002_69ba0e4324_z.jpg',
  'height': 360,
  'id': 457530,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/487589',
  'date_captured': '2013-11-19 19:07:27',
  'file_name': 'COCO_train2014_000000487589.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7188/6949734571_ec07f121c5_z.jpg',
  'height': 612,
  'id': 487589,
  'license': 4,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/211221',
  'date_captured': '2013-11-19 19:07:34',
  'file_name': 'COCO_train2014_000000211221.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7203/6862587993_3a41f327b6_z.jpg',
  'height': 640,
  'id': 211221,
  'license': 4,
  'width': 441},
 {'coco_url': 'http://mscoco.org/images/405197',
  'date_captured': '2013-11-19 19:10:33',
  'file_name': 'COCO_train2014_000000405197.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8316/8022040772_c134ee1277_z.jpg',
  'height': 424,
  'id': 405197,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/501388',
  'date_captured': '2013-11-19 19:10:35',
  'file_name': 'COCO_train2014_000000501388.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8181/8022041294_17c597a384_z.jpg',
  'height': 424,
  'id': 501388,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/244282',
  'date_captured': '2013-11-19 19:28:34',
  'file_name': 'COCO_train2014_000000244282.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2075/2319855559_2887938f5b_z.jpg',
  'height': 425,
  'id': 244282,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/305366',
  'date_captured': '2013-11-19 19:30:06',
  'file_name': 'COCO_train2014_000000305366.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7249/7795429150_8437f2d89c_z.jpg',
  'height': 480,
  'id': 305366,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/450961',
  'date_captured': '2013-11-19 19:31:56',
  'file_name': 'COCO_train2014_000000450961.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2019/2246679452_6a4f88dba4_z.jpg',
  'height': 480,
  'id': 450961,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/421578',
  'date_captured': '2013-11-19 19:45:40',
  'file_name': 'COCO_train2014_000000421578.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5495/9135557359_b4cc83ff7e_z.jpg',
  'height': 480,
  'id': 421578,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/409884',
  'date_captured': '2013-11-19 20:06:53',
  'file_name': 'COCO_train2014_000000409884.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3573/3816224148_6ba6b566f4_z.jpg',
  'height': 480,
  'id': 409884,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/249272',
  'date_captured': '2013-11-19 20:10:18',
  'file_name': 'COCO_train2014_000000249272.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8243/8485986294_e7ded086dd_z.jpg',
  'height': 442,
  'id': 249272,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/8773',
  'date_captured': '2013-11-19 20:11:08',
  'file_name': 'COCO_train2014_000000008773.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8332/8082195420_5d226de99b_z.jpg',
  'height': 640,
  'id': 8773,
  'license': 5,
  'width': 424},
 {'coco_url': 'http://mscoco.org/images/76584',
  'date_captured': '2013-11-19 20:11:56',
  'file_name': 'COCO_train2014_000000076584.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8104/8480809763_10709d5e0a_z.jpg',
  'height': 640,
  'id': 76584,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/288358',
  'date_captured': '2013-11-19 20:15:12',
  'file_name': 'COCO_train2014_000000288358.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8108/8463962951_a7ff3e1da3_z.jpg',
  'height': 480,
  'id': 288358,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/271890',
  'date_captured': '2013-11-19 20:18:40',
  'file_name': 'COCO_train2014_000000271890.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7203/6791683090_80a81119d0_z.jpg',
  'height': 383,
  'id': 271890,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/131299',
  'date_captured': '2013-11-19 20:27:04',
  'file_name': 'COCO_train2014_000000131299.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8324/8372784813_49fffa4988_z.jpg',
  'height': 480,
  'id': 131299,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/158747',
  'date_captured': '2013-11-19 20:27:08',
  'file_name': 'COCO_train2014_000000158747.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8360/8372801845_daa185b5a5_z.jpg',
  'height': 480,
  'id': 158747,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/179421',
  'date_captured': '2013-11-19 20:29:03',
  'file_name': 'COCO_train2014_000000179421.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8071/8378350240_dd5c43ce7a_z.jpg',
  'height': 427,
  'id': 179421,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/136711',
  'date_captured': '2013-11-19 20:30:05',
  'file_name': 'COCO_train2014_000000136711.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3025/2627468705_c5d137e8c2_z.jpg',
  'height': 480,
  'id': 136711,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/357649',
  'date_captured': '2013-11-19 20:30:33',
  'file_name': 'COCO_train2014_000000357649.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2740/4166168830_6e8197ce6e_z.jpg',
  'height': 429,
  'id': 357649,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/433301',
  'date_captured': '2013-11-19 20:32:42',
  'file_name': 'COCO_train2014_000000433301.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3188/2631092382_38d7843741_z.jpg',
  'height': 480,
  'id': 433301,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/268129',
  'date_captured': '2013-11-19 20:33:33',
  'file_name': 'COCO_train2014_000000268129.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8504/8325833915_fd1f184e2b_z.jpg',
  'height': 426,
  'id': 268129,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/576214',
  'date_captured': '2013-11-19 20:35:35',
  'file_name': 'COCO_train2014_000000576214.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3528/5783556979_0fb0712b5e_z.jpg',
  'height': 429,
  'id': 576214,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/179990',
  'date_captured': '2013-11-19 20:35:36',
  'file_name': 'COCO_train2014_000000179990.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5282/5301110595_0d64d460d2_z.jpg',
  'height': 383,
  'id': 179990,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/33946',
  'date_captured': '2013-11-19 20:44:00',
  'file_name': 'COCO_train2014_000000033946.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5255/5686293075_647807e421_z.jpg',
  'height': 640,
  'id': 33946,
  'license': 4,
  'width': 483},
 {'coco_url': 'http://mscoco.org/images/448571',
  'date_captured': '2013-11-19 20:46:12',
  'file_name': 'COCO_train2014_000000448571.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2803/4296243644_67770250bb_z.jpg',
  'height': 334,
  'id': 448571,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/376946',
  'date_captured': '2013-11-19 20:47:22',
  'file_name': 'COCO_train2014_000000376946.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2540/4180062042_1bb0d7a505_z.jpg',
  'height': 480,
  'id': 376946,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/560388',
  'date_captured': '2013-11-19 20:50:31',
  'file_name': 'COCO_train2014_000000560388.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7240/7256197174_a30113478f_z.jpg',
  'height': 480,
  'id': 560388,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/333492',
  'date_captured': '2013-11-19 20:56:23',
  'file_name': 'COCO_train2014_000000333492.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3230/2704279889_b2de54aa0e_z.jpg',
  'height': 381,
  'id': 333492,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/518242',
  'date_captured': '2013-11-19 20:59:57',
  'file_name': 'COCO_train2014_000000518242.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7279/7447170330_11ce817aca_z.jpg',
  'height': 383,
  'id': 518242,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/122250',
  'date_captured': '2013-11-19 21:01:35',
  'file_name': 'COCO_train2014_000000122250.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7195/6791673178_598c2bf6cc_z.jpg',
  'height': 640,
  'id': 122250,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/349527',
  'date_captured': '2013-11-19 21:01:52',
  'file_name': 'COCO_train2014_000000349527.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6038/6850027314_61464179e3_z.jpg',
  'height': 480,
  'id': 349527,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/391272',
  'date_captured': '2013-11-19 21:02:56',
  'file_name': 'COCO_train2014_000000391272.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7055/6996142443_11c867716b_z.jpg',
  'height': 480,
  'id': 391272,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/424572',
  'date_captured': '2013-11-19 21:04:08',
  'file_name': 'COCO_train2014_000000424572.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2178/2029772054_2c6f90e4df_z.jpg',
  'height': 428,
  'id': 424572,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/404766',
  'date_captured': '2013-11-19 21:15:28',
  'file_name': 'COCO_train2014_000000404766.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2383/2372738502_2aac7c3afb_z.jpg',
  'height': 588,
  'id': 404766,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/255306',
  'date_captured': '2013-11-19 21:21:11',
  'file_name': 'COCO_train2014_000000255306.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7058/6870989335_3c721c3bae_z.jpg',
  'height': 427,
  'id': 255306,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/341054',
  'date_captured': '2013-11-19 21:23:14',
  'file_name': 'COCO_train2014_000000341054.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8338/8224015684_6e3b9c8eb4_z.jpg',
  'height': 480,
  'id': 341054,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/410845',
  'date_captured': '2013-11-19 21:31:24',
  'file_name': 'COCO_train2014_000000410845.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5299/5487183088_aecf7e3436_z.jpg',
  'height': 428,
  'id': 410845,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/434884',
  'date_captured': '2013-11-19 21:43:33',
  'file_name': 'COCO_train2014_000000434884.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3353/3629623055_44e5690131_z.jpg',
  'height': 480,
  'id': 434884,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/123514',
  'date_captured': '2013-11-19 21:48:55',
  'file_name': 'COCO_train2014_000000123514.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6068/6144669498_57fa2598a6_z.jpg',
  'height': 480,
  'id': 123514,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/391439',
  'date_captured': '2013-11-19 21:48:57',
  'file_name': 'COCO_train2014_000000391439.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6192/6144672100_6f41d6fe61_z.jpg',
  'height': 480,
  'id': 391439,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/426880',
  'date_captured': '2013-11-19 21:52:48',
  'file_name': 'COCO_train2014_000000426880.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3566/5835944438_88cffbf5dd_z.jpg',
  'height': 429,
  'id': 426880,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/452500',
  'date_captured': '2013-11-19 21:53:25',
  'file_name': 'COCO_train2014_000000452500.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6017/5985387933_a466245122_z.jpg',
  'height': 480,
  'id': 452500,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/7028',
  'date_captured': '2013-11-19 21:55:56',
  'file_name': 'COCO_train2014_000000007028.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7218/7058624033_bab55841c0_z.jpg',
  'height': 427,
  'id': 7028,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/149280',
  'date_captured': '2013-11-19 21:57:32',
  'file_name': 'COCO_train2014_000000149280.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2186/5817049913_7eb9139734_z.jpg',
  'height': 480,
  'id': 149280,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/220697',
  'date_captured': '2013-11-19 21:58:08',
  'file_name': 'COCO_train2014_000000220697.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1300/582997076_26685c77ce_z.jpg',
  'height': 480,
  'id': 220697,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/369546',
  'date_captured': '2013-11-19 22:11:08',
  'file_name': 'COCO_train2014_000000369546.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7116/7698348846_901c6a83dd_z.jpg',
  'height': 480,
  'id': 369546,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/366554',
  'date_captured': '2013-11-19 22:13:51',
  'file_name': 'COCO_train2014_000000366554.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5259/5550206052_2a29e44e08_z.jpg',
  'height': 640,
  'id': 366554,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/556065',
  'date_captured': '2013-11-19 22:13:57',
  'file_name': 'COCO_train2014_000000556065.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5019/5550205346_790f3a67ae_z.jpg',
  'height': 640,
  'id': 556065,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/196663',
  'date_captured': '2013-11-19 22:14:54',
  'file_name': 'COCO_train2014_000000196663.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8246/8653857034_68003e5ec7_z.jpg',
  'height': 480,
  'id': 196663,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/155263',
  'date_captured': '2013-11-19 22:16:25',
  'file_name': 'COCO_train2014_000000155263.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8348/8189315918_e3cce79842_z.jpg',
  'height': 479,
  'id': 155263,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/427335',
  'date_captured': '2013-11-19 22:17:36',
  'file_name': 'COCO_train2014_000000427335.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7266/7135801535_2aeda7167c_z.jpg',
  'height': 480,
  'id': 427335,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/504657',
  'date_captured': '2013-11-19 22:19:56',
  'file_name': 'COCO_train2014_000000504657.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5059/5459873036_b50e7f6cd9_z.jpg',
  'height': 429,
  'id': 504657,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/537532',
  'date_captured': '2013-11-19 22:24:47',
  'file_name': 'COCO_train2014_000000537532.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7420/10135430013_6788e7d43d_z.jpg',
  'height': 480,
  'id': 537532,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/106666',
  'date_captured': '2013-11-19 22:30:48',
  'file_name': 'COCO_train2014_000000106666.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5216/5484410655_c3fa3ddef5_z.jpg',
  'height': 480,
  'id': 106666,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/98413',
  'date_captured': '2013-11-19 22:34:08',
  'file_name': 'COCO_train2014_000000098413.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7194/6961344231_29a8e91c77_z.jpg',
  'height': 383,
  'id': 98413,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/571885',
  'date_captured': '2013-11-19 22:38:15',
  'file_name': 'COCO_train2014_000000571885.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7030/6398315581_07311f201c_z.jpg',
  'height': 429,
  'id': 571885,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/310049',
  'date_captured': '2013-11-19 22:42:58',
  'file_name': 'COCO_train2014_000000310049.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7050/6937798799_b8bac353a9_z.jpg',
  'height': 383,
  'id': 310049,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/234749',
  'date_captured': '2013-11-19 22:45:38',
  'file_name': 'COCO_train2014_000000234749.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5057/5487877609_84df9f7cc6_z.jpg',
  'height': 383,
  'id': 234749,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/434084',
  'date_captured': '2013-11-19 22:47:56',
  'file_name': 'COCO_train2014_000000434084.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8377/8507628685_3ac90d75ff_z.jpg',
  'height': 480,
  'id': 434084,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/49851',
  'date_captured': '2013-11-19 22:55:40',
  'file_name': 'COCO_train2014_000000049851.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6178/6206798126_503dc088f5_z.jpg',
  'height': 429,
  'id': 49851,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/329004',
  'date_captured': '2013-11-19 22:56:55',
  'file_name': 'COCO_train2014_000000329004.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4144/4986862175_e5f613f27a_z.jpg',
  'height': 427,
  'id': 329004,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/157588',
  'date_captured': '2013-11-19 22:57:40',
  'file_name': 'COCO_train2014_000000157588.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8011/7544109410_9ab5708133_z.jpg',
  'height': 427,
  'id': 157588,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/230160',
  'date_captured': '2013-11-19 23:02:57',
  'file_name': 'COCO_train2014_000000230160.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5001/5362032654_b065f09eca_z.jpg',
  'height': 478,
  'id': 230160,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/330436',
  'date_captured': '2013-11-19 23:22:15',
  'file_name': 'COCO_train2014_000000330436.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2318/2507222236_d1c5475d87_z.jpg',
  'height': 427,
  'id': 330436,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/249141',
  'date_captured': '2013-11-19 23:31:57',
  'file_name': 'COCO_train2014_000000249141.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3482/3298972128_074ab8c8b0_z.jpg',
  'height': 375,
  'id': 249141,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/276749',
  'date_captured': '2013-11-19 23:36:49',
  'file_name': 'COCO_train2014_000000276749.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4119/4941479178_b09b140035_z.jpg',
  'height': 480,
  'id': 276749,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/420939',
  'date_captured': '2013-11-19 23:45:57',
  'file_name': 'COCO_train2014_000000420939.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4064/4626635631_d3888e5b80_z.jpg',
  'height': 480,
  'id': 420939,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/303923',
  'date_captured': '2013-11-19 23:46:00',
  'file_name': 'COCO_train2014_000000303923.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4030/4626635197_4b9cd4b5ef_z.jpg',
  'height': 480,
  'id': 303923,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/330187',
  'date_captured': '2013-11-19 23:46:02',
  'file_name': 'COCO_train2014_000000330187.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4068/4627243192_5609e51eb8_z.jpg',
  'height': 480,
  'id': 330187,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/17566',
  'date_captured': '2013-11-20 00:13:07',
  'file_name': 'COCO_train2014_000000017566.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3763/10143980286_5f938919fc_z.jpg',
  'height': 640,
  'id': 17566,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/175118',
  'date_captured': '2013-11-20 00:13:56',
  'file_name': 'COCO_train2014_000000175118.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5326/9667503984_9f95e4e6db_z.jpg',
  'height': 427,
  'id': 175118,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/80134',
  'date_captured': '2013-11-20 00:13:59',
  'file_name': 'COCO_train2014_000000080134.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3754/9664272351_896b249ac6_z.jpg',
  'height': 427,
  'id': 80134,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/395030',
  'date_captured': '2013-11-20 00:23:03',
  'file_name': 'COCO_train2014_000000395030.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6089/6118258971_bcbb6ff36c_z.jpg',
  'height': 480,
  'id': 395030,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/373511',
  'date_captured': '2013-11-20 00:28:01',
  'file_name': 'COCO_train2014_000000373511.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7258/7562571826_39d1a1cb69_z.jpg',
  'height': 640,
  'id': 373511,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/460408',
  'date_captured': '2013-11-20 00:28:22',
  'file_name': 'COCO_train2014_000000460408.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3112/2591938129_42b09b5ed4_z.jpg',
  'height': 480,
  'id': 460408,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/242709',
  'date_captured': '2013-11-20 00:28:27',
  'file_name': 'COCO_train2014_000000242709.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3188/2569605693_dfa93cb776_z.jpg',
  'height': 480,
  'id': 242709,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/74502',
  'date_captured': '2013-11-20 00:30:04',
  'file_name': 'COCO_train2014_000000074502.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3150/2550316529_b7ae0fb63d_z.jpg',
  'height': 480,
  'id': 74502,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/267540',
  'date_captured': '2013-11-20 00:30:07',
  'file_name': 'COCO_train2014_000000267540.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2355/2535657771_6d34f97871_z.jpg',
  'height': 480,
  'id': 267540,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/230892',
  'date_captured': '2013-11-20 00:30:49',
  'file_name': 'COCO_train2014_000000230892.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8427/7735408542_90a0281e31_z.jpg',
  'height': 428,
  'id': 230892,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/158514',
  'date_captured': '2013-11-20 00:33:14',
  'file_name': 'COCO_train2014_000000158514.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8008/7569733514_02e72533d4_z.jpg',
  'height': 480,
  'id': 158514,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/64897',
  'date_captured': '2013-11-20 00:36:39',
  'file_name': 'COCO_train2014_000000064897.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8249/8635413357_7c9b5021a4_z.jpg',
  'height': 424,
  'id': 64897,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/94885',
  'date_captured': '2013-11-20 00:38:19',
  'file_name': 'COCO_train2014_000000094885.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5320/5887092058_0bd51080f6_z.jpg',
  'height': 640,
  'id': 94885,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/310714',
  'date_captured': '2013-11-20 00:42:11',
  'file_name': 'COCO_train2014_000000310714.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8306/8019247041_926daf9f5c_z.jpg',
  'height': 383,
  'id': 310714,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/69081',
  'date_captured': '2013-11-20 00:46:20',
  'file_name': 'COCO_train2014_000000069081.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8326/8129406175_67d1de11f5_z.jpg',
  'height': 612,
  'id': 69081,
  'license': 4,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/183336',
  'date_captured': '2013-11-20 00:49:33',
  'file_name': 'COCO_train2014_000000183336.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5017/5552673678_763ef529fb_z.jpg',
  'height': 383,
  'id': 183336,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/139285',
  'date_captured': '2013-11-20 00:52:47',
  'file_name': 'COCO_train2014_000000139285.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7370/8722491204_864392e3d4_z.jpg',
  'height': 640,
  'id': 139285,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/548293',
  'date_captured': '2013-11-20 00:58:25',
  'file_name': 'COCO_train2014_000000548293.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8438/7888996200_712522caa5_z.jpg',
  'height': 640,
  'id': 548293,
  'license': 2,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/457514',
  'date_captured': '2013-11-20 01:04:05',
  'file_name': 'COCO_train2014_000000457514.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5452/6934887842_06fd4c3aae_z.jpg',
  'height': 427,
  'id': 457514,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/220232',
  'date_captured': '2013-11-20 01:04:10',
  'file_name': 'COCO_train2014_000000220232.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7254/6934887276_3e6c1a7d91_z.jpg',
  'height': 427,
  'id': 220232,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/46997',
  'date_captured': '2013-11-20 01:12:22',
  'file_name': 'COCO_train2014_000000046997.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3029/2900345784_80048dc291_z.jpg',
  'height': 480,
  'id': 46997,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/581662',
  'date_captured': '2013-11-20 01:12:52',
  'file_name': 'COCO_train2014_000000581662.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2202/2254022009_64712f6ce6_z.jpg',
  'height': 480,
  'id': 581662,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/299712',
  'date_captured': '2013-11-20 01:18:33',
  'file_name': 'COCO_train2014_000000299712.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5266/5872059915_0f63c26dca_z.jpg',
  'height': 640,
  'id': 299712,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/17153',
  'date_captured': '2013-11-20 01:22:43',
  'file_name': 'COCO_train2014_000000017153.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8349/8153388799_0e99189ca6_z.jpg',
  'height': 383,
  'id': 17153,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/471245',
  'date_captured': '2013-11-20 01:28:09',
  'file_name': 'COCO_train2014_000000471245.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2509/3922280340_d09af35238_z.jpg',
  'height': 375,
  'id': 471245,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/462908',
  'date_captured': '2013-11-20 01:28:38',
  'file_name': 'COCO_train2014_000000462908.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2728/4278019699_abfc1d1479_z.jpg',
  'height': 429,
  'id': 462908,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/68430',
  'date_captured': '2013-11-20 01:29:43',
  'file_name': 'COCO_train2014_000000068430.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4152/5180562425_cfc9daf3f6_z.jpg',
  'height': 640,
  'id': 68430,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/527344',
  'date_captured': '2013-11-20 02:05:58',
  'file_name': 'COCO_train2014_000000527344.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4018/4224366001_47be534841_z.jpg',
  'height': 480,
  'id': 527344,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/232123',
  'date_captured': '2013-11-20 02:25:53',
  'file_name': 'COCO_train2014_000000232123.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3488/3737548262_03e23192a4_z.jpg',
  'height': 480,
  'id': 232123,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/485526',
  'date_captured': '2013-11-20 03:14:38',
  'file_name': 'COCO_train2014_000000485526.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8110/8543048612_c67ac7230d_z.jpg',
  'height': 480,
  'id': 485526,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/454692',
  'date_captured': '2013-11-20 05:16:52',
  'file_name': 'COCO_train2014_000000454692.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4072/4260694781_767351843e_z.jpg',
  'height': 480,
  'id': 454692,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/350253',
  'date_captured': '2013-11-20 05:48:58',
  'file_name': 'COCO_train2014_000000350253.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3499/3265767053_ffd01ca968_z.jpg',
  'height': 480,
  'id': 350253,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/433830',
  'date_captured': '2013-11-20 05:59:51',
  'file_name': 'COCO_train2014_000000433830.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4030/4548524678_82da510394_z.jpg',
  'height': 427,
  'id': 433830,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/88572',
  'date_captured': '2013-11-20 05:59:55',
  'file_name': 'COCO_train2014_000000088572.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4015/4548540214_2fda800ee1_z.jpg',
  'height': 640,
  'id': 88572,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/27622',
  'date_captured': '2013-11-20 06:06:37',
  'file_name': 'COCO_train2014_000000027622.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7195/6957708593_e3778479c8_z.jpg',
  'height': 640,
  'id': 27622,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/382472',
  'date_captured': '2013-11-20 06:08:43',
  'file_name': 'COCO_train2014_000000382472.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2672/3867115324_3819b05b0b_z.jpg',
  'height': 480,
  'id': 382472,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/31187',
  'date_captured': '2013-11-20 06:09:42',
  'file_name': 'COCO_train2014_000000031187.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7206/6811599186_07ed1fa655_z.jpg',
  'height': 480,
  'id': 31187,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/336079',
  'date_captured': '2013-11-20 06:13:04',
  'file_name': 'COCO_train2014_000000336079.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2438/3734381134_d9d678cc4f_z.jpg',
  'height': 375,
  'id': 336079,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/413198',
  'date_captured': '2013-11-20 06:17:09',
  'file_name': 'COCO_train2014_000000413198.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3105/3146165704_2846f2b9fb_z.jpg',
  'height': 480,
  'id': 413198,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/232781',
  'date_captured': '2013-11-20 06:17:12',
  'file_name': 'COCO_train2014_000000232781.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3133/3189783518_480b478ec4_z.jpg',
  'height': 480,
  'id': 232781,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/27157',
  'date_captured': '2013-11-20 06:22:26',
  'file_name': 'COCO_train2014_000000027157.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4040/4320741178_0c94f6c606_z.jpg',
  'height': 480,
  'id': 27157,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/443869',
  'date_captured': '2013-11-20 07:45:51',
  'file_name': 'COCO_train2014_000000443869.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/104/278523440_f2dc960658_z.jpg',
  'height': 500,
  'id': 443869,
  'license': 3,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/112327',
  'date_captured': '2013-11-20 07:46:01',
  'file_name': 'COCO_train2014_000000112327.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/74/256157455_69db8c31ea_z.jpg',
  'height': 375,
  'id': 112327,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/146510',
  'date_captured': '2013-11-20 08:12:07',
  'file_name': 'COCO_train2014_000000146510.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5082/5223035549_387a59dd5d_z.jpg',
  'height': 480,
  'id': 146510,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/559925',
  'date_captured': '2013-11-20 08:36:03',
  'file_name': 'COCO_train2014_000000559925.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2581/3777448477_cde6410ee2_z.jpg',
  'height': 428,
  'id': 559925,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/529910',
  'date_captured': '2013-11-20 08:43:14',
  'file_name': 'COCO_train2014_000000529910.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3088/2320670248_af602c0d8c_z.jpg',
  'height': 439,
  'id': 529910,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/533784',
  'date_captured': '2013-11-20 08:44:11',
  'file_name': 'COCO_train2014_000000533784.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2049/2056082821_9d455be4e6_z.jpg',
  'height': 640,
  'id': 533784,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/301134',
  'date_captured': '2013-11-20 09:12:47',
  'file_name': 'COCO_train2014_000000301134.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3191/3013531829_cee02f98de_z.jpg',
  'height': 425,
  'id': 301134,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/438816',
  'date_captured': '2013-11-20 10:20:42',
  'file_name': 'COCO_train2014_000000438816.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3164/3004269974_d9063dcf88_z.jpg',
  'height': 427,
  'id': 438816,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/382069',
  'date_captured': '2013-11-20 10:36:04',
  'file_name': 'COCO_train2014_000000382069.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3174/3005581592_138ebcddaa_z.jpg',
  'height': 640,
  'id': 382069,
  'license': 1,
  'width': 486},
 {'coco_url': 'http://mscoco.org/images/460950',
  'date_captured': '2013-11-20 11:30:52',
  'file_name': 'COCO_train2014_000000460950.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3224/2874025765_7abeb00a41_z.jpg',
  'height': 480,
  'id': 460950,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/42519',
  'date_captured': '2013-11-20 11:36:01',
  'file_name': 'COCO_train2014_000000042519.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1323/532615161_31f4df6040_z.jpg',
  'height': 376,
  'id': 42519,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/559695',
  'date_captured': '2013-11-20 11:38:10',
  'file_name': 'COCO_train2014_000000559695.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7155/6567750427_fe17698b3f_z.jpg',
  'height': 427,
  'id': 559695,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/144666',
  'date_captured': '2013-11-20 11:50:05',
  'file_name': 'COCO_train2014_000000144666.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2386/5813500767_083be33d4b_z.jpg',
  'height': 640,
  'id': 144666,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/58677',
  'date_captured': '2013-11-20 11:50:08',
  'file_name': 'COCO_train2014_000000058677.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5528/9298728752_5191da3602_z.jpg',
  'height': 640,
  'id': 58677,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/10046',
  'date_captured': '2013-11-20 11:50:10',
  'file_name': 'COCO_train2014_000000010046.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7363/9675286251_78248282b6_z.jpg',
  'height': 480,
  'id': 10046,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/75170',
  'date_captured': '2013-11-20 11:50:12',
  'file_name': 'COCO_train2014_000000075170.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7347/9678517950_58712d59a8_z.jpg',
  'height': 480,
  'id': 75170,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/358828',
  'date_captured': '2013-11-20 12:00:35',
  'file_name': 'COCO_train2014_000000358828.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3129/2702814008_3838f68dfe_z.jpg',
  'height': 512,
  'id': 358828,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/239478',
  'date_captured': '2013-11-20 12:11:06',
  'file_name': 'COCO_train2014_000000239478.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3267/2659930414_f856f66b03_z.jpg',
  'height': 427,
  'id': 239478,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/110894',
  'date_captured': '2013-11-20 12:33:55',
  'file_name': 'COCO_train2014_000000110894.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4058/4404400777_b2f68ff71d_z.jpg',
  'height': 428,
  'id': 110894,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/333461',
  'date_captured': '2013-11-20 12:35:58',
  'file_name': 'COCO_train2014_000000333461.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6143/5974575521_27fa7abbbb_z.jpg',
  'height': 480,
  'id': 333461,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/579312',
  'date_captured': '2013-11-20 12:36:33',
  'file_name': 'COCO_train2014_000000579312.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3568/3577230129_f26ea4012f_z.jpg',
  'height': 640,
  'id': 579312,
  'license': 5,
  'width': 429},
 {'coco_url': 'http://mscoco.org/images/176726',
  'date_captured': '2013-11-20 12:37:34',
  'file_name': 'COCO_train2014_000000176726.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4123/4892089178_f4cb8b6c41_z.jpg',
  'height': 480,
  'id': 176726,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/5559',
  'date_captured': '2013-11-20 12:38:49',
  'file_name': 'COCO_train2014_000000005559.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5290/5272814402_d1ae4be1f3_z.jpg',
  'height': 426,
  'id': 5559,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/448069',
  'date_captured': '2013-11-20 12:46:15',
  'file_name': 'COCO_train2014_000000448069.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2696/4162940834_95c459f199_z.jpg',
  'height': 429,
  'id': 448069,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/395192',
  'date_captured': '2013-11-20 12:52:38',
  'file_name': 'COCO_train2014_000000395192.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2430/3808255724_f684588e3f_z.jpg',
  'height': 428,
  'id': 395192,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/118412',
  'date_captured': '2013-11-20 12:55:37',
  'file_name': 'COCO_train2014_000000118412.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4024/4251066142_0576915c98_z.jpg',
  'height': 375,
  'id': 118412,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/210810',
  'date_captured': '2013-11-20 13:03:09',
  'file_name': 'COCO_train2014_000000210810.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4048/4209762632_6f9a5fce12_z.jpg',
  'height': 360,
  'id': 210810,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/102630',
  'date_captured': '2013-11-20 13:03:15',
  'file_name': 'COCO_train2014_000000102630.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2703/4209010201_aa6b2c6087_z.jpg',
  'height': 360,
  'id': 102630,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/170193',
  'date_captured': '2013-11-20 13:03:50',
  'file_name': 'COCO_train2014_000000170193.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3325/3420440668_dec1e3b163_z.jpg',
  'height': 640,
  'id': 170193,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/204351',
  'date_captured': '2013-11-20 13:09:04',
  'file_name': 'COCO_train2014_000000204351.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2383/2145874266_eb72e0ec63_z.jpg',
  'height': 480,
  'id': 204351,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/368548',
  'date_captured': '2013-11-20 13:10:44',
  'file_name': 'COCO_train2014_000000368548.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3029/2782250421_e1969892ff_z.jpg',
  'height': 427,
  'id': 368548,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/48707',
  'date_captured': '2013-11-20 13:17:44',
  'file_name': 'COCO_train2014_000000048707.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2522/4085672622_ceb95de58b_z.jpg',
  'height': 429,
  'id': 48707,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/63378',
  'date_captured': '2013-11-20 13:17:47',
  'file_name': 'COCO_train2014_000000063378.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3453/3914978060_3c18ecc233_z.jpg',
  'height': 429,
  'id': 63378,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/58481',
  'date_captured': '2013-11-20 13:18:35',
  'file_name': 'COCO_train2014_000000058481.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3584/3376201505_eb18a97d3e_z.jpg',
  'height': 500,
  'id': 58481,
  'license': 3,
  'width': 332},
 {'coco_url': 'http://mscoco.org/images/492642',
  'date_captured': '2013-11-20 13:19:59',
  'file_name': 'COCO_train2014_000000492642.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1212/919028176_8c7a3c8f9a_z.jpg',
  'height': 480,
  'id': 492642,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/475142',
  'date_captured': '2013-11-20 13:38:31',
  'file_name': 'COCO_train2014_000000475142.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8229/8455419604_e8458f5173_z.jpg',
  'height': 640,
  'id': 475142,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/408219',
  'date_captured': '2013-11-20 14:04:18',
  'file_name': 'COCO_train2014_000000408219.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3231/3154510466_85f07b485d_z.jpg',
  'height': 640,
  'id': 408219,
  'license': 5,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/120159',
  'date_captured': '2013-11-20 14:09:43',
  'file_name': 'COCO_train2014_000000120159.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8110/8538341386_e496bb8e79_z.jpg',
  'height': 640,
  'id': 120159,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/248002',
  'date_captured': '2013-11-20 14:09:58',
  'file_name': 'COCO_train2014_000000248002.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5260/5521518649_8637e0fd0a_z.jpg',
  'height': 426,
  'id': 248002,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/340674',
  'date_captured': '2013-11-20 14:12:08',
  'file_name': 'COCO_train2014_000000340674.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8263/8642465350_a74534d9e2_z.jpg',
  'height': 640,
  'id': 340674,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/490385',
  'date_captured': '2013-11-20 14:16:08',
  'file_name': 'COCO_train2014_000000490385.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7370/9540852059_03c491933b_z.jpg',
  'height': 480,
  'id': 490385,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/439518',
  'date_captured': '2013-11-20 14:16:11',
  'file_name': 'COCO_train2014_000000439518.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5441/9545392394_500e002523_z.jpg',
  'height': 480,
  'id': 439518,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/27627',
  'date_captured': '2013-11-20 14:16:55',
  'file_name': 'COCO_train2014_000000027627.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3818/8759945121_b6a3772de4_z.jpg',
  'height': 480,
  'id': 27627,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/403463',
  'date_captured': '2013-11-20 14:33:10',
  'file_name': 'COCO_train2014_000000403463.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8203/8189685336_3460c5b6e2_z.jpg',
  'height': 383,
  'id': 403463,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/77444',
  'date_captured': '2013-11-20 14:33:13',
  'file_name': 'COCO_train2014_000000077444.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8342/8189686212_ce785ff354_z.jpg',
  'height': 383,
  'id': 77444,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/51396',
  'date_captured': '2013-11-20 14:35:51',
  'file_name': 'COCO_train2014_000000051396.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2345/2056853200_a4739c2556_z.jpg',
  'height': 427,
  'id': 51396,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/147961',
  'date_captured': '2013-11-20 14:53:07',
  'file_name': 'COCO_train2014_000000147961.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4018/5144911388_95f8b57be9_z.jpg',
  'height': 429,
  'id': 147961,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/343201',
  'date_captured': '2013-11-20 14:55:49',
  'file_name': 'COCO_train2014_000000343201.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5082/5292869658_0d2580bae7_z.jpg',
  'height': 478,
  'id': 343201,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/320471',
  'date_captured': '2013-11-20 15:02:26',
  'file_name': 'COCO_train2014_000000320471.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3178/2550157146_5a5b0dbbb6_z.jpg',
  'height': 480,
  'id': 320471,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/370537',
  'date_captured': '2013-11-20 15:04:35',
  'file_name': 'COCO_train2014_000000370537.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8171/8022383074_aae4b38684_z.jpg',
  'height': 429,
  'id': 370537,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/380520',
  'date_captured': '2013-11-20 15:05:29',
  'file_name': 'COCO_train2014_000000380520.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4064/4541003513_d901656e33_z.jpg',
  'height': 640,
  'id': 380520,
  'license': 2,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/343655',
  'date_captured': '2013-11-20 15:07:16',
  'file_name': 'COCO_train2014_000000343655.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7157/6782615563_1c61de922e_z.jpg',
  'height': 426,
  'id': 343655,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/230537',
  'date_captured': '2013-11-20 15:10:40',
  'file_name': 'COCO_train2014_000000230537.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7020/6479015861_19360ff1c6_z.jpg',
  'height': 640,
  'id': 230537,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/339579',
  'date_captured': '2013-11-20 15:18:20',
  'file_name': 'COCO_train2014_000000339579.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7021/6435727391_58e41b665d_z.jpg',
  'height': 640,
  'id': 339579,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/223595',
  'date_captured': '2013-11-20 15:29:20',
  'file_name': 'COCO_train2014_000000223595.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8018/7465775356_00002f083d_z.jpg',
  'height': 426,
  'id': 223595,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/498722',
  'date_captured': '2013-11-20 15:31:18',
  'file_name': 'COCO_train2014_000000498722.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5228/5645602614_ebce9a91de_z.jpg',
  'height': 383,
  'id': 498722,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/471762',
  'date_captured': '2013-11-20 15:36:20',
  'file_name': 'COCO_train2014_000000471762.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2781/4481795481_a11813054a_z.jpg',
  'height': 427,
  'id': 471762,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/277857',
  'date_captured': '2013-11-20 16:10:04',
  'file_name': 'COCO_train2014_000000277857.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5048/5332130142_bcd343cc69_z.jpg',
  'height': 429,
  'id': 277857,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/465829',
  'date_captured': '2013-11-20 16:10:56',
  'file_name': 'COCO_train2014_000000465829.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1153/536495470_a57dd10858_z.jpg',
  'height': 480,
  'id': 465829,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/282514',
  'date_captured': '2013-11-20 16:11:17',
  'file_name': 'COCO_train2014_000000282514.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1177/932082106_57284c7660_z.jpg',
  'height': 432,
  'id': 282514,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/29813',
  'date_captured': '2013-11-20 16:11:49',
  'file_name': 'COCO_train2014_000000029813.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1112/1300631288_e8a5063b68_z.jpg',
  'height': 375,
  'id': 29813,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/405013',
  'date_captured': '2013-11-20 16:31:48',
  'file_name': 'COCO_train2014_000000405013.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7355/9377629034_b56eba8e58_z.jpg',
  'height': 480,
  'id': 405013,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/4172',
  'date_captured': '2013-11-20 16:43:02',
  'file_name': 'COCO_train2014_000000004172.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5269/5578453841_be4cd3b9a3_z.jpg',
  'height': 427,
  'id': 4172,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/491107',
  'date_captured': '2013-11-20 16:54:37',
  'file_name': 'COCO_train2014_000000491107.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2706/4280976539_ca009e86ed_z.jpg',
  'height': 480,
  'id': 491107,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/246120',
  'date_captured': '2013-11-20 16:58:12',
  'file_name': 'COCO_train2014_000000246120.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3306/3441611386_207b57bb15_z.jpg',
  'height': 640,
  'id': 246120,
  'license': 1,
  'width': 360},
 {'coco_url': 'http://mscoco.org/images/577022',
  'date_captured': '2013-11-20 16:58:15',
  'file_name': 'COCO_train2014_000000577022.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3366/3440798135_3aac6e8dac_z.jpg',
  'height': 360,
  'id': 577022,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/147914',
  'date_captured': '2013-11-20 17:15:43',
  'file_name': 'COCO_train2014_000000147914.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/118/297986755_ea49c9f6b6_z.jpg',
  'height': 375,
  'id': 147914,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/81981',
  'date_captured': '2013-11-20 17:27:24',
  'file_name': 'COCO_train2014_000000081981.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5093/5396763976_415e13f4af_z.jpg',
  'height': 429,
  'id': 81981,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/540679',
  'date_captured': '2013-11-20 17:27:44',
  'file_name': 'COCO_train2014_000000540679.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2573/3900459778_eb9ab190e1_z.jpg',
  'height': 429,
  'id': 540679,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/23451',
  'date_captured': '2013-11-20 17:28:48',
  'file_name': 'COCO_train2014_000000023451.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2833/9765458514_693d99ddf8_z.jpg',
  'height': 424,
  'id': 23451,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/254948',
  'date_captured': '2013-11-20 17:29:16',
  'file_name': 'COCO_train2014_000000254948.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2016/2278044118_4773653957_z.jpg',
  'height': 427,
  'id': 254948,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/441883',
  'date_captured': '2013-11-20 17:36:07',
  'file_name': 'COCO_train2014_000000441883.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2625/4250491940_7590db0bdb_z.jpg',
  'height': 375,
  'id': 441883,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/476537',
  'date_captured': '2013-11-20 17:51:22',
  'file_name': 'COCO_train2014_000000476537.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8477/8249827980_8391d958ec_z.jpg',
  'height': 640,
  'id': 476537,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/390923',
  'date_captured': '2013-11-20 17:55:00',
  'file_name': 'COCO_train2014_000000390923.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8468/8398570980_eb8de82f23_z.jpg',
  'height': 640,
  'id': 390923,
  'license': 6,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/460617',
  'date_captured': '2013-11-20 17:55:49',
  'file_name': 'COCO_train2014_000000460617.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7291/8742319304_9d3123309e_z.jpg',
  'height': 428,
  'id': 460617,
  'license': 6,
  'width': 600},
 {'coco_url': 'http://mscoco.org/images/80123',
  'date_captured': '2013-11-20 17:56:41',
  'file_name': 'COCO_train2014_000000080123.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8090/8397463641_27c317fb4c_z.jpg',
  'height': 600,
  'id': 80123,
  'license': 6,
  'width': 449},
 {'coco_url': 'http://mscoco.org/images/117677',
  'date_captured': '2013-11-20 17:58:55',
  'file_name': 'COCO_train2014_000000117677.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7112/7416775630_110f7623e6_z.jpg',
  'height': 429,
  'id': 117677,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/481736',
  'date_captured': '2013-11-20 18:02:36',
  'file_name': 'COCO_train2014_000000481736.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3546/3843689769_cfbb6f3629_z.jpg',
  'height': 427,
  'id': 481736,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/571451',
  'date_captured': '2013-11-20 18:08:25',
  'file_name': 'COCO_train2014_000000571451.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2449/3579830396_0509efb001_z.jpg',
  'height': 375,
  'id': 571451,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/235652',
  'date_captured': '2013-11-20 18:15:07',
  'file_name': 'COCO_train2014_000000235652.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8191/8133059737_108a67a33a_z.jpg',
  'height': 480,
  'id': 235652,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/338989',
  'date_captured': '2013-11-20 18:18:34',
  'file_name': 'COCO_train2014_000000338989.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8320/8051967416_1d43f188e6_z.jpg',
  'height': 424,
  'id': 338989,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/505625',
  'date_captured': '2013-11-20 18:18:41',
  'file_name': 'COCO_train2014_000000505625.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1274/924521466_8633ea919b_z.jpg',
  'height': 480,
  'id': 505625,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/432144',
  'date_captured': '2013-11-20 18:27:43',
  'file_name': 'COCO_train2014_000000432144.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2456/3749373352_7e4589c16a_z.jpg',
  'height': 429,
  'id': 432144,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/82858',
  'date_captured': '2013-11-20 18:28:38',
  'file_name': 'COCO_train2014_000000082858.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2675/3748584639_d857010b23_z.jpg',
  'height': 429,
  'id': 82858,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/146249',
  'date_captured': '2013-11-20 18:40:46',
  'file_name': 'COCO_train2014_000000146249.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5209/5291941644_f945c07a58_z.jpg',
  'height': 383,
  'id': 146249,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/172420',
  'date_captured': '2013-11-20 18:51:38',
  'file_name': 'COCO_train2014_000000172420.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3277/3042701853_476c536eea_z.jpg',
  'height': 480,
  'id': 172420,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/225562',
  'date_captured': '2013-11-20 19:02:45',
  'file_name': 'COCO_train2014_000000225562.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4072/4590297384_b4d283196b_z.jpg',
  'height': 640,
  'id': 225562,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/211955',
  'date_captured': '2013-11-20 19:07:05',
  'file_name': 'COCO_train2014_000000211955.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3483/3917091773_a5d60bdaba_z.jpg',
  'height': 400,
  'id': 211955,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/180002',
  'date_captured': '2013-11-20 19:18:03',
  'file_name': 'COCO_train2014_000000180002.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2609/3986835627_09cb2f4e8b_z.jpg',
  'height': 427,
  'id': 180002,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/339603',
  'date_captured': '2013-11-20 19:18:08',
  'file_name': 'COCO_train2014_000000339603.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2509/3840757330_0500fddc24_z.jpg',
  'height': 427,
  'id': 339603,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/287084',
  'date_captured': '2013-11-20 19:18:14',
  'file_name': 'COCO_train2014_000000287084.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3452/3986834413_4a79056eea_z.jpg',
  'height': 427,
  'id': 287084,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/198240',
  'date_captured': '2013-11-20 19:19:59',
  'file_name': 'COCO_train2014_000000198240.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1195/1399269933_e6b3408124_z.jpg',
  'height': 424,
  'id': 198240,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/534925',
  'date_captured': '2013-11-20 19:24:15',
  'file_name': 'COCO_train2014_000000534925.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8440/8014573364_9e1ae70d16_z.jpg',
  'height': 383,
  'id': 534925,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/9658',
  'date_captured': '2013-11-20 19:24:38',
  'file_name': 'COCO_train2014_000000009658.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3049/2590022828_40bc88747b_z.jpg',
  'height': 500,
  'id': 9658,
  'license': 3,
  'width': 333},
 {'coco_url': 'http://mscoco.org/images/267612',
  'date_captured': '2013-11-20 19:24:40',
  'file_name': 'COCO_train2014_000000267612.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3285/2592416211_efcb0758e0_z.jpg',
  'height': 333,
  'id': 267612,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/444308',
  'date_captured': '2013-11-20 19:24:43',
  'file_name': 'COCO_train2014_000000444308.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3259/2593317374_3cf96fddd5_z.jpg',
  'height': 333,
  'id': 444308,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/261432',
  'date_captured': '2013-11-20 19:25:47',
  'file_name': 'COCO_train2014_000000261432.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3209/2593242264_184eb1f2a3_z.jpg',
  'height': 333,
  'id': 261432,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/315466',
  'date_captured': '2013-11-20 19:25:49',
  'file_name': 'COCO_train2014_000000315466.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3268/2606754283_9e1b74e6b3_z.jpg',
  'height': 335,
  'id': 315466,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/436391',
  'date_captured': '2013-11-20 19:28:33',
  'file_name': 'COCO_train2014_000000436391.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3264/2590426890_4e9205c786_z.jpg',
  'height': 333,
  'id': 436391,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/317216',
  'date_captured': '2013-11-20 19:38:44',
  'file_name': 'COCO_train2014_000000317216.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3727/9952159294_377e7e868c_z.jpg',
  'height': 427,
  'id': 317216,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/42297',
  'date_captured': '2013-11-20 19:43:54',
  'file_name': 'COCO_train2014_000000042297.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7411/9976500876_a23ae15106_z.jpg',
  'height': 424,
  'id': 42297,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/248580',
  'date_captured': '2013-11-20 19:47:31',
  'file_name': 'COCO_train2014_000000248580.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7359/10015046394_275470732c_z.jpg',
  'height': 372,
  'id': 248580,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/116268',
  'date_captured': '2013-11-20 19:52:22',
  'file_name': 'COCO_train2014_000000116268.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5502/9534460147_f37b021a47_z.jpg',
  'height': 640,
  'id': 116268,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/91697',
  'date_captured': '2013-11-20 19:56:36',
  'file_name': 'COCO_train2014_000000091697.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8258/8624444925_3db35b50a7_z.jpg',
  'height': 427,
  'id': 91697,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/460240',
  'date_captured': '2013-11-20 20:03:46',
  'file_name': 'COCO_train2014_000000460240.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2892/9361046418_bdb790fe50_z.jpg',
  'height': 480,
  'id': 460240,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/496039',
  'date_captured': '2013-11-20 20:08:06',
  'file_name': 'COCO_train2014_000000496039.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3819/8937002860_7625cfc003_z.jpg',
  'height': 363,
  'id': 496039,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/84391',
  'date_captured': '2013-11-20 20:11:13',
  'file_name': 'COCO_train2014_000000084391.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1420/543023771_46a976f4cf_z.jpg',
  'height': 333,
  'id': 84391,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/256475',
  'date_captured': '2013-11-20 20:11:14',
  'file_name': 'COCO_train2014_000000256475.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7365/8947078871_3ab16e5964_z.jpg',
  'height': 427,
  'id': 256475,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/424536',
  'date_captured': '2013-11-20 20:11:56',
  'file_name': 'COCO_train2014_000000424536.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3774/8935481039_603e0e238f_z.jpg',
  'height': 427,
  'id': 424536,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/116723',
  'date_captured': '2013-11-20 20:13:30',
  'file_name': 'COCO_train2014_000000116723.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5447/8935482840_d4eda04a7e_z.jpg',
  'height': 427,
  'id': 116723,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/288662',
  'date_captured': '2013-11-20 20:13:33',
  'file_name': 'COCO_train2014_000000288662.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3763/8940996449_c1095c82a7_z.jpg',
  'height': 427,
  'id': 288662,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/496530',
  'date_captured': '2013-11-20 20:13:37',
  'file_name': 'COCO_train2014_000000496530.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8259/8941289303_c69983e2d9_z.jpg',
  'height': 427,
  'id': 496530,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/436830',
  'date_captured': '2013-11-20 20:16:51',
  'file_name': 'COCO_train2014_000000436830.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3813/9096590889_3e6d65a671_z.jpg',
  'height': 424,
  'id': 436830,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/319645',
  'date_captured': '2013-11-20 20:24:05',
  'file_name': 'COCO_train2014_000000319645.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7330/9064105056_e5f0330da7_z.jpg',
  'height': 424,
  'id': 319645,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/556620',
  'date_captured': '2013-11-20 20:38:39',
  'file_name': 'COCO_train2014_000000556620.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8497/8304806979_eb7f4e4609_z.jpg',
  'height': 433,
  'id': 556620,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/452177',
  'date_captured': '2013-11-20 21:08:24',
  'file_name': 'COCO_train2014_000000452177.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8520/8573097377_6b99b1bcec_z.jpg',
  'height': 424,
  'id': 452177,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/470025',
  'date_captured': '2013-11-20 21:08:27',
  'file_name': 'COCO_train2014_000000470025.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8515/8575896093_11037936cf_z.jpg',
  'height': 424,
  'id': 470025,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/436596',
  'date_captured': '2013-11-20 21:18:49',
  'file_name': 'COCO_train2014_000000436596.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8495/8421805859_157273aeb6_z.jpg',
  'height': 427,
  'id': 436596,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/1261',
  'date_captured': '2013-11-20 21:50:52',
  'file_name': 'COCO_train2014_000000001261.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8205/8237881890_52891af127_z.jpg',
  'height': 480,
  'id': 1261,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/571031',
  'date_captured': '2013-11-20 22:06:57',
  'file_name': 'COCO_train2014_000000571031.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2495/4154945862_cf17378226_z.jpg',
  'height': 480,
  'id': 571031,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/96496',
  'date_captured': '2013-11-20 22:07:27',
  'file_name': 'COCO_train2014_000000096496.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8333/8136386218_921d1b5be9_z.jpg',
  'height': 424,
  'id': 96496,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/501204',
  'date_captured': '2013-11-20 22:10:33',
  'file_name': 'COCO_train2014_000000501204.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8177/8060273352_3646f0164c_z.jpg',
  'height': 426,
  'id': 501204,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/78859',
  'date_captured': '2013-11-20 22:20:45',
  'file_name': 'COCO_train2014_000000078859.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8449/7954939410_228e4ee688_z.jpg',
  'height': 383,
  'id': 78859,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/390782',
  'date_captured': '2013-11-20 22:45:14',
  'file_name': 'COCO_train2014_000000390782.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2071/2204523202_0db974b590_z.jpg',
  'height': 640,
  'id': 390782,
  'license': 3,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/382997',
  'date_captured': '2013-11-20 23:03:37',
  'file_name': 'COCO_train2014_000000382997.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8161/7594393060_b43e1b3468_z.jpg',
  'height': 383,
  'id': 382997,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/182612',
  'date_captured': '2013-11-20 23:12:43',
  'file_name': 'COCO_train2014_000000182612.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5016/5536663925_1ea3fdbd77_z.jpg',
  'height': 640,
  'id': 182612,
  'license': 1,
  'width': 478},
 {'coco_url': 'http://mscoco.org/images/336763',
  'date_captured': '2013-11-20 23:15:43',
  'file_name': 'COCO_train2014_000000336763.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2327/2172639099_af25357369_z.jpg',
  'height': 500,
  'id': 336763,
  'license': 2,
  'width': 390},
 {'coco_url': 'http://mscoco.org/images/163089',
  'date_captured': '2013-11-20 23:16:22',
  'file_name': 'COCO_train2014_000000163089.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2015/1893066835_1b62693d98_z.jpg',
  'height': 429,
  'id': 163089,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/57810',
  'date_captured': '2013-11-20 23:16:28',
  'file_name': 'COCO_train2014_000000057810.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2409/1749331869_2ca09748c6_z.jpg',
  'height': 427,
  'id': 57810,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/444171',
  'date_captured': '2013-11-20 23:16:49',
  'file_name': 'COCO_train2014_000000444171.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5008/5231894651_335ea52914_z.jpg',
  'height': 427,
  'id': 444171,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/277393',
  'date_captured': '2013-11-20 23:17:55',
  'file_name': 'COCO_train2014_000000277393.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8164/7478834734_38ec1cd5d5_z.jpg',
  'height': 640,
  'id': 277393,
  'license': 1,
  'width': 429},
 {'coco_url': 'http://mscoco.org/images/361397',
  'date_captured': '2013-11-20 23:24:12',
  'file_name': 'COCO_train2014_000000361397.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5238/7422684886_b03e1bece0_z.jpg',
  'height': 640,
  'id': 361397,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/318162',
  'date_captured': '2013-11-20 23:28:40',
  'file_name': 'COCO_train2014_000000318162.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5122/5233781819_ddd0d9606c_z.jpg',
  'height': 480,
  'id': 318162,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/397877',
  'date_captured': '2013-11-20 23:37:44',
  'file_name': 'COCO_train2014_000000397877.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5288/5232661267_331acf5d54_z.jpg',
  'height': 640,
  'id': 397877,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/285891',
  'date_captured': '2013-11-20 23:39:01',
  'file_name': 'COCO_train2014_000000285891.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8141/7640723682_e45033ac22_z.jpg',
  'height': 424,
  'id': 285891,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/537371',
  'date_captured': '2013-11-20 23:39:55',
  'file_name': 'COCO_train2014_000000537371.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2619/4105248370_728b13ee8d_z.jpg',
  'height': 429,
  'id': 537371,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/60402',
  'date_captured': '2013-11-20 23:43:42',
  'file_name': 'COCO_train2014_000000060402.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2260/2052182004_c589490a8b_z.jpg',
  'height': 480,
  'id': 60402,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/141941',
  'date_captured': '2013-11-20 23:45:19',
  'file_name': 'COCO_train2014_000000141941.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8520/8605157353_c9a889f04f_z.jpg',
  'height': 288,
  'id': 141941,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/427842',
  'date_captured': '2013-11-20 23:46:35',
  'file_name': 'COCO_train2014_000000427842.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3251/3088585299_d9073d37a4_z.jpg',
  'height': 640,
  'id': 427842,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/414314',
  'date_captured': '2013-11-20 23:48:26',
  'file_name': 'COCO_train2014_000000414314.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7169/6690627013_b879bd3a11_z.jpg',
  'height': 391,
  'id': 414314,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/307299',
  'date_captured': '2013-11-20 23:51:03',
  'file_name': 'COCO_train2014_000000307299.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5307/5599536739_d6289a5ff4_z.jpg',
  'height': 383,
  'id': 307299,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/505234',
  'date_captured': '2013-11-20 23:51:22',
  'file_name': 'COCO_train2014_000000505234.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2294/2521063254_982bc459d3_z.jpg',
  'height': 424,
  'id': 505234,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/541298',
  'date_captured': '2013-11-20 23:56:25',
  'file_name': 'COCO_train2014_000000541298.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8353/8438407218_c4075751ca_z.jpg',
  'height': 640,
  'id': 541298,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/536641',
  'date_captured': '2013-11-20 23:56:33',
  'file_name': 'COCO_train2014_000000536641.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5208/5381544101_c3b2a47885_z.jpg',
  'height': 480,
  'id': 536641,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/191175',
  'date_captured': '2013-11-20 23:58:32',
  'file_name': 'COCO_train2014_000000191175.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4023/4693981875_523dd401c2_z.jpg',
  'height': 429,
  'id': 191175,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/566704',
  'date_captured': '2013-11-21 00:04:00',
  'file_name': 'COCO_train2014_000000566704.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7451/9858060155_c36532bfc0_z.jpg',
  'height': 375,
  'id': 566704,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/32626',
  'date_captured': '2013-11-21 00:12:04',
  'file_name': 'COCO_train2014_000000032626.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2589/3703031008_57e47a2640_z.jpg',
  'height': 640,
  'id': 32626,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/281122',
  'date_captured': '2013-11-21 00:21:05',
  'file_name': 'COCO_train2014_000000281122.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/138/325469742_3d4e1c02ff_z.jpg',
  'height': 640,
  'id': 281122,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/307758',
  'date_captured': '2013-11-21 00:26:39',
  'file_name': 'COCO_train2014_000000307758.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6118/6223194366_3125f61081_z.jpg',
  'height': 480,
  'id': 307758,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/142565',
  'date_captured': '2013-11-21 00:28:48',
  'file_name': 'COCO_train2014_000000142565.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8363/8352212112_e42ea54b0b_z.jpg',
  'height': 640,
  'id': 142565,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/244615',
  'date_captured': '2013-11-21 00:31:35',
  'file_name': 'COCO_train2014_000000244615.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4111/5086278410_0d17983650_z.jpg',
  'height': 429,
  'id': 244615,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/379399',
  'date_captured': '2013-11-21 00:35:57',
  'file_name': 'COCO_train2014_000000379399.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8246/8453386705_6f35988f3f_z.jpg',
  'height': 640,
  'id': 379399,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/564781',
  'date_captured': '2013-11-21 00:42:24',
  'file_name': 'COCO_train2014_000000564781.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3286/2745637147_39d2a073a1_z.jpg',
  'height': 640,
  'id': 564781,
  'license': 4,
  'width': 428},
 {'coco_url': 'http://mscoco.org/images/371991',
  'date_captured': '2013-11-21 00:51:57',
  'file_name': 'COCO_train2014_000000371991.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4055/4266192911_0e675886d8_z.jpg',
  'height': 500,
  'id': 371991,
  'license': 1,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/525698',
  'date_captured': '2013-11-21 00:52:13',
  'file_name': 'COCO_train2014_000000525698.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5038/5839434062_1b983a725b_z.jpg',
  'height': 429,
  'id': 525698,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/287867',
  'date_captured': '2013-11-21 00:52:23',
  'file_name': 'COCO_train2014_000000287867.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3115/4605261366_05e9bb6826_z.jpg',
  'height': 428,
  'id': 287867,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/126323',
  'date_captured': '2013-11-21 00:52:31',
  'file_name': 'COCO_train2014_000000126323.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3474/5838883081_11c00db04d_z.jpg',
  'height': 429,
  'id': 126323,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/338964',
  'date_captured': '2013-11-21 00:52:33',
  'file_name': 'COCO_train2014_000000338964.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3140/5838883683_3ea7ce9ed1_z.jpg',
  'height': 429,
  'id': 338964,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/620',
  'date_captured': '2013-11-21 00:57:20',
  'file_name': 'COCO_train2014_000000000620.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2466/4258218928_0912c4b7c8_z.jpg',
  'height': 640,
  'id': 620,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/4260',
  'date_captured': '2013-11-21 01:06:09',
  'file_name': 'COCO_train2014_000000004260.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3757/9629586928_3290fdfe2e_z.jpg',
  'height': 480,
  'id': 4260,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/553278',
  'date_captured': '2013-11-21 01:06:12',
  'file_name': 'COCO_train2014_000000553278.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2875/10200057196_8decc66475_z.jpg',
  'height': 480,
  'id': 553278,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/459899',
  'date_captured': '2013-11-21 01:06:15',
  'file_name': 'COCO_train2014_000000459899.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2848/9711093937_9fbc8486f2_z.jpg',
  'height': 424,
  'id': 459899,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/43264',
  'date_captured': '2013-11-21 01:09:04',
  'file_name': 'COCO_train2014_000000043264.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7260/7823088054_e48c69cbd9_z.jpg',
  'height': 480,
  'id': 43264,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/167300',
  'date_captured': '2013-11-21 01:09:08',
  'file_name': 'COCO_train2014_000000167300.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8447/7823089608_887c6fa199_z.jpg',
  'height': 480,
  'id': 167300,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/322080',
  'date_captured': '2013-11-21 01:11:52',
  'file_name': 'COCO_train2014_000000322080.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3679/9780675665_614c6eb13d_z.jpg',
  'height': 612,
  'id': 322080,
  'license': 2,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/435718',
  'date_captured': '2013-11-21 01:18:31',
  'file_name': 'COCO_train2014_000000435718.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5287/5341491559_d62884d80c_z.jpg',
  'height': 388,
  'id': 435718,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/270195',
  'date_captured': '2013-11-21 01:31:28',
  'file_name': 'COCO_train2014_000000270195.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8123/8683591922_75613cd453_z.jpg',
  'height': 424,
  'id': 270195,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/385882',
  'date_captured': '2013-11-21 01:36:07',
  'file_name': 'COCO_train2014_000000385882.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7283/8743204802_3f39fa9e8a_z.jpg',
  'height': 612,
  'id': 385882,
  'license': 6,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/193471',
  'date_captured': '2013-11-21 01:50:20',
  'file_name': 'COCO_train2014_000000193471.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8242/8481096180_48c14e2869_z.jpg',
  'height': 480,
  'id': 193471,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/289282',
  'date_captured': '2013-11-21 01:51:19',
  'file_name': 'COCO_train2014_000000289282.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8529/8469733985_22017e52ec_z.jpg',
  'height': 480,
  'id': 289282,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/375926',
  'date_captured': '2013-11-21 01:53:45',
  'file_name': 'COCO_train2014_000000375926.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8490/8242711331_f14dbffdce_z.jpg',
  'height': 424,
  'id': 375926,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/531337',
  'date_captured': '2013-11-21 01:55:31',
  'file_name': 'COCO_train2014_000000531337.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8487/8234972316_bd10dcf1c6_z.jpg',
  'height': 480,
  'id': 531337,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/253577',
  'date_captured': '2013-11-21 01:58:03',
  'file_name': 'COCO_train2014_000000253577.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8484/8274579444_d87b7272a2_z.jpg',
  'height': 359,
  'id': 253577,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/546311',
  'date_captured': '2013-11-21 02:09:50',
  'file_name': 'COCO_train2014_000000546311.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8038/8026779869_972f950d56_z.jpg',
  'height': 640,
  'id': 546311,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/353754',
  'date_captured': '2013-11-21 02:11:03',
  'file_name': 'COCO_train2014_000000353754.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3753/9493386300_dd71e77310_z.jpg',
  'height': 427,
  'id': 353754,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/170601',
  'date_captured': '2013-11-21 02:11:07',
  'file_name': 'COCO_train2014_000000170601.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7385/9490677751_0a837cbeae_z.jpg',
  'height': 640,
  'id': 170601,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/39758',
  'date_captured': '2013-11-21 02:14:43',
  'file_name': 'COCO_train2014_000000039758.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8282/7801603592_a6854dc56c_z.jpg',
  'height': 383,
  'id': 39758,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/181628',
  'date_captured': '2013-11-21 02:16:13',
  'file_name': 'COCO_train2014_000000181628.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4006/4484188775_270c7fbfcc_z.jpg',
  'height': 640,
  'id': 181628,
  'license': 3,
  'width': 431},
 {'coco_url': 'http://mscoco.org/images/365135',
  'date_captured': '2013-11-21 02:25:19',
  'file_name': 'COCO_train2014_000000365135.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8028/7379329332_efb18259b7_z.jpg',
  'height': 429,
  'id': 365135,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/496517',
  'date_captured': '2013-11-21 02:28:10',
  'file_name': 'COCO_train2014_000000496517.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5510/9485399291_3ae83b1269_z.jpg',
  'height': 480,
  'id': 496517,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/204463',
  'date_captured': '2013-11-21 02:34:52',
  'file_name': 'COCO_train2014_000000204463.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7092/7282760890_8efbc2bef4_z.jpg',
  'height': 429,
  'id': 204463,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/406386',
  'date_captured': '2013-11-21 02:46:26',
  'file_name': 'COCO_train2014_000000406386.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7176/6965959117_910a9f2018_z.jpg',
  'height': 429,
  'id': 406386,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/512786',
  'date_captured': '2013-11-21 03:06:20',
  'file_name': 'COCO_train2014_000000512786.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3604/3405847614_6ca57cc65f_z.jpg',
  'height': 500,
  'id': 512786,
  'license': 1,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/337819',
  'date_captured': '2013-11-21 03:16:01',
  'file_name': 'COCO_train2014_000000337819.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6239/6333515989_d9f86f2920_z.jpg',
  'height': 383,
  'id': 337819,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/229193',
  'date_captured': '2013-11-21 03:22:31',
  'file_name': 'COCO_train2014_000000229193.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6180/6168111011_4c16689c36_z.jpg',
  'height': 640,
  'id': 229193,
  'license': 1,
  'width': 429},
 {'coco_url': 'http://mscoco.org/images/359059',
  'date_captured': '2013-11-21 04:09:47',
  'file_name': 'COCO_train2014_000000359059.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5102/5671728850_e899c962c2_z.jpg',
  'height': 383,
  'id': 359059,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/160940',
  'date_captured': '2013-11-21 04:22:15',
  'file_name': 'COCO_train2014_000000160940.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4101/5605039710_338397884f_z.jpg',
  'height': 640,
  'id': 160940,
  'license': 1,
  'width': 383},
 {'coco_url': 'http://mscoco.org/images/508821',
  'date_captured': '2013-11-21 04:29:26',
  'file_name': 'COCO_train2014_000000508821.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5300/5508947855_29596886ea_z.jpg',
  'height': 480,
  'id': 508821,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/235795',
  'date_captured': '2013-11-21 04:54:26',
  'file_name': 'COCO_train2014_000000235795.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1202/5150527471_98579658fe_z.jpg',
  'height': 429,
  'id': 235795,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/543534',
  'date_captured': '2013-11-21 04:54:28',
  'file_name': 'COCO_train2014_000000543534.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4013/5150527573_0449c8b69c_z.jpg',
  'height': 429,
  'id': 543534,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/579042',
  'date_captured': '2013-11-21 04:57:58',
  'file_name': 'COCO_train2014_000000579042.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1213/5177477436_756f3212b8_z.jpg',
  'height': 640,
  'id': 579042,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/247224',
  'date_captured': '2013-11-21 04:58:10',
  'file_name': 'COCO_train2014_000000247224.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4083/5173391377_aba1307cae_z.jpg',
  'height': 426,
  'id': 247224,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/62613',
  'date_captured': '2013-11-21 04:58:16',
  'file_name': 'COCO_train2014_000000062613.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4084/5173386867_85baef9416_z.jpg',
  'height': 600,
  'id': 62613,
  'license': 2,
  'width': 400},
 {'coco_url': 'http://mscoco.org/images/312887',
  'date_captured': '2013-11-21 05:27:12',
  'file_name': 'COCO_train2014_000000312887.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1413/4732170890_911a71d073_z.jpg',
  'height': 480,
  'id': 312887,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/442961',
  'date_captured': '2013-11-21 05:33:47',
  'file_name': 'COCO_train2014_000000442961.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3297/4567010774_9a164f8684_z.jpg',
  'height': 640,
  'id': 442961,
  'license': 5,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/327536',
  'date_captured': '2013-11-21 05:38:38',
  'file_name': 'COCO_train2014_000000327536.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4048/4673477454_dd76917012_z.jpg',
  'height': 640,
  'id': 327536,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/515470',
  'date_captured': '2013-11-21 19:31:31',
  'file_name': 'COCO_train2014_000000515470.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3632/3282705221_da7584f40d_z.jpg',
  'height': 400,
  'id': 515470,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/537862',
  'date_captured': '2013-11-21 19:44:11',
  'file_name': 'COCO_train2014_000000537862.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2649/3981819126_d115035ef5_z.jpg',
  'height': 640,
  'id': 537862,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/201476',
  'date_captured': '2013-11-21 19:52:00',
  'file_name': 'COCO_train2014_000000201476.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3373/3208839683_af0699d93c_z.jpg',
  'height': 480,
  'id': 201476,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/261479',
  'date_captured': '2013-11-21 20:01:05',
  'file_name': 'COCO_train2014_000000261479.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1376/1029946579_495aa165e5_z.jpg',
  'height': 426,
  'id': 261479,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/48711',
  'date_captured': '2013-11-21 20:09:57',
  'file_name': 'COCO_train2014_000000048711.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1111/1030766844_c749132457_z.jpg',
  'height': 426,
  'id': 48711,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/2693',
  'date_captured': '2013-11-21 20:24:47',
  'file_name': 'COCO_train2014_000000002693.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5283/5325115577_2324449d57_z.jpg',
  'height': 240,
  'id': 2693,
  'license': 1,
  'width': 320},
 {'coco_url': 'http://mscoco.org/images/240339',
  'date_captured': '2013-11-21 20:53:05',
  'file_name': 'COCO_train2014_000000240339.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2659/3869711710_40bfd517e1_z.jpg',
  'height': 426,
  'id': 240339,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/424472',
  'date_captured': '2013-11-21 20:55:32',
  'file_name': 'COCO_train2014_000000424472.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2633/3722493828_8200ba338a_z.jpg',
  'height': 640,
  'id': 424472,
  'license': 3,
  'width': 457},
 {'coco_url': 'http://mscoco.org/images/568243',
  'date_captured': '2013-11-21 20:55:52',
  'file_name': 'COCO_train2014_000000568243.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2577/3722492930_e55db84d84_z.jpg',
  'height': 640,
  'id': 568243,
  'license': 3,
  'width': 457},
 {'coco_url': 'http://mscoco.org/images/363821',
  'date_captured': '2013-11-21 21:02:52',
  'file_name': 'COCO_train2014_000000363821.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3606/3381852227_8c91e083f2_z.jpg',
  'height': 500,
  'id': 363821,
  'license': 1,
  'width': 400},
 {'coco_url': 'http://mscoco.org/images/83670',
  'date_captured': '2013-11-21 21:04:57',
  'file_name': 'COCO_train2014_000000083670.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3648/3428372240_951958cc2c_z.jpg',
  'height': 375,
  'id': 83670,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/369860',
  'date_captured': '2013-11-21 21:17:57',
  'file_name': 'COCO_train2014_000000369860.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3337/3207218798_af708df72c_z.jpg',
  'height': 400,
  'id': 369860,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/92420',
  'date_captured': '2013-11-21 21:24:47',
  'file_name': 'COCO_train2014_000000092420.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3286/3150795656_3f25be02c5_z.jpg',
  'height': 533,
  'id': 92420,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/128750',
  'date_captured': '2013-11-21 21:24:51',
  'file_name': 'COCO_train2014_000000128750.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3086/3149957401_588af4e989_z.jpg',
  'height': 556,
  'id': 128750,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/532704',
  'date_captured': '2013-11-21 21:24:59',
  'file_name': 'COCO_train2014_000000532704.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3266/3149964931_dc62f185a2_z.jpg',
  'height': 427,
  'id': 532704,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/220529',
  'date_captured': '2013-11-21 21:33:04',
  'file_name': 'COCO_train2014_000000220529.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3077/3168213357_e5249c5811_z.jpg',
  'height': 392,
  'id': 220529,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/146988',
  'date_captured': '2013-11-21 21:34:50',
  'file_name': 'COCO_train2014_000000146988.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3008/2895627756_8d1d4e2050_z.jpg',
  'height': 480,
  'id': 146988,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/71855',
  'date_captured': '2013-11-21 21:49:23',
  'file_name': 'COCO_train2014_000000071855.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8459/7940627408_e2d706c79b_z.jpg',
  'height': 425,
  'id': 71855,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/386062',
  'date_captured': '2013-11-21 22:06:15',
  'file_name': 'COCO_train2014_000000386062.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3255/2455584488_3e6831403d_z.jpg',
  'height': 374,
  'id': 386062,
  'license': 5,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/327726',
  'date_captured': '2013-11-21 22:26:37',
  'file_name': 'COCO_train2014_000000327726.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7030/6712861483_d6ff835193_z.jpg',
  'height': 427,
  'id': 327726,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/204225',
  'date_captured': '2013-11-21 22:44:48',
  'file_name': 'COCO_train2014_000000204225.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2123/2138741537_67da3e9362_z.jpg',
  'height': 480,
  'id': 204225,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/35248',
  'date_captured': '2013-11-21 22:45:08',
  'file_name': 'COCO_train2014_000000035248.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2156/2076049411_2b09c64bf4_z.jpg',
  'height': 458,
  'id': 35248,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/177858',
  'date_captured': '2013-11-21 23:03:22',
  'file_name': 'COCO_train2014_000000177858.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1044/1030790334_9f9bbd742f_z.jpg',
  'height': 640,
  'id': 177858,
  'license': 1,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/303519',
  'date_captured': '2013-11-21 23:06:31',
  'file_name': 'COCO_train2014_000000303519.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1126/940097879_103fc17f6b_z.jpg',
  'height': 640,
  'id': 303519,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/210080',
  'date_captured': '2013-11-21 23:11:56',
  'file_name': 'COCO_train2014_000000210080.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/193/497809859_00bcd810fd_z.jpg',
  'height': 426,
  'id': 210080,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/34223',
  'date_captured': '2013-11-21 23:12:30',
  'file_name': 'COCO_train2014_000000034223.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1316/709069219_567ad1b374_z.jpg',
  'height': 375,
  'id': 34223,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/238500',
  'date_captured': '2013-11-21 23:12:33',
  'file_name': 'COCO_train2014_000000238500.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1302/709069259_8c90cc5da8_z.jpg',
  'height': 375,
  'id': 238500,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/362399',
  'date_captured': '2013-11-21 23:12:38',
  'file_name': 'COCO_train2014_000000362399.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1142/709069249_cbce668db2_z.jpg',
  'height': 375,
  'id': 362399,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/327810',
  'date_captured': '2013-11-21 23:12:41',
  'file_name': 'COCO_train2014_000000327810.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1313/709069199_0484546d57_z.jpg',
  'height': 375,
  'id': 327810,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/84015',
  'date_captured': '2013-11-21 23:15:29',
  'file_name': 'COCO_train2014_000000084015.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/173/473451323_6611891d9a_z.jpg',
  'height': 500,
  'id': 84015,
  'license': 5,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/232919',
  'date_captured': '2013-11-21 23:23:24',
  'file_name': 'COCO_train2014_000000232919.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/217/497781558_df3e3f3712_z.jpg',
  'height': 522,
  'id': 232919,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/165100',
  'date_captured': '2013-11-21 23:42:22',
  'file_name': 'COCO_train2014_000000165100.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5282/5341196622_ab75a9f9ce_z.jpg',
  'height': 378,
  'id': 165100,
  'license': 5,
  'width': 504},
 {'coco_url': 'http://mscoco.org/images/544169',
  'date_captured': '2013-11-21 23:43:20',
  'file_name': 'COCO_train2014_000000544169.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/152/395086057_3fa9e1c2fe_z.jpg',
  'height': 640,
  'id': 544169,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/389965',
  'date_captured': '2013-11-21 23:46:24',
  'file_name': 'COCO_train2014_000000389965.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/161/395086787_56ce262f60_z.jpg',
  'height': 480,
  'id': 389965,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/403841',
  'date_captured': '2013-11-21 23:46:31',
  'file_name': 'COCO_train2014_000000403841.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/144/395085728_9b79860d2c_z.jpg',
  'height': 480,
  'id': 403841,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/245116',
  'date_captured': '2013-11-21 23:46:44',
  'file_name': 'COCO_train2014_000000245116.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/126/395086410_a833a616dc_z.jpg',
  'height': 480,
  'id': 245116,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/139887',
  'date_captured': '2013-11-22 00:14:43',
  'file_name': 'COCO_train2014_000000139887.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4103/5051964254_06df2fb937_z.jpg',
  'height': 480,
  'id': 139887,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/555183',
  'date_captured': '2013-11-22 00:39:21',
  'file_name': 'COCO_train2014_000000555183.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2647/3889092604_f6f5d67078_z.jpg',
  'height': 423,
  'id': 555183,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/280873',
  'date_captured': '2013-11-22 01:36:29',
  'file_name': 'COCO_train2014_000000280873.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2388/4512259629_a82ab16c67_z.jpg',
  'height': 480,
  'id': 280873,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/120360',
  'date_captured': '2013-11-22 02:00:06',
  'file_name': 'COCO_train2014_000000120360.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8334/8144644331_cd7a6c94a0_z.jpg',
  'height': 640,
  'id': 120360,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/171075',
  'date_captured': '2013-11-22 02:19:58',
  'file_name': 'COCO_train2014_000000171075.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3320/3640861828_5421a5cb35_z.jpg',
  'height': 375,
  'id': 171075,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/549237',
  'date_captured': '2013-11-22 02:28:30',
  'file_name': 'COCO_train2014_000000549237.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6112/6282265514_6009f3b3bd_z.jpg',
  'height': 424,
  'id': 549237,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/295154',
  'date_captured': '2013-11-22 03:42:37',
  'file_name': 'COCO_train2014_000000295154.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3331/3495107278_40476ab2f3_z.jpg',
  'height': 427,
  'id': 295154,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/139758',
  'date_captured': '2013-11-22 04:12:10',
  'file_name': 'COCO_train2014_000000139758.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3212/3055572506_4f1ba9e0e2_z.jpg',
  'height': 480,
  'id': 139758,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/259240',
  'date_captured': '2013-11-22 09:55:12',
  'file_name': 'COCO_train2014_000000259240.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7173/6642270621_d99498bb0f_z.jpg',
  'height': 427,
  'id': 259240,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/57745',
  'date_captured': '2013-11-22 10:39:19',
  'file_name': 'COCO_train2014_000000057745.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5458/9702080530_d72fb298f9_z.jpg',
  'height': 640,
  'id': 57745,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/289510',
  'date_captured': '2013-11-22 10:43:06',
  'file_name': 'COCO_train2014_000000289510.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3718/9066155059_cd9c1263a6_z.jpg',
  'height': 427,
  'id': 289510,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/338143',
  'date_captured': '2013-11-22 14:49:51',
  'file_name': 'COCO_train2014_000000338143.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8494/8357168516_c70422e3dc_z.jpg',
  'height': 480,
  'id': 338143,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/536776',
  'date_captured': '2013-11-22 14:52:46',
  'file_name': 'COCO_train2014_000000536776.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8314/7967577038_de5c8a5d12_z.jpg',
  'height': 480,
  'id': 536776,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/356237',
  'date_captured': '2013-11-22 15:18:25',
  'file_name': 'COCO_train2014_000000356237.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7002/6545939335_66679b9c7b_z.jpg',
  'height': 640,
  'id': 356237,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/455252',
  'date_captured': '2013-11-22 15:32:46',
  'file_name': 'COCO_train2014_000000455252.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5301/5875435081_6f8a3fa3c4_z.jpg',
  'height': 424,
  'id': 455252,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/503883',
  'date_captured': '2013-11-22 15:34:09',
  'file_name': 'COCO_train2014_000000503883.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4086/4999906568_30d2679c86_z.jpg',
  'height': 429,
  'id': 503883,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/202806',
  'date_captured': '2013-11-22 15:57:28',
  'file_name': 'COCO_train2014_000000202806.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4115/4941022658_029f217b9a_z.jpg',
  'height': 480,
  'id': 202806,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/372489',
  'date_captured': '2013-11-22 16:37:03',
  'file_name': 'COCO_train2014_000000372489.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3641/3380843779_bd7940e886_z.jpg',
  'height': 472,
  'id': 372489,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/561251',
  'date_captured': '2013-11-22 16:43:28',
  'file_name': 'COCO_train2014_000000561251.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2613/3922121819_e79277664d_z.jpg',
  'height': 480,
  'id': 561251,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/470305',
  'date_captured': '2013-11-22 16:52:40',
  'file_name': 'COCO_train2014_000000470305.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3542/3785596872_58f4f8e2a4_z.jpg',
  'height': 396,
  'id': 470305,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/414244',
  'date_captured': '2013-11-22 17:04:54',
  'file_name': 'COCO_train2014_000000414244.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3582/3853541372_08b7fcf6cc_z.jpg',
  'height': 480,
  'id': 414244,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/12069',
  'date_captured': '2013-11-22 17:18:08',
  'file_name': 'COCO_train2014_000000012069.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2517/3742673587_40b72240d2_z.jpg',
  'height': 640,
  'id': 12069,
  'license': 3,
  'width': 516},
 {'coco_url': 'http://mscoco.org/images/191770',
  'date_captured': '2013-11-22 17:49:08',
  'file_name': 'COCO_train2014_000000191770.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3212/3281561438_dd0b5bd0d2_z.jpg',
  'height': 500,
  'id': 191770,
  'license': 4,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/19002',
  'date_captured': '2013-11-22 18:01:58',
  'file_name': 'COCO_train2014_000000019002.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3250/2819615976_32f12ba523_z.jpg',
  'height': 640,
  'id': 19002,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/475804',
  'date_captured': '2013-11-22 19:13:29',
  'file_name': 'COCO_train2014_000000475804.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7065/6810436296_b438a120cb_z.jpg',
  'height': 427,
  'id': 475804,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/301916',
  'date_captured': '2013-11-22 20:46:10',
  'file_name': 'COCO_train2014_000000301916.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7011/6778061113_b0a69975d0_z.jpg',
  'height': 422,
  'id': 301916,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/434069',
  'date_captured': '2013-11-22 21:00:14',
  'file_name': 'COCO_train2014_000000434069.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6062/6161839670_486358ec8d_z.jpg',
  'height': 429,
  'id': 434069,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/213117',
  'date_captured': '2013-11-22 21:10:56',
  'file_name': 'COCO_train2014_000000213117.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1185/5126575033_9d894552e4_z.jpg',
  'height': 480,
  'id': 213117,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/281586',
  'date_captured': '2013-11-22 21:10:59',
  'file_name': 'COCO_train2014_000000281586.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1050/5126575729_bf69326e7f_z.jpg',
  'height': 480,
  'id': 281586,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/412615',
  'date_captured': '2013-11-22 21:13:56',
  'file_name': 'COCO_train2014_000000412615.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7047/6852479966_a015e95495_z.jpg',
  'height': 640,
  'id': 412615,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/394539',
  'date_captured': '2013-11-22 21:55:08',
  'file_name': 'COCO_train2014_000000394539.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5462/7411210940_8e7abb1811_z.jpg',
  'height': 427,
  'id': 394539,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/68237',
  'date_captured': '2013-11-22 21:55:12',
  'file_name': 'COCO_train2014_000000068237.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7254/7411213292_475e420f08_z.jpg',
  'height': 427,
  'id': 68237,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/203177',
  'date_captured': '2013-11-22 21:55:15',
  'file_name': 'COCO_train2014_000000203177.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7121/7411222490_0587d4ab4c_z.jpg',
  'height': 427,
  'id': 203177,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/361475',
  'date_captured': '2013-11-22 21:55:18',
  'file_name': 'COCO_train2014_000000361475.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5444/7411215892_1de784db35_z.jpg',
  'height': 640,
  'id': 361475,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/260827',
  'date_captured': '2013-11-22 22:11:16',
  'file_name': 'COCO_train2014_000000260827.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/182/385088750_d1a342f513_z.jpg',
  'height': 480,
  'id': 260827,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/421250',
  'date_captured': '2013-11-22 22:38:04',
  'file_name': 'COCO_train2014_000000421250.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3662/3564204601_178b43ba4b_z.jpg',
  'height': 640,
  'id': 421250,
  'license': 1,
  'width': 428},
 {'coco_url': 'http://mscoco.org/images/45004',
  'date_captured': '2013-11-22 22:43:34',
  'file_name': 'COCO_train2014_000000045004.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3081/3167989422_0d957ac83b_z.jpg',
  'height': 640,
  'id': 45004,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/323389',
  'date_captured': '2013-11-22 22:59:20',
  'file_name': 'COCO_train2014_000000323389.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1190/1286995407_a202d3da88_z.jpg',
  'height': 433,
  'id': 323389,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/112137',
  'date_captured': '2013-11-22 23:01:53',
  'file_name': 'COCO_train2014_000000112137.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1306/813901975_7974746203_z.jpg',
  'height': 500,
  'id': 112137,
  'license': 3,
  'width': 273},
 {'coco_url': 'http://mscoco.org/images/555282',
  'date_captured': '2013-11-22 23:01:56',
  'file_name': 'COCO_train2014_000000555282.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1054/814808070_36c8556efa_z.jpg',
  'height': 325,
  'id': 555282,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/10711',
  'date_captured': '2013-11-22 23:56:59',
  'file_name': 'COCO_train2014_000000010711.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2864/9859423596_600a05c506_z.jpg',
  'height': 427,
  'id': 10711,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/57375',
  'date_captured': '2013-11-22 23:57:02',
  'file_name': 'COCO_train2014_000000057375.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7420/9859450436_bccf336e5c_z.jpg',
  'height': 427,
  'id': 57375,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/480852',
  'date_captured': '2013-11-23 00:02:13',
  'file_name': 'COCO_train2014_000000480852.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3782/9528733704_ea2f4b289d_z.jpg',
  'height': 427,
  'id': 480852,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/448381',
  'date_captured': '2013-11-23 00:02:20',
  'file_name': 'COCO_train2014_000000448381.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3731/9525945849_b6982d8594_z.jpg',
  'height': 427,
  'id': 448381,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/445425',
  'date_captured': '2013-11-23 00:16:17',
  'file_name': 'COCO_train2014_000000445425.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3752/8890729709_5fe324a3da_z.jpg',
  'height': 427,
  'id': 445425,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/140787',
  'date_captured': '2013-11-23 00:18:05',
  'file_name': 'COCO_train2014_000000140787.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2810/8831105364_7c84a80bbb_z.jpg',
  'height': 426,
  'id': 140787,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/5614',
  'date_captured': '2013-11-23 00:47:19',
  'file_name': 'COCO_train2014_000000005614.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5031/7388217716_9281cfafcd_z.jpg',
  'height': 426,
  'id': 5614,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/453037',
  'date_captured': '2013-11-23 00:47:22',
  'file_name': 'COCO_train2014_000000453037.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5329/7401717696_93a13bb4b6_z.jpg',
  'height': 427,
  'id': 453037,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/428896',
  'date_captured': '2013-11-23 00:47:25',
  'file_name': 'COCO_train2014_000000428896.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5160/7401713806_cc94801a9f_z.jpg',
  'height': 427,
  'id': 428896,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/149233',
  'date_captured': '2013-11-23 00:48:49',
  'file_name': 'COCO_train2014_000000149233.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8009/7170833611_591e49bd5b_z.jpg',
  'height': 426,
  'id': 149233,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/56292',
  'date_captured': '2013-11-23 00:50:24',
  'file_name': 'COCO_train2014_000000056292.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8003/7274631922_32cb14eaa1_z.jpg',
  'height': 426,
  'id': 56292,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/30303',
  'date_captured': '2013-11-23 01:06:14',
  'file_name': 'COCO_train2014_000000030303.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6163/6173340187_b80925bf44_z.jpg',
  'height': 428,
  'id': 30303,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/253725',
  'date_captured': '2013-11-23 01:06:17',
  'file_name': 'COCO_train2014_000000253725.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6163/6173348047_3e3a922781_z.jpg',
  'height': 428,
  'id': 253725,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/20644',
  'date_captured': '2013-11-23 01:17:28',
  'file_name': 'COCO_train2014_000000020644.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5319/5884325180_d4b37ff68d_z.jpg',
  'height': 314,
  'id': 20644,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/156258',
  'date_captured': '2013-11-23 02:51:28',
  'file_name': 'COCO_train2014_000000156258.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4032/4463888033_7a11894b09_z.jpg',
  'height': 429,
  'id': 156258,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/366704',
  'date_captured': '2013-11-23 02:51:30',
  'file_name': 'COCO_train2014_000000366704.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4043/4464665316_9dc528a086_z.jpg',
  'height': 429,
  'id': 366704,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/290098',
  'date_captured': '2013-11-23 03:00:01',
  'file_name': 'COCO_train2014_000000290098.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2780/4426720002_7f5d821819_z.jpg',
  'height': 428,
  'id': 290098,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/433951',
  'date_captured': '2013-11-23 03:11:32',
  'file_name': 'COCO_train2014_000000433951.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4071/4369637331_729caa4e9b_z.jpg',
  'height': 429,
  'id': 433951,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/277156',
  'date_captured': '2013-11-23 03:11:35',
  'file_name': 'COCO_train2014_000000277156.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2519/4377463269_6c0e733b1b_z.jpg',
  'height': 480,
  'id': 277156,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/341430',
  'date_captured': '2013-11-23 03:22:06',
  'file_name': 'COCO_train2014_000000341430.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4023/4284264088_02407046b3_z.jpg',
  'height': 500,
  'id': 341430,
  'license': 1,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/201919',
  'date_captured': '2013-11-23 03:32:56',
  'file_name': 'COCO_train2014_000000201919.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2771/4192676832_7bfe9138d1_z.jpg',
  'height': 428,
  'id': 201919,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/329675',
  'date_captured': '2013-11-23 03:40:59',
  'file_name': 'COCO_train2014_000000329675.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2650/4110859197_b1b8680d68_z.jpg',
  'height': 480,
  'id': 329675,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/529427',
  'date_captured': '2013-11-23 04:01:08',
  'file_name': 'COCO_train2014_000000529427.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3129/2822574393_f04777e5f5_z.jpg',
  'height': 404,
  'id': 529427,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/340623',
  'date_captured': '2013-11-23 04:11:00',
  'file_name': 'COCO_train2014_000000340623.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2475/3823526124_bf9af1330d_z.jpg',
  'height': 480,
  'id': 340623,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/299881',
  'date_captured': '2013-11-23 04:12:45',
  'file_name': 'COCO_train2014_000000299881.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2423/3869163204_a3c81936c9_z.jpg',
  'height': 480,
  'id': 299881,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/484313',
  'date_captured': '2013-11-23 04:24:32',
  'file_name': 'COCO_train2014_000000484313.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2385/2407319358_7990be610a_z.jpg',
  'height': 640,
  'id': 484313,
  'license': 6,
  'width': 439},
 {'coco_url': 'http://mscoco.org/images/162295',
  'date_captured': '2013-11-23 04:25:26',
  'file_name': 'COCO_train2014_000000162295.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2514/3756970306_58e6592d24_z.jpg',
  'height': 427,
  'id': 162295,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/483992',
  'date_captured': '2013-11-23 04:28:42',
  'file_name': 'COCO_train2014_000000483992.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2135/3673731799_429a0ef412_z.jpg',
  'height': 497,
  'id': 483992,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/255550',
  'date_captured': '2013-11-23 04:29:54',
  'file_name': 'COCO_train2014_000000255550.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2002/2421013786_0a6a9d6072_z.jpg',
  'height': 559,
  'id': 255550,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/205384',
  'date_captured': '2013-11-23 04:29:57',
  'file_name': 'COCO_train2014_000000205384.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2114/2420200123_120ac88651_z.jpg',
  'height': 459,
  'id': 205384,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/158821',
  'date_captured': '2013-11-23 04:33:11',
  'file_name': 'COCO_train2014_000000158821.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3097/2336702507_a8e93d0e58_z.jpg',
  'height': 500,
  'id': 158821,
  'license': 6,
  'width': 333},
 {'coco_url': 'http://mscoco.org/images/7809',
  'date_captured': '2013-11-23 04:47:24',
  'file_name': 'COCO_train2014_000000007809.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1433/1417746959_ca2d834349_z.jpg',
  'height': 640,
  'id': 7809,
  'license': 6,
  'width': 519},
 {'coco_url': 'http://mscoco.org/images/494032',
  'date_captured': '2013-11-23 04:47:27',
  'file_name': 'COCO_train2014_000000494032.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1217/1417747005_49bd2649c6_z.jpg',
  'height': 617,
  'id': 494032,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/388153',
  'date_captured': '2013-11-23 04:47:31',
  'file_name': 'COCO_train2014_000000388153.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1138/1417746973_5db34c72eb_z.jpg',
  'height': 449,
  'id': 388153,
  'license': 6,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/581227',
  'date_captured': '2013-11-23 04:47:34',
  'file_name': 'COCO_train2014_000000581227.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1081/1404138565_0f3c0687b2_z.jpg',
  'height': 333,
  'id': 581227,
  'license': 6,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/93860',
  'date_captured': '2013-11-23 05:44:56',
  'file_name': 'COCO_train2014_000000093860.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/36/88546731_d7fc1428ba_z.jpg',
  'height': 500,
  'id': 93860,
  'license': 5,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/260006',
  'date_captured': '2013-11-23 05:45:28',
  'file_name': 'COCO_train2014_000000260006.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/33/64632190_c8df143def_z.jpg',
  'height': 333,
  'id': 260006,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/196611',
  'date_captured': '2013-11-23 20:05:31',
  'file_name': 'COCO_train2014_000000196611.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5011/5548244561_a940180cfc_z.jpg',
  'height': 640,
  'id': 196611,
  'license': 3,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/238850',
  'date_captured': '2013-11-24 00:36:29',
  'file_name': 'COCO_train2014_000000238850.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3824/9599052385_9db4999e3d_z.jpg',
  'height': 640,
  'id': 238850,
  'license': 1,
  'width': 425},
 {'coco_url': 'http://mscoco.org/images/109169',
  'date_captured': '2013-11-24 01:02:44',
  'file_name': 'COCO_train2014_000000109169.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/185/450559107_ee7dfb2692_z.jpg',
  'height': 480,
  'id': 109169,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/362919',
  'date_captured': '2013-11-24 02:15:54',
  'file_name': 'COCO_train2014_000000362919.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6011/5905205374_d0d40d1f6a_z.jpg',
  'height': 640,
  'id': 362919,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/310214',
  'date_captured': '2013-11-24 02:46:20',
  'file_name': 'COCO_train2014_000000310214.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5009/5297711298_16cf54cc96_z.jpg',
  'height': 640,
  'id': 310214,
  'license': 2,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/207250',
  'date_captured': '2013-11-24 02:50:07',
  'file_name': 'COCO_train2014_000000207250.jpg',
  'flickr_url': 'http://farm2.staticflickr.com/1249/1290758356_635204e13a_z.jpg',
  'height': 480,
  'id': 207250,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/423932',
  'date_captured': '2013-11-24 03:16:08',
  'file_name': 'COCO_train2014_000000423932.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3193/2533200694_0c016a2d2b_z.jpg',
  'height': 424,
  'id': 423932,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/216517',
  'date_captured': '2013-11-24 03:50:44',
  'file_name': 'COCO_train2014_000000216517.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3616/3377387684_6ecf327e3c_z.jpg',
  'height': 427,
  'id': 216517,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/138494',
  'date_captured': '2013-11-24 03:50:48',
  'file_name': 'COCO_train2014_000000138494.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3599/3376562979_7ccf894815_z.jpg',
  'height': 640,
  'id': 138494,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/160041',
  'date_captured': '2013-11-24 03:50:57',
  'file_name': 'COCO_train2014_000000160041.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2465/3773052651_f523ff45f3_z.jpg',
  'height': 640,
  'id': 160041,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/397388',
  'date_captured': '2013-11-24 04:13:54',
  'file_name': 'COCO_train2014_000000397388.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5272/5891454070_fc1413320b_z.jpg',
  'height': 640,
  'id': 397388,
  'license': 5,
  'width': 461},
 {'coco_url': 'http://mscoco.org/images/490535',
  'date_captured': '2013-11-24 05:05:50',
  'file_name': 'COCO_train2014_000000490535.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3261/2639495612_decda95cda_z.jpg',
  'height': 640,
  'id': 490535,
  'license': 3,
  'width': 481},
 {'coco_url': 'http://mscoco.org/images/418988',
  'date_captured': '2013-11-24 05:36:56',
  'file_name': 'COCO_train2014_000000418988.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4094/4868995623_eb6e2c7864_z.jpg',
  'height': 480,
  'id': 418988,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/479272',
  'date_captured': '2013-11-24 05:38:24',
  'file_name': 'COCO_train2014_000000479272.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3447/3385862821_71b3db6123_z.jpg',
  'height': 400,
  'id': 479272,
  'license': 4,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/211540',
  'date_captured': '2013-11-24 05:53:52',
  'file_name': 'COCO_train2014_000000211540.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2832/9605350466_1fae93acd7_z.jpg',
  'height': 640,
  'id': 211540,
  'license': 5,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/51791',
  'date_captured': '2013-11-24 06:09:30',
  'file_name': 'COCO_train2014_000000051791.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/118/301653519_cf7d344a4c_z.jpg',
  'height': 283,
  'id': 51791,
  'license': 2,
  'width': 425},
 {'coco_url': 'http://mscoco.org/images/201173',
  'date_captured': '2013-11-24 06:18:26',
  'file_name': 'COCO_train2014_000000201173.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5307/5628780955_b38fb0eeb7_z.jpg',
  'height': 429,
  'id': 201173,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/396179',
  'date_captured': '2013-11-24 06:50:12',
  'file_name': 'COCO_train2014_000000396179.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3543/3405792793_7f14ba5116_z.jpg',
  'height': 351,
  'id': 396179,
  'license': 1,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/168869',
  'date_captured': '2013-11-24 07:15:12',
  'file_name': 'COCO_train2014_000000168869.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2272/2262777129_18dabb35c2_z.jpg',
  'height': 640,
  'id': 168869,
  'license': 2,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/286569',
  'date_captured': '2013-11-24 07:50:53',
  'file_name': 'COCO_train2014_000000286569.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/39/76390996_d98ade8050_z.jpg',
  'height': 640,
  'id': 286569,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/150969',
  'date_captured': '2013-11-24 08:04:26',
  'file_name': 'COCO_train2014_000000150969.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8094/8437813047_802cdca82b_z.jpg',
  'height': 480,
  'id': 150969,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/12472',
  'date_captured': '2013-11-24 08:26:24',
  'file_name': 'COCO_train2014_000000012472.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2607/4044226888_6137137ae1_z.jpg',
  'height': 640,
  'id': 12472,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/362367',
  'date_captured': '2013-11-24 08:52:40',
  'file_name': 'COCO_train2014_000000362367.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3064/2929976089_9b08da1627_z.jpg',
  'height': 640,
  'id': 362367,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/262463',
  'date_captured': '2013-11-24 09:02:46',
  'file_name': 'COCO_train2014_000000262463.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2050/2407157255_5ac59d6ebc_z.jpg',
  'height': 458,
  'id': 262463,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/141180',
  'date_captured': '2013-11-24 09:42:23',
  'file_name': 'COCO_train2014_000000141180.jpg',
  'flickr_url': 'http://farm1.staticflickr.com/17/88067092_a9c7aef853_z.jpg',
  'height': 375,
  'id': 141180,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/399456',
  'date_captured': '2013-11-24 09:47:40',
  'file_name': 'COCO_train2014_000000399456.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7404/9677861415_f97161189e_z.jpg',
  'height': 427,
  'id': 399456,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/546517',
  'date_captured': '2013-11-24 10:08:04',
  'file_name': 'COCO_train2014_000000546517.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2789/4067528370_7345797f7c_z.jpg',
  'height': 425,
  'id': 546517,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/82597',
  'date_captured': '2013-11-24 11:38:12',
  'file_name': 'COCO_train2014_000000082597.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3299/3640045369_9532f46e4b_z.jpg',
  'height': 500,
  'id': 82597,
  'license': 1,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/431788',
  'date_captured': '2013-11-24 11:57:21',
  'file_name': 'COCO_train2014_000000431788.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8448/7958656436_afa0831586_z.jpg',
  'height': 640,
  'id': 431788,
  'license': 4,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/199318',
  'date_captured': '2013-11-24 12:17:21',
  'file_name': 'COCO_train2014_000000199318.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5021/5816349098_dff2179f3d_z.jpg',
  'height': 480,
  'id': 199318,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/210728',
  'date_captured': '2013-11-24 12:28:54',
  'file_name': 'COCO_train2014_000000210728.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8085/8500206964_d9f7c35f76_z.jpg',
  'height': 427,
  'id': 210728,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/401821',
  'date_captured': '2013-11-24 12:33:31',
  'file_name': 'COCO_train2014_000000401821.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7174/6583389413_1d34471ce6_z.jpg',
  'height': 480,
  'id': 401821,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/566258',
  'date_captured': '2013-11-24 13:15:30',
  'file_name': 'COCO_train2014_000000566258.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5462/10073044636_39b625e307_z.jpg',
  'height': 640,
  'id': 566258,
  'license': 1,
  'width': 502},
 {'coco_url': 'http://mscoco.org/images/498562',
  'date_captured': '2013-11-24 13:22:11',
  'file_name': 'COCO_train2014_000000498562.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7331/9836352633_ca8e20c415_z.jpg',
  'height': 640,
  'id': 498562,
  'license': 4,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/48181',
  'date_captured': '2013-11-24 13:30:13',
  'file_name': 'COCO_train2014_000000048181.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5520/9538088289_fc176c5bc5_z.jpg',
  'height': 640,
  'id': 48181,
  'license': 3,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/5809',
  'date_captured': '2013-11-24 13:33:16',
  'file_name': 'COCO_train2014_000000005809.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3804/9690137234_f8fe6224bf_z.jpg',
  'height': 640,
  'id': 5809,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/234781',
  'date_captured': '2013-11-24 14:24:52',
  'file_name': 'COCO_train2014_000000234781.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3695/9162268266_d70be3cef0_z.jpg',
  'height': 480,
  'id': 234781,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/511550',
  'date_captured': '2013-11-24 14:36:47',
  'file_name': 'COCO_train2014_000000511550.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8100/8533753740_066b77d241_z.jpg',
  'height': 612,
  'id': 511550,
  'license': 1,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/248017',
  'date_captured': '2013-11-24 14:47:12',
  'file_name': 'COCO_train2014_000000248017.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8387/8504672764_5d30e77aee_z.jpg',
  'height': 640,
  'id': 248017,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/133641',
  'date_captured': '2013-11-24 14:51:47',
  'file_name': 'COCO_train2014_000000133641.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5342/9538702142_6de26551c6_z.jpg',
  'height': 480,
  'id': 133641,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/328318',
  'date_captured': '2013-11-24 14:53:12',
  'file_name': 'COCO_train2014_000000328318.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8124/8629816324_f318baf3ca_z.jpg',
  'height': 640,
  'id': 328318,
  'license': 2,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/20137',
  'date_captured': '2013-11-24 14:54:58',
  'file_name': 'COCO_train2014_000000020137.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8480/8235934960_399d133a94_z.jpg',
  'height': 480,
  'id': 20137,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/130292',
  'date_captured': '2013-11-24 14:56:12',
  'file_name': 'COCO_train2014_000000130292.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8348/8235783134_63f5c9957d_z.jpg',
  'height': 640,
  'id': 130292,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/218760',
  'date_captured': '2013-11-24 15:08:20',
  'file_name': 'COCO_train2014_000000218760.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5164/5222245755_d6855d1e69_z.jpg',
  'height': 640,
  'id': 218760,
  'license': 3,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/301890',
  'date_captured': '2013-11-24 15:10:33',
  'file_name': 'COCO_train2014_000000301890.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4124/4976779068_b08220eb62_z.jpg',
  'height': 480,
  'id': 301890,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/247909',
  'date_captured': '2013-11-24 15:11:39',
  'file_name': 'COCO_train2014_000000247909.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4126/4841294742_1404700c88_z.jpg',
  'height': 640,
  'id': 247909,
  'license': 1,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/100407',
  'date_captured': '2013-11-24 15:15:39',
  'file_name': 'COCO_train2014_000000100407.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4005/4374150810_2f2cae5864_z.jpg',
  'height': 426,
  'id': 100407,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/189520',
  'date_captured': '2013-11-24 15:18:01',
  'file_name': 'COCO_train2014_000000189520.jpg',
  'flickr_url': 'http://farm5.staticflickr.com/4022/4287698416_34b5ba589a_z.jpg',
  'height': 500,
  'id': 189520,
  'license': 3,
  'width': 375},
 {'coco_url': 'http://mscoco.org/images/456350',
  'date_captured': '2013-11-24 15:18:03',
  'file_name': 'COCO_train2014_000000456350.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8205/8217230400_9898fd6725_z.jpg',
  'height': 640,
  'id': 456350,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/272785',
  'date_captured': '2013-11-24 15:29:54',
  'file_name': 'COCO_train2014_000000272785.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8543/8754833060_8342dcff31_z.jpg',
  'height': 480,
  'id': 272785,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/89788',
  'date_captured': '2013-11-24 15:30:41',
  'file_name': 'COCO_train2014_000000089788.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8185/8388766172_caf8d53a60_z.jpg',
  'height': 640,
  'id': 89788,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/162109',
  'date_captured': '2013-11-24 15:34:17',
  'file_name': 'COCO_train2014_000000162109.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8462/8036487923_12f8c0b71e_z.jpg',
  'height': 640,
  'id': 162109,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/362561',
  'date_captured': '2013-11-24 15:56:24',
  'file_name': 'COCO_train2014_000000362561.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8007/7586708934_ac7f206450_z.jpg',
  'height': 612,
  'id': 362561,
  'license': 3,
  'width': 612},
 {'coco_url': 'http://mscoco.org/images/282523',
  'date_captured': '2013-11-24 16:04:24',
  'file_name': 'COCO_train2014_000000282523.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8007/6998171690_49aac8e439_z.jpg',
  'height': 426,
  'id': 282523,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/352208',
  'date_captured': '2013-11-24 18:55:00',
  'file_name': 'COCO_train2014_000000352208.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2588/5697604484_de4560f8e0_z.jpg',
  'height': 480,
  'id': 352208,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/477115',
  'date_captured': '2013-11-24 19:03:44',
  'file_name': 'COCO_train2014_000000477115.jpg',
  'flickr_url': 'http://farm7.staticflickr.com/6141/5944490869_ff749ef2a4_z.jpg',
  'height': 480,
  'id': 477115,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/355628',
  'date_captured': '2013-11-24 19:25:07',
  'file_name': 'COCO_train2014_000000355628.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3323/3557329222_089075fac4_z.jpg',
  'height': 640,
  'id': 355628,
  'license': 1,
  'width': 426},
 {'coco_url': 'http://mscoco.org/images/69564',
  'date_captured': '2013-11-24 19:43:01',
  'file_name': 'COCO_train2014_000000069564.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3187/2859101120_0cb5c38c78_z.jpg',
  'height': 640,
  'id': 69564,
  'license': 5,
  'width': 490},
 {'coco_url': 'http://mscoco.org/images/311099',
  'date_captured': '2013-11-24 19:45:19',
  'file_name': 'COCO_train2014_000000311099.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2302/2850144378_c980f0fb91_z.jpg',
  'height': 640,
  'id': 311099,
  'license': 3,
  'width': 428},
 {'coco_url': 'http://mscoco.org/images/278698',
  'date_captured': '2013-11-24 20:22:04',
  'file_name': 'COCO_train2014_000000278698.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3577/3392126342_3ed56099b3_z.jpg',
  'height': 640,
  'id': 278698,
  'license': 5,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/144371',
  'date_captured': '2013-11-24 20:32:57',
  'file_name': 'COCO_train2014_000000144371.jpg',
  'flickr_url': 'http://farm9.staticflickr.com/8509/8587058321_f83b4305af_z.jpg',
  'height': 427,
  'id': 144371,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/173695',
  'date_captured': '2013-11-24 20:46:49',
  'file_name': 'COCO_train2014_000000173695.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2792/4092673894_f1a433c0e9_z.jpg',
  'height': 640,
  'id': 173695,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/333518',
  'date_captured': '2013-11-24 20:51:48',
  'file_name': 'COCO_train2014_000000333518.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3359/3407315167_2bf0194a08_z.jpg',
  'height': 375,
  'id': 333518,
  'license': 3,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/121101',
  'date_captured': '2013-11-24 20:52:28',
  'file_name': 'COCO_train2014_000000121101.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2352/3544850398_eb96a95ef5_z.jpg',
  'height': 640,
  'id': 121101,
  'license': 1,
  'width': 427},
 {'coco_url': 'http://mscoco.org/images/24076',
  'date_captured': '2013-11-24 20:52:31',
  'file_name': 'COCO_train2014_000000024076.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3539/3544848250_6000873bdd_z.jpg',
  'height': 427,
  'id': 24076,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/131487',
  'date_captured': '2013-11-24 21:10:43',
  'file_name': 'COCO_train2014_000000131487.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2370/2152845854_15dd80d7a3_z.jpg',
  'height': 375,
  'id': 131487,
  'license': 2,
  'width': 500},
 {'coco_url': 'http://mscoco.org/images/266885',
  'date_captured': '2013-11-24 22:23:44',
  'file_name': 'COCO_train2014_000000266885.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2885/10114615176_28f40fe97c_z.jpg',
  'height': 478,
  'id': 266885,
  'license': 5,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/123995',
  'date_captured': '2013-11-24 22:27:55',
  'file_name': 'COCO_train2014_000000123995.jpg',
  'flickr_url': 'http://farm4.staticflickr.com/3743/10240463756_47db7c306f_z.jpg',
  'height': 480,
  'id': 123995,
  'license': 3,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/363006',
  'date_captured': '2013-11-24 22:52:54',
  'file_name': 'COCO_train2014_000000363006.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2851/9407041718_0ebdfa4eea_z.jpg',
  'height': 427,
  'id': 363006,
  'license': 4,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/272157',
  'date_captured': '2013-11-24 23:07:43',
  'file_name': 'COCO_train2014_000000272157.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7449/9015123333_dc2a545571_z.jpg',
  'height': 360,
  'id': 272157,
  'license': 2,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/348580',
  'date_captured': '2013-11-24 23:24:49',
  'file_name': 'COCO_train2014_000000348580.jpg',
  'flickr_url': 'http://farm6.staticflickr.com/5340/8892725336_a9ea265fa8_z.jpg',
  'height': 427,
  'id': 348580,
  'license': 1,
  'width': 640},
 {'coco_url': 'http://mscoco.org/images/133634',
  'date_captured': '2013-11-25 05:05:44',
  'file_name': 'COCO_train2014_000000133634.jpg',
  'flickr_url': 'http://farm8.staticflickr.com/7037/6886115962_5869c3f7b8_z.jpg',
  'height': 640,
  'id': 133634,
  'license': 4,
  'width': 480},
 {'coco_url': 'http://mscoco.org/images/405469',
  'date_captured': '2013-11-25 08:09:23',
  'file_name': 'COCO_train2014_000000405469.jpg',
  'flickr_url': 'http://farm3.staticflickr.com/2875/9483666419_ca1862c28b_z.jpg',
  'height': 480,
  'id': 405469,
  'license': 4,
  'width': 640},
 ...]

In [8]:
ins.keys()


Out[8]:
dict_keys(['info', 'images', 'licenses', 'annotations', 'categories'])

In [9]:
ins['annotations'][0]


Out[9]:
{'area': 54652.9556,
 'bbox': [116.95, 305.86, 285.3, 266.03],
 'category_id': 58,
 'id': 86,
 'image_id': 480023,
 'iscrowd': 0,
 'segmentation': [[312.29,
   562.89,
   402.25,
   511.49,
   400.96,
   425.38,
   398.39,
   372.69,
   388.11,
   332.85,
   318.71,
   325.14,
   295.58,
   305.86,
   269.88,
   314.86,
   258.31,
   337.99,
   217.19,
   321.29,
   182.49,
   343.13,
   141.37,
   348.27,
   132.37,
   358.55,
   159.36,
   377.83,
   116.95,
   421.53,
   167.07,
   499.92,
   232.61,
   560.32,
   300.72,
   571.89]]}

In [10]:
ins['images'][0]


Out[10]:
{'coco_url': 'http://mscoco.org/images/57870',
 'date_captured': '2013-11-14 16:28:13',
 'file_name': 'COCO_train2014_000000057870.jpg',
 'flickr_url': 'http://farm4.staticflickr.com/3153/2970773875_164f0c0b83_z.jpg',
 'height': 480,
 'id': 57870,
 'license': 5,
 'width': 640}

In [11]:
images_dict = {}
for x in ins['images']:
    images_dict[x['id']] = x

In [12]:
images_dict[480023]


Out[12]:
{'coco_url': 'http://mscoco.org/images/480023',
 'date_captured': '2013-11-20 12:06:29',
 'file_name': 'COCO_train2014_000000480023.jpg',
 'flickr_url': 'http://farm4.staticflickr.com/3145/2573294978_b535a7e795_z.jpg',
 'height': 640,
 'id': 480023,
 'license': 4,
 'width': 480}

In [13]:
ins['categories']


Out[13]:
[{'id': 1, 'name': 'person', 'supercategory': 'person'},
 {'id': 2, 'name': 'bicycle', 'supercategory': 'vehicle'},
 {'id': 3, 'name': 'car', 'supercategory': 'vehicle'},
 {'id': 4, 'name': 'motorcycle', 'supercategory': 'vehicle'},
 {'id': 5, 'name': 'airplane', 'supercategory': 'vehicle'},
 {'id': 6, 'name': 'bus', 'supercategory': 'vehicle'},
 {'id': 7, 'name': 'train', 'supercategory': 'vehicle'},
 {'id': 8, 'name': 'truck', 'supercategory': 'vehicle'},
 {'id': 9, 'name': 'boat', 'supercategory': 'vehicle'},
 {'id': 10, 'name': 'traffic light', 'supercategory': 'outdoor'},
 {'id': 11, 'name': 'fire hydrant', 'supercategory': 'outdoor'},
 {'id': 13, 'name': 'stop sign', 'supercategory': 'outdoor'},
 {'id': 14, 'name': 'parking meter', 'supercategory': 'outdoor'},
 {'id': 15, 'name': 'bench', 'supercategory': 'outdoor'},
 {'id': 16, 'name': 'bird', 'supercategory': 'animal'},
 {'id': 17, 'name': 'cat', 'supercategory': 'animal'},
 {'id': 18, 'name': 'dog', 'supercategory': 'animal'},
 {'id': 19, 'name': 'horse', 'supercategory': 'animal'},
 {'id': 20, 'name': 'sheep', 'supercategory': 'animal'},
 {'id': 21, 'name': 'cow', 'supercategory': 'animal'},
 {'id': 22, 'name': 'elephant', 'supercategory': 'animal'},
 {'id': 23, 'name': 'bear', 'supercategory': 'animal'},
 {'id': 24, 'name': 'zebra', 'supercategory': 'animal'},
 {'id': 25, 'name': 'giraffe', 'supercategory': 'animal'},
 {'id': 27, 'name': 'backpack', 'supercategory': 'accessory'},
 {'id': 28, 'name': 'umbrella', 'supercategory': 'accessory'},
 {'id': 31, 'name': 'handbag', 'supercategory': 'accessory'},
 {'id': 32, 'name': 'tie', 'supercategory': 'accessory'},
 {'id': 33, 'name': 'suitcase', 'supercategory': 'accessory'},
 {'id': 34, 'name': 'frisbee', 'supercategory': 'sports'},
 {'id': 35, 'name': 'skis', 'supercategory': 'sports'},
 {'id': 36, 'name': 'snowboard', 'supercategory': 'sports'},
 {'id': 37, 'name': 'sports ball', 'supercategory': 'sports'},
 {'id': 38, 'name': 'kite', 'supercategory': 'sports'},
 {'id': 39, 'name': 'baseball bat', 'supercategory': 'sports'},
 {'id': 40, 'name': 'baseball glove', 'supercategory': 'sports'},
 {'id': 41, 'name': 'skateboard', 'supercategory': 'sports'},
 {'id': 42, 'name': 'surfboard', 'supercategory': 'sports'},
 {'id': 43, 'name': 'tennis racket', 'supercategory': 'sports'},
 {'id': 44, 'name': 'bottle', 'supercategory': 'kitchen'},
 {'id': 46, 'name': 'wine glass', 'supercategory': 'kitchen'},
 {'id': 47, 'name': 'cup', 'supercategory': 'kitchen'},
 {'id': 48, 'name': 'fork', 'supercategory': 'kitchen'},
 {'id': 49, 'name': 'knife', 'supercategory': 'kitchen'},
 {'id': 50, 'name': 'spoon', 'supercategory': 'kitchen'},
 {'id': 51, 'name': 'bowl', 'supercategory': 'kitchen'},
 {'id': 52, 'name': 'banana', 'supercategory': 'food'},
 {'id': 53, 'name': 'apple', 'supercategory': 'food'},
 {'id': 54, 'name': 'sandwich', 'supercategory': 'food'},
 {'id': 55, 'name': 'orange', 'supercategory': 'food'},
 {'id': 56, 'name': 'broccoli', 'supercategory': 'food'},
 {'id': 57, 'name': 'carrot', 'supercategory': 'food'},
 {'id': 58, 'name': 'hot dog', 'supercategory': 'food'},
 {'id': 59, 'name': 'pizza', 'supercategory': 'food'},
 {'id': 60, 'name': 'donut', 'supercategory': 'food'},
 {'id': 61, 'name': 'cake', 'supercategory': 'food'},
 {'id': 62, 'name': 'chair', 'supercategory': 'furniture'},
 {'id': 63, 'name': 'couch', 'supercategory': 'furniture'},
 {'id': 64, 'name': 'potted plant', 'supercategory': 'furniture'},
 {'id': 65, 'name': 'bed', 'supercategory': 'furniture'},
 {'id': 67, 'name': 'dining table', 'supercategory': 'furniture'},
 {'id': 70, 'name': 'toilet', 'supercategory': 'furniture'},
 {'id': 72, 'name': 'tv', 'supercategory': 'electronic'},
 {'id': 73, 'name': 'laptop', 'supercategory': 'electronic'},
 {'id': 74, 'name': 'mouse', 'supercategory': 'electronic'},
 {'id': 75, 'name': 'remote', 'supercategory': 'electronic'},
 {'id': 76, 'name': 'keyboard', 'supercategory': 'electronic'},
 {'id': 77, 'name': 'cell phone', 'supercategory': 'electronic'},
 {'id': 78, 'name': 'microwave', 'supercategory': 'appliance'},
 {'id': 79, 'name': 'oven', 'supercategory': 'appliance'},
 {'id': 80, 'name': 'toaster', 'supercategory': 'appliance'},
 {'id': 81, 'name': 'sink', 'supercategory': 'appliance'},
 {'id': 82, 'name': 'refrigerator', 'supercategory': 'appliance'},
 {'id': 84, 'name': 'book', 'supercategory': 'indoor'},
 {'id': 85, 'name': 'clock', 'supercategory': 'indoor'},
 {'id': 86, 'name': 'vase', 'supercategory': 'indoor'},
 {'id': 87, 'name': 'scissors', 'supercategory': 'indoor'},
 {'id': 88, 'name': 'teddy bear', 'supercategory': 'indoor'},
 {'id': 89, 'name': 'hair drier', 'supercategory': 'indoor'},
 {'id': 90, 'name': 'toothbrush', 'supercategory': 'indoor'}]

In [14]:
labels_dict = {}
for x in ins['categories']:
    labels_dict[x['id']] = x

In [15]:
labels_dict[58]


Out[15]:
{'id': 58, 'name': 'hot dog', 'supercategory': 'food'}

box style:

"bbox" : [x,y,width,height]


In [16]:
csv = ""
for i in ins['annotations'][:1]:
    filename = images_dict[i['image_id']]['file_name']
    x = i['bbox'][0]
    y = i['bbox'][1]
    h = i['bbox'][2]
    w = i['bbox'][3] 
    c = labels_dict[i['category_id']]['name']
    l = "{}, {}, {}, {}, {}, {}\n".format(filename, x,y,h,w,c)
    csv += l

In [17]:
csv


Out[17]:
'COCO_train2014_000000480023.jpg, 116.95, 305.86, 285.3, 266.03, hot dog\n'

In [18]:
csv_final = ""
for i in ins['annotations']:
    filename = images_dict[i['image_id']]['file_name']
    x = i['bbox'][0]
    y = i['bbox'][1]
    h = i['bbox'][2]
    w = i['bbox'][3] 
    c = labels_dict[i['category_id']]['name']
    l = "{}, {}, {}, {}, {}, {}\n".format(filename, x,y,h,w,c)
    csv_final += l

In [19]:
with open("boxes_coco.csv", "w") as text_file:
    text_file.write(csv)

In [ ]: