Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: load() missing 1 required positional argument: 'Loader' #17

Open
mohammadnabeel opened this issue Jan 23, 2022 · 2 comments
Open

Comments

@mohammadnabeel
Copy link

Hello!

I tried the file Test.py by using:
test.py --ymlpath=./experiment/singleview2500/d2_singleview2500.yml --gpu=0 --dataroot=./data/LIDC-HDF5-256 --dataset=test --tag=d2_singleview2500 --data=LIDC256 --dataset_class=align_ct_xray_std --model_class=SingleViewCTGAN --datasetfile=./data/test.txt --resultdir=./singleview --check_point=30 --how_many=3

and I always get the error TypeError: load() missing 1 required positional argument: 'Loader'
I tried to have the version of 5.4.1 for pyYAML, but I couldn't!! (I read that this might by the solution on some websites)
Anyone can help?

@yinyin-llll
Copy link

you can try this:

import yaml

def cfg_from_yaml(ymlpath):
with open(ymlpath, 'r') as f:
yaml_cfg = yaml.load(f, Loader=yaml.FullLoader) # add Loader parameter

@WesleyWu42
Copy link

change the load() to safe_load(),new version of yaml has changed the usage of it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants