1# The bare-bones example from the README. 2# Run coco_example.py first to get mask_rcnn_bbox.json 3from tidecv import TIDE, datasets 4 5tide = TIDE() 6tide.evaluate(datasets.COCO(), datasets.COCOResult('mask_rcnn_bbox.json'), mode=TIDE.BOX) 7tide.summarize() 8tide.plot() 9 10