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
When I first use the smac for pymarl . I use this program "python src/main.py --config=qmix --env-config=sc2 with env_args.map_name=2s3z", then has some wrong message .
Traceback (most recent call last):
File "src/main.py", line 79, in
config_dict = yaml.load(f)
TypeError: load() missing 1 required positional argument: 'Loader'
I don't know the Loader should be what parameter, so I need some help! Thank you !
The text was updated successfully, but these errors were encountered:
I have encounterd the same issue. For you installed a newer version of pyyaml. Alternatively, you can modify the load() function's parameters: yaml.load(fo.read(), Loader=yaml.FullLoader)
When I first use the smac for pymarl . I use this program "python src/main.py --config=qmix --env-config=sc2 with env_args.map_name=2s3z", then has some wrong message .
Traceback (most recent call last):
File "src/main.py", line 79, in
config_dict = yaml.load(f)
TypeError: load() missing 1 required positional argument: 'Loader'
I don't know the Loader should be what parameter, so I need some help! Thank you !
The text was updated successfully, but these errors were encountered: