CHENxx23

Results 5 comments of CHENxx23

The model I chose is my own model that is there about time prediction and didn't use the one he comes with and still this problem occurs.

I solved this problem, I see your results, the accuracy is not updated for each round, what is this problem, I feel that his set_parameters function and get_parameters are not...

Can we communicate by e-mail? This message communication is not too timely.Here's my email address: [email protected]

> 我遇到了同样的问题,最后,我通过[运行模拟](https://flower.dev/docs/framework/how-to-run-simulations.html)避免了这个问题。 > > * 使用 进行训练时,客户端进程将使用所有 cpu 内核(无论您有多少个内核)。反过来,这可能会导致 DataLoader 读取数据的速度太慢,从而减慢训练过程(我的 cpu 有 64 个内核,10 个客户端加载数据需要 20 秒)。`num_workers=0` > * 但是,当您指定 时,您还将遇到客户端子集的上述错误(例如,我有 10 个客户端,大多数情况下有一半的客户端因为这个错误而退出。`num_workers>0` > * 该问题似乎与 Pytorch 和 CUDA...