Skip to content

Commit fb8268d

Browse files
committed
ok
1 parent c449af0 commit fb8268d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
0 Bytes
Binary file not shown.

__pycache__/resblocks.cpython-311.pyc

0 Bytes
Binary file not shown.

model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,8 @@ def decode_latent_tokens(self,f_r,t_r,t_c):
414414
return x_reconstructed
415415

416416
def forward(self, x_current, x_reference):
417-
x_current = x_current.requires_grad_()
418-
x_reference = x_reference.requires_grad_()
417+
# x_current = x_current.requires_grad_()
418+
# x_reference = x_reference.requires_grad_()
419419
# Forward Pass
420420
f_r = self.dense_feature_encoder(x_reference)
421421
t_r = self.latent_token_encoder(x_reference)

0 commit comments

Comments
 (0)