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.
Error when load instances_trainval2014.json, while instances_minival2014.json and instances_testval2017.json work.
I guess there is something wrong in file "trainval2014.json", the size of it is 523,965,144 byte.