Zinan Lin
Zinan Lin
Recently, I met with another problem. I tried to run main.py in the example_training file and main_generate_data.py in the example_generating_data file. However, the result was that only a file named...
The library gives incorrect behavior with `getattr`: ```Python >>> from addict import Dict >>> body = Dict(a=1) >>> body.freeze() >>> getattr(body, 'missing', 2) Traceback (most recent call last): File "",...
Hi, I enjoyed reading this WGAN-GP paper so much! I am trying to reproduce the unsupervised inception scores 7.86+-0.07 on CIFAR-10. I just want to make sure what I did...
It seems like the library does not handle namespace packages (https://packaging.python.org/en/latest/guides/packaging-namespace-packages/) correctly. Even when the package is installed, the library will still return fake modules. A minimal example to reproduce...