Skip to content

Instantly share code, notes, and snippets.

@J3698
Last active March 22, 2021 20:45
Show Gist options
  • Save J3698/468dd159a92ff8f87f1cdc0ec246f115 to your computer and use it in GitHub Desktop.
Save J3698/468dd159a92ff8f87f1cdc0ec246f115 to your computer and use it in GitHub Desktop.
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