sashtech commited on
Commit
ffbdb95
·
verified ·
1 Parent(s): c7c1d09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -200,10 +200,10 @@ def paraphrase_and_correct(text):
200
  paraphrased_text = capitalize_sentences_and_nouns(plag_removed)
201
  paraphrased_text = force_first_letter_capital(paraphrased_text)
202
  paraphrased_text = correct_article_errors(paraphrased_text)
203
- paraphrased_text = correct_tense_errors(paraphrased_text)
204
- paraphrased_text = ensure_subject_verb_agreement(paraphrased_text)
205
  paraphrased_text = fix_possessives(paraphrased_text)
206
  paraphrased_text = correct_spelling(paraphrased_text)
 
 
207
  paraphrased_text = fix_punctuation_spacing(paraphrased_text)
208
  processed_paragraphs.append(paraphrased_text)
209
 
 
200
  paraphrased_text = capitalize_sentences_and_nouns(plag_removed)
201
  paraphrased_text = force_first_letter_capital(paraphrased_text)
202
  paraphrased_text = correct_article_errors(paraphrased_text)
 
 
203
  paraphrased_text = fix_possessives(paraphrased_text)
204
  paraphrased_text = correct_spelling(paraphrased_text)
205
+ paraphrased_text = correct_tense_errors(paraphrased_text)
206
+ paraphrased_text = ensure_subject_verb_agreement(paraphrased_text)
207
  paraphrased_text = fix_punctuation_spacing(paraphrased_text)
208
  processed_paragraphs.append(paraphrased_text)
209