Update t2s_model.py (#1283)

y is None at no reference mode, and Nonetype object has no attribute shape
This commit is contained in:
XXXXRT666 2024-07-08 20:51:15 +08:00 committed by GitHub
parent 8d0cf0f8a9
commit 923af471d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -528,6 +528,7 @@ class Text2SemanticDecoder(nn.Module):
y_pos = None
xy_pos = x
y = torch.zeros(x.shape[0], 0, dtype=torch.int, device=x.device)
prompts = y
ref_free = True
x_attn_mask_pad = F.pad(
@ -582,4 +583,4 @@ class Text2SemanticDecoder(nn.Module):
if ref_free:
return y[:, :-1], 0
return y[:, :-1], idx - 1
return y[:, :-1], idx - 1