You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FedMeta\client.py:
line 135
if name == 'main':
client = MetaClient()
client.run()
line 21
class MetaClient(Client):
Flamingo\core\client.py:
line 104、37、67
class Client():
def init(self):
....
args = get_args()
....
self.args = args
for key, value in vars(args).items():
# if value is not None:
setattr(self, key, value)
....
if self.USE_SIM_SYSHET:
The text was updated successfully, but these errors were encountered:
在client.py中实例化client = MetaClient() 时,MetaClient继承自core\client.py的Client()类,但是在Client类的初始化函数中用到了USE_SIM_SYSHET属性,而这个属性似乎没有定义过?需要在FedMeta\config.yaml中自己定义一个吗?
FedMeta\client.py:
line 135
if name == 'main':
client = MetaClient()
client.run()
line 21
class MetaClient(Client):
Flamingo\core\client.py:
line 104、37、67
class Client():
def init(self):
....
args = get_args()
....
self.args = args
for key, value in vars(args).items():
# if value is not None:
setattr(self, key, value)
....
if self.USE_SIM_SYSHET:
The text was updated successfully, but these errors were encountered: