Created
February 14, 2021 15:14
-
-
Save aribornstein/bac9045b7e95752a1fef2c4df1debbc0 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(...): | |
embeddings = self.encoder(x) | |
def training_step(...): | |
x, y = ... | |
z = self.encoder(x) | |
pred = self.decoder(z) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment