We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c5f1d8 commit b54a964Copy full SHA for b54a964
outlines/generate/api.py
@@ -232,7 +232,7 @@ def __call__(
232
# We reshape the output to (batch_size, sample_size)
233
output: List[List[FormattedOutput]] = list()
234
for i in range(0, batch_size * num_samples, num_samples):
235
- output.append(formatted[i : i + num_samples]
+ output.append(formatted[i : i + num_samples])
236
237
# We remove leading dimensions for the output
238
if batch_size == 1 and num_samples == 1:
0 commit comments