aarohanverma commited on
Commit
6df31fc
·
verified ·
1 Parent(s): b1d4b68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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