Update handler.py
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -232,7 +232,7 @@ class QuestionModel:
|
|
232 |
max_length=self.max_length,
|
233 |
input_str=True)
|
234 |
output = self.get_prediction(instance)
|
235 |
-
print(output)
|
236 |
utt.question = np.argmax(
|
237 |
output["is_question_logits"][0].tolist())
|
238 |
|
|
|
232 |
max_length=self.max_length,
|
233 |
input_str=True)
|
234 |
output = self.get_prediction(instance)
|
235 |
+
# print(output)
|
236 |
utt.question = np.argmax(
|
237 |
output["is_question_logits"][0].tolist())
|
238 |
|