Skip to content

Commit

Permalink
Update backend/python/transformers/transformers_server.py
Browse files Browse the repository at this point in the history
Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
  • Loading branch information
mudler committed Mar 26, 2024
1 parent b2ffd14 commit 18747ef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/python/transformers/transformers_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ def Predict(self, request, context, streaming=False):
do_sample=True,
pad_token=self.tokenizer.eos_token_id)
generated_text = self.tokenizer.batch_decode(outputs[:, inputs["input_ids"].shape[1]:], skip_special_tokens=True)[0]
yield backend_pb2.Reply(message=bytes(new_text, encoding='utf-8'))
return backend_pb2.Reply(message=bytes(generated_text, encoding='utf-8'))

def PredictStream(self, request, context):
Expand Down

0 comments on commit 18747ef

Please sign in to comment.