DAFlow
DAFlow copied to clipboard
Question about VGGLoss in models/external_function.py
Hi,
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.
Thank You!