Closed painterdrown closed 6 years ago
I found the problem!
The author might forget to uncomment the train code in experiments/fgfa_rfcn/fgfa_rfcn_end2end_train_test
:
if __name__ == "__main__":
# train_end2end.main()
test.main()
should be uncomment as:
if __name__ == "__main__":
train_end2end.main()
test.main()
The version of mxnet is v0.10.0 I managed to run the demo, but when I try to train, an error occurs:
How can I solve this problem?