brain-tumor_image_classific.../README.md

21 lines
839 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

## 代码运行
在本目录下,在命令行中执行下面的命令:
```
python main.py -c ./utils/conf.json
```
- 联邦训练配置一共10台客户端设备no\_models=10每一轮任意挑选其中的5台参与训练k=5 每一次本地训练迭代次数为3次local\_epochs=3全局迭代次数为20次global\_epochs=20
- 集中式训练配置我们不需要单独编写集中式训练代码只需要修改联邦学习配置既可使其等价于集中式训练。具体来说我们将客户端设备no\_models和每一轮挑选的参与训练设备数k都设为1即可。这样只有1台设备参与的联邦训练等价于集中式训练。其余参数配置信息与联邦学习训练一致。图中我们将局部迭代次数分别设置了123来进行比较。