You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An error occurred when running multi_code. Checking the code found two errors in the derivable_generator.py file. The errors are as follows:
line 66
self.stylegan = get_gan_model(gan_model_name).net ---> self.stylegan = get_gan_model(gan_model_name)
line 77
self.stylegan.cuda(device=device) ---> self.stylegan.net.cuda(device=device)
The text was updated successfully, but these errors were encountered:
An error occurred when running multi_code. Checking the code found two errors in the derivable_generator.py file. The errors are as follows:
line 66
self.stylegan = get_gan_model(gan_model_name).net ---> self.stylegan = get_gan_model(gan_model_name)
line 77
self.stylegan.cuda(device=device) ---> self.stylegan.net.cuda(device=device)
The text was updated successfully, but these errors were encountered: