Spaces:
Sleeping
Sleeping
Commit
·
95fd103
1
Parent(s):
83a9e09
Adding print statemnt
Browse files
app.py
CHANGED
@@ -62,6 +62,7 @@ def generateSubject(email):
|
|
62 |
outputs_batch = [seq.split('<subject>')[1] for seq in
|
63 |
tokenizer.batch_decode(output_ids, skip_special_tokens=True)]
|
64 |
tokenizer.padding_side='right'
|
|
|
65 |
|
66 |
return outputs_batch[0]
|
67 |
|
|
|
62 |
outputs_batch = [seq.split('<subject>')[1] for seq in
|
63 |
tokenizer.batch_decode(output_ids, skip_special_tokens=True)]
|
64 |
tokenizer.padding_side='right'
|
65 |
+
print(outputs_batch)
|
66 |
|
67 |
return outputs_batch[0]
|
68 |
|