Xiao-Chenguang / FedMind

Federated Learning framework for researcher on top of PyTorch.
https://github.com/Xiao-Chenguang/FedMind
MIT License
1 stars 0 forks source link

Exception handling in subprocess #70

Open Xiao-Chenguang opened 15 hours ago

Xiao-Chenguang commented 15 hours ago

There is no exception handling in the subprocess currently. Developing a new algorithm in such a case is somehow complex as there may be an error in the subprocess but nothing will be presented in the main process except that the program is stuck.

Xiao-Chenguang commented 15 hours ago

The best practice of exception handling in subprocesses needs to be considered. For now, adding try exception in the proper position will be a good temporary solution.