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
Thank you for this amazing repository. I had one question about implementation of VGG19() in external_function.py, If you look at line 362-363, shouldn't it be "relu3_3": for x in range(14, 16): self.relu3_3.add_module(str(x), features[x]) ,
currently it is written as self.relu3_2.add_module(str(x), features[x]) and has been repeated twice.