Output logits
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -26,4 +26,4 @@ class EndpointHandler:
|
|
26 |
# postprocess the prediction
|
27 |
logits = outputs.logits
|
28 |
idx = logits.argmax(-1).item()
|
29 |
-
return [{"best_answer": self.model.config.id2label[idx], "
|
|
|
26 |
# postprocess the prediction
|
27 |
logits = outputs.logits
|
28 |
idx = logits.argmax(-1).item()
|
29 |
+
return [{"best_answer": self.model.config.id2label[idx], "logits":outputs.logits}]
|