Last active
March 22, 2021 20:45
-
-
Save J3698/468dd159a92ff8f87f1cdc0ec246f115 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
def forward(self, x): | |
outputs = [] | |
for group in self.feats: | |
x = group(x) | |
outputs.append(x) | |
return outputs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment