Duankaiwen / CenterNet

Codes for our paper "CenterNet: Keypoint Triplets for Object Detection" .
MIT License
1.86k stars 384 forks source link

Error when load instances_trainval2014.json #102

Closed myselvess closed 5 years ago

myselvess commented 5 years ago

Error when load instances_trainval2014.json, while instances_minival2014.json and instances_testval2017.json work.

import json f = open("instances_testdevl2017.json",'r') test = json.load(f) f = open("instances_minival2014.json",'r') val = json.load(f) f = open("instances_trainval2014.json",'r') train = json.load(f) Killed

I guess there is something wrong in file "trainval2014.json", the size of it is 523,965,144 byte.

myselvess commented 5 years ago

Sorry, it is because the memory is not enough