You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 5, 2020. It is now read-only.
When I run the run_eval.sh in the mask_rcnn_2go, the error message shows:
Traceback (most recent call last):
File "code/eval_seg_cpu.py", line 193, in <module>
main()
File "code/eval_seg_cpu.py", line 188, in main
net = load_model(args)
File "code/eval_seg_cpu.py", line 73, in load_model
args.net, args.init_net, is_run_init=True, is_create_net=True
File "/home/thk/gitlab_proj/caffe2_models/mask_rcnn_2go/code/model_utils.py", line 19, in load_model_pb
net.Proto().ParseFromString(open(net_file, "rb").read())
google.protobuf.message.DecodeError: Error parsing message
When I run the
run_eval.shin themask_rcnn_2go, the error message shows:The content of my
run_eval.shis:The
load_model_pb()has received thenet_filepath correctly, so the error seems to be caused by the model when it's been loaded.Is the models given in the
mask_rcnn_2goare bug free? Or did I do something wrong when trying the sample code?