Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
johndpope committed Oct 18, 2024
1 parent c449af0 commit fb8268d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified __pycache__/lia_resblocks.cpython-311.pyc
Binary file not shown.
Binary file modified __pycache__/resblocks.cpython-311.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions model.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ def decode_latent_tokens(self,f_r,t_r,t_c):
return x_reconstructed

def forward(self, x_current, x_reference):
x_current = x_current.requires_grad_()
x_reference = x_reference.requires_grad_()
# x_current = x_current.requires_grad_()
# x_reference = x_reference.requires_grad_()
# Forward Pass
f_r = self.dense_feature_encoder(x_reference)
t_r = self.latent_token_encoder(x_reference)
Expand Down

0 comments on commit fb8268d

Please sign in to comment.