MANIFEST.in
README.md
setup.py
nlpaug/__init__.py
nlpaug/base_augmenter.py
nlpaug.egg-info/PKG-INFO
nlpaug.egg-info/SOURCES.txt
nlpaug.egg-info/dependency_links.txt
nlpaug.egg-info/top_level.txt
nlpaug/augmenter/__init__.py
nlpaug/augmenter/augment.py
nlpaug/augmenter/audio/__init__.py
nlpaug/augmenter/audio/audio_augmenter.py
nlpaug/augmenter/audio/crop.py
nlpaug/augmenter/audio/loudness.py
nlpaug/augmenter/audio/mask.py
nlpaug/augmenter/audio/noise.py
nlpaug/augmenter/audio/pitch.py
nlpaug/augmenter/audio/shift.py
nlpaug/augmenter/audio/speed.py
nlpaug/augmenter/audio/vtlp.py
nlpaug/augmenter/char/__init__.py
nlpaug/augmenter/char/char_augmenter.py
nlpaug/augmenter/char/keyboard.py
nlpaug/augmenter/char/ocr.py
nlpaug/augmenter/char/random.py
nlpaug/augmenter/sentence/__init__.py
nlpaug/augmenter/sentence/context_word_embs_sentence.py
nlpaug/augmenter/sentence/sentence_augmenter.py
nlpaug/augmenter/spectrogram/__init__.py
nlpaug/augmenter/spectrogram/frequency_masking.py
nlpaug/augmenter/spectrogram/spectrogram_augmenter.py
nlpaug/augmenter/spectrogram/time_masking.py
nlpaug/augmenter/spectrogram/time_warping.py
nlpaug/augmenter/word/__init__.py
nlpaug/augmenter/word/antonym.py
nlpaug/augmenter/word/back_translation.py
nlpaug/augmenter/word/context_word_embs.py
nlpaug/augmenter/word/random.py
nlpaug/augmenter/word/spelling.py
nlpaug/augmenter/word/split.py
nlpaug/augmenter/word/synonym.py
nlpaug/augmenter/word/tfidf.py
nlpaug/augmenter/word/word_augmenter.py
nlpaug/augmenter/word/word_embs.py
nlpaug/flow/__init__.py
nlpaug/flow/pipeline.py
nlpaug/flow/sequential.py
nlpaug/flow/sometimes.py
nlpaug/model/__init__.py
nlpaug/model/audio/__init__.py
nlpaug/model/audio/audio.py
nlpaug/model/audio/crop.py
nlpaug/model/audio/loudness.py
nlpaug/model/audio/mask.py
nlpaug/model/audio/noise.py
nlpaug/model/audio/pitch.py
nlpaug/model/audio/shift.py
nlpaug/model/audio/speed.py
nlpaug/model/audio/vtlp.py
nlpaug/model/char/__init__.py
nlpaug/model/char/char.py
nlpaug/model/char/keyboard.py
nlpaug/model/char/ocr.py
nlpaug/model/lang_models/__init__.py
nlpaug/model/lang_models/bert.py
nlpaug/model/lang_models/distilbert.py
nlpaug/model/lang_models/fairseq.py
nlpaug/model/lang_models/gpt2.py
nlpaug/model/lang_models/language_models.py
nlpaug/model/lang_models/roberta.py
nlpaug/model/lang_models/xlnet.py
nlpaug/model/spectrogram/__init__.py
nlpaug/model/spectrogram/frequency_masking.py
nlpaug/model/spectrogram/spectrogram.py
nlpaug/model/spectrogram/time_masking.py
nlpaug/model/spectrogram/time_warping.py
nlpaug/model/word_dict/__init__.py
nlpaug/model/word_dict/ppdb.py
nlpaug/model/word_dict/spelling.py
nlpaug/model/word_dict/word_dictionary.py
nlpaug/model/word_dict/wordnet.py
nlpaug/model/word_embs/__init__.py
nlpaug/model/word_embs/fasttext.py
nlpaug/model/word_embs/glove.py
nlpaug/model/word_embs/word2vec.py
nlpaug/model/word_embs/word_embeddings.py
nlpaug/model/word_stats/__init__.py
nlpaug/model/word_stats/tfidf.py
nlpaug/model/word_stats/word_statistics.py
nlpaug/res/char/keyboard/en.json
nlpaug/res/char/keyboard/th.json
nlpaug/util/__init__.py
nlpaug/util/action.py
nlpaug/util/method.py
nlpaug/util/audio/__init__.py
nlpaug/util/audio/loader.py
nlpaug/util/audio/visualizer.py
nlpaug/util/decorator/__init__.py
nlpaug/util/decorator/deprecation.py
nlpaug/util/doc/__init__.py
nlpaug/util/doc/change_log.py
nlpaug/util/doc/doc.py
nlpaug/util/doc/token.py
nlpaug/util/exception/__init__.py
nlpaug/util/exception/exception_info.py
nlpaug/util/exception/warning.py
nlpaug/util/file/__init__.py
nlpaug/util/file/download.py
nlpaug/util/math/__init__.py
nlpaug/util/math/normalization.py
nlpaug/util/selection/__init__.py
nlpaug/util/selection/filtering.py
nlpaug/util/selection/randomness.py
nlpaug/util/text/__init__.py
nlpaug/util/text/part_of_speech.py
nlpaug/util/text/tokenizer.py
test/__init__.py
test/run_test.py
test/augmenter/__init__.py
test/augmenter/test_augmenter.py
test/augmenter/audio/__init__.py
test/augmenter/audio/test_audio.py
test/augmenter/audio/test_crop.py
test/augmenter/audio/test_loudness.py
test/augmenter/audio/test_mask.py
test/augmenter/audio/test_noise.py
test/augmenter/audio/test_pitch.py
test/augmenter/audio/test_shift.py
test/augmenter/audio/test_speed.py
test/augmenter/audio/test_vtlp.py
test/augmenter/char/__init__.py
test/augmenter/char/test_char.py
test/augmenter/char/test_keyboard.py
test/augmenter/char/test_ocr.py
test/augmenter/char/test_random_char.py
test/augmenter/sentence/__init__.py
test/augmenter/sentence/test_context_word_embs_sentence.py
test/augmenter/sentence/test_sentence.py
test/augmenter/spectrogram/__init__.py
test/augmenter/spectrogram/test_frequency_masking.py
test/augmenter/spectrogram/test_spectrogram.py
test/augmenter/spectrogram/test_time_masking.py
test/augmenter/word/__init__.py
test/augmenter/word/test_antonym.py
test/augmenter/word/test_back_translation.py
test/augmenter/word/test_context_word_embs.py
test/augmenter/word/test_random_word.py
test/augmenter/word/test_spelling.py
test/augmenter/word/test_split.py
test/augmenter/word/test_synonym.py
test/augmenter/word/test_tfidf.py
test/augmenter/word/test_word.py
test/augmenter/word/test_word_embs.py
test/flow/__init__.py
test/flow/test_flow.py
test/flow/test_sequential.py
test/flow/test_sometimes.py
test/model/__init__.py
test/model/char/__init__.py
test/model/char/test_keyboard_model.py
test/model/word/__init__.py
test/model/word/test_word_embs_model.py
test/profiling/__init__.py
test/profiling/sentence/__init__.py
test/profiling/sentence/test_context_word_embs_sentence_profiling.py
test/util/__init__.py
test/util/selection/__init__.py
test/util/selection/test_filtering.py