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
In the Pytorch/GANs /CycleGAN/ generator_model.py file, there is a minor typo in the Generator class initialization. The second argument 9 refers to num_features, but it should be num_residuals instead.
This is a minor issue, but it results in a lower number of model parameters, and made me like "Wow this model is pretty small!"
Steps to Reproduce:
Open the generator_model.py file.
Locate the Generator class initialization in the test function.
Note that the second argument when initializing is 9.
Reproduces How Often:
Always.
The text was updated successfully, but these errors were encountered:
Description:
In the Pytorch/GANs /CycleGAN/ generator_model.py file, there is a minor typo in the Generator class initialization. The second argument
9
refers to num_features, but it should be num_residuals instead.This is a minor issue, but it results in a lower number of model parameters, and made me like "Wow this model is pretty small!"
Steps to Reproduce:
Open the generator_model.py file.
Locate the Generator class initialization in the test function.
Note that the second argument when initializing is 9.
Reproduces How Often:
Always.
The text was updated successfully, but these errors were encountered: