Add checks for forward() inputs on the client side (#123)

pull/126/head
justheuristic 2 years ago committed by GitHub
parent 055f85b83e
commit 8491ed2bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -53,6 +53,8 @@ class RemoteSequential(nn.Module):
self.is_subsequence = self.sequence_manager.sequence_info.block_uids != block_uids
def forward(self, inputs: torch.Tensor, prompts: torch.Tensor = DUMMY):
assert inputs.ndim == 3, "inputs must be a tensor of shape [batch_size, seq_length, hidden_size]"
assert inputs.shape[1] <= 2048, "The sequence length is capped at 2048 tokens in this version"
outputs = _RemoteSequentialAutogradFunction.apply(inputs, prompts, self.sequence_manager)
return outputs

Loading…
Cancel
Save