Questions about running code that others encountered

1, environmental issues:

https://github.com/matterport/Mask_RCNN

Now issue inside to find solutions

 

Obviously installed a corresponding environment, but still should not have errors, consider whether or not to use the default environment, you need to delete the default environment;

Remove the default directory environment /mnt/xxxxx/.pylib/3

 

2, look at the specific error, summed up method

报错:RuntimeError: can't start new thread

Solution: Modify settings model.py in, because the environment does not support multi-threading

# workers=workers,
# use_multiprocessing=True,
workers=1,
use_multiprocessing=False,

 

Finally, completely digest algorithm code;

 

Guess you like

Origin www.cnblogs.com/Allen-rg/p/11996986.html