It seems like the SHAWrapFedex missed to take client_cfgs. Please check.
The Line
|
elif init_cfg.hpo.scheduler.startswith('wrap', client_cfgs): |
elif init_cfg.hpo.scheduler.startswith('wrap', client_cfgs):
scheduler = SHAWrapFedex(init_cfg)
perhaps to be changed to
elif init_cfg.hpo.scheduler.startswith('wrap'):
scheduler = SHAWrapFedex(init_cfg, client_cfgs)
It seems like the
SHAWrapFedexmissed to takeclient_cfgs. Please check.The Line
FederatedScope/federatedscope/autotune/algos.py
Line 65 in 7f0af2d
perhaps to be changed to