OFA-Sys / DAFlow

124 stars 16 forks source link

Question about VGGLoss in models/external_function.py #19

Open kanthprashant opened 1 year ago

kanthprashant commented 1 year ago

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!