XiaohangZhan / deocclusion

Code for our CVPR 2020 work.
Apache License 2.0
794 stars 104 forks source link

Question about Loader in demo_cocoa.ipynb #55

Closed IvanChen777 closed 11 months ago

IvanChen777 commented 2 years ago
截屏2022-11-02 11 19 57

Hi, I met a problem in demo_cocoa.ipynb, it seems that the problem is from yaml package, then I try to change the yaml.load(f) to yaml.safe_load or full load, or add a argument loader, but the result is still the same. Does someone knows how to deal with this issue? Thank you in advance.

Onypony commented 2 years ago

Replace yaml.load(f) with yaml.load(f, Loader=yaml.FullLoader)

starryCcchj commented 1 year ago

I have met the same problem. Is there any solution now?

liushawn618 commented 6 months ago

yaml.safe_load(f) works for me