Spaces:
Runtime error
Runtime error
Greg Thompson
commited on
Commit
·
e7b3771
1
Parent(s):
b5b1714
Remove print statement from keyword search
Browse files- mathtext_fastapi/nlu.py +0 -1
mathtext_fastapi/nlu.py
CHANGED
@@ -157,7 +157,6 @@ def run_intent_classification(message_text):
|
|
157 |
score = 0
|
158 |
|
159 |
if score > 80:
|
160 |
-
print(f"TOK: {tok}, SCORE: {score}")
|
161 |
nlu_response['data'] = keyword
|
162 |
nlu_response['confidence'] = score
|
163 |
|
|
|
157 |
score = 0
|
158 |
|
159 |
if score > 80:
|
|
|
160 |
nlu_response['data'] = keyword
|
161 |
nlu_response['confidence'] = score
|
162 |
|