IDGL icon indicating copy to clipboard operation
IDGL copied to clipboard

idgl.yml

Open RichardShea opened this issue 2 years ago • 1 comments

When I run python main.py -config config/cora/idgl.yml, I get the following error:

Traceback (most recent call last): File "main.py", line 123, in config = get_config(cfg['config']) File "main.py", line 58, in get_config config = yaml.load(setting) TypeError: load() missing 1 required positional argument: 'Loader'

RichardShea avatar Feb 10 '23 15:02 RichardShea

This is the problem caused by the discrepancy on yaml version. you can solve this error by changing the following

config = yaml.full_load(setting)

Junseok0207 avatar Mar 02 '23 08:03 Junseok0207