jeffheaton / t81_558_deep_learning

T81-558: Keras - Applications of Deep Neural Networks @Washington University in St. Louis
https://sites.wustl.edu/jeffheaton/t81-558/
Other
5.71k stars 3.04k forks source link

"AttributeError: module 'dnnlib' has no attribute 'SubmitConfig" #87

Closed eluzzi5 closed 3 years ago

eluzzi5 commented 3 years ago

I am running into the error "AttributeError: module 'dnnlib' has no attribute 'SubmitConfig" after running the code: sc = dnnlib.SubmitConfig()

Since this is coming from the dnnlib, which was not written by me, I'm not sure how to proceed. Any help would be greatly appreciated! :)

EricHallahan commented 3 years ago

Digging into this, this looks like an oversight after the recent port from NVlabs/stylegan2 to NVlabs/stylegan2-ada. (47bbf0a and 0d7490f). t81_558_class_07_3_style_gan.ipynb should be rewritten to not use dnnlib.SubmitConfig and the currently undefined pretrained_networks object in Examining the Latent Vector.

eluzzi5 commented 3 years ago

Digging into this, this looks like an oversight after the recent port from NVlabs/stylegan2 to NVlabs/stylegan2-ada. (47bbf0a and 0d7490f). t81_558_class_07_3_style_gan.ipynb should be rewritten to not use dnnlib.SubmitConfig and the currently undefined pretrained_networks object in Examining the Latent Vector.

thank you so much!