Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|