jeffheaton/t81_558_deep_learning

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

eluzzi5 opened this issue · 2 comments

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! :)

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.

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!