Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,10 @@ import nlpaug.augmenter.word as naw
|
|
3 |
import nlpaug.augmenter.char as nac
|
4 |
import nlpaug.augmenter.sentence as nas
|
5 |
|
|
|
|
|
|
|
|
|
6 |
# Function for NLP augmentation
|
7 |
def augment_text(text, method):
|
8 |
if method == "Synonym Replacement":
|
|
|
3 |
import nlpaug.augmenter.char as nac
|
4 |
import nlpaug.augmenter.sentence as nas
|
5 |
|
6 |
+
import nltk
|
7 |
+
nltk.download('averaged_perceptron_tagger')
|
8 |
+
nltk.download('wordnet')
|
9 |
+
|
10 |
# Function for NLP augmentation
|
11 |
def augment_text(text, method):
|
12 |
if method == "Synonym Replacement":
|