maximuspowers commited on
Commit
a2ce6e9
·
verified ·
1 Parent(s): 88e7822

Update app.py

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