Created
March 22, 2021 15:51
-
-
Save J3698/c60174391f6ce6c134355581d6719b81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class VGG19Encoder(nn.Module): | |
def __init__(self): | |
super().__init__() | |
self.feats = nn.Sequential(*self.extract_vgg19_pretrained_layers()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment