Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ sp = load_sp_model()
|
|
22 |
@torch.no_grad()
|
23 |
def predict_next_words(text, max_predictions=3):
|
24 |
"""Predict up to max_predictions next words."""
|
25 |
-
text = text.strip()
|
26 |
if not text:
|
27 |
return []
|
28 |
|
|
|
22 |
@torch.no_grad()
|
23 |
def predict_next_words(text, max_predictions=3):
|
24 |
"""Predict up to max_predictions next words."""
|
25 |
+
text = text.strip().lower()
|
26 |
if not text:
|
27 |
return []
|
28 |
|