Closed SadAngelF closed 4 months ago
There is a bug in generate_data.py, line 163.
if 0 < args.iid < 1.0:
should be changed as:
if 0 < args.iid <= 1.0:
Beacuse when iid is 1, the data will in iid_data_partition. So args.iid < 1.0 will produce the none data in partition.
Thx. Fixed already.
This issue is closed due to long time no response.
There is a bug in generate_data.py, line 163.
should be changed as:
Beacuse when iid is 1, the data will in iid_data_partition. So args.iid < 1.0 will produce the none data in partition.