Metadata-Version: 2.1
Name: nlpaug
Version: 0.0.8
Summary: Natural language processing augmentation library for deep neural networks
Home-page: https://github.com/makcedward/nlpaug
Author: Edward Ma
Author-email: makcedward@gmail.com
License: MIT
Description: [![Build Status](https://travis-ci.org/makcedward/nlpaug.svg?branch=master)](https://travis-ci.org/makcedward/nlpaug)
        [![Codacy Badge](https://api.codacy.com/project/badge/Grade/2d6d1d08016a4f78818161a89a2dfbfb)](https://www.codacy.com/app/makcedward/nlpaug?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=makcedward/nlpaug&amp;utm_campaign=Badge_Grade)
        
        # nlpaug
        
        This python library helps you with augmenting nlp for your machine learning projects. Visit this introduction to understand about [Data Augmentation in NLP](https://towardsdatascience.com/data-augmentation-in-nlp-2801a34dfc28). `Augmenter` is the basic element of augmentation while `Flow` is a pipeline to orchestra multi augmenter together.
        *   [Data Augmentation library for Text](https://towardsdatascience.com/data-augmentation-library-for-text-9661736b13ff)
        *   [Data Augmentation library for Speech Recognition](https://towardsdatascience.com/data-augmentation-for-speech-recognition-e7c607482e78)
        *   [Data Augmentation library for Audio](https://towardsdatascience.com/data-augmentation-for-audio-76912b01fdf6)
        *   [Does your NLP model able to prevent adversarial attack?](https://medium.com/hackernoon/does-your-nlp-model-able-to-prevent-adversarial-attack-45b5ab75129c)
        
        ## Starter Guides
        *   [Augmentation for character and word](https://github.com/makcedward/nlpaug/blob/master/example/overview.ipynb)
        *   [Augmentation for spectrogram (audio input)](https://github.com/makcedward/nlpaug/blob/master/example/spectrogram_augmenter.ipynb)
        *   [Augmentation for audio](https://github.com/makcedward/nlpaug/blob/master/example/audio_augmenter.ipynb)
        *   How to train [TF-IDF model](https://github.com/makcedward/nlpaug/blob/master/example/tfidf-train_model.ipynb)
        *   How to create [custom augmentation](https://github.com/makcedward/nlpaug/blob/master/example/custom_augmenter.ipynb)
        *   [API Documentation](https://nlpaug.readthedocs.io/en/latest/)
        
        ## Flow
        | Pipeline | Description |
        |:---:|:---:|
        | Sequential | Apply list of augmentation functions sequentially |
        | Sometimes | Apply some augmentation functions randomly |
        
        
        ## Textual Augmenter
        | Target | Augmenter | Action | Description |
        |:---:|:---:|:---:|:---:|
        | Character | RandomAug | insert | Insert character randomly |
        | | | substitute | Substitute character randomly |
        | | | swap | Swap character randomly |
        | | | delete | Delete character randomly |
        | | OcrAug | substitute | Simulate OCR engine error |
        | | KeyboardAug | substitute | Simulate keyboard distance error |
        | Word | RandomWordAug | swap | Swap word randomly |
        | | | delete | Delete word randomly |
        | | SpellingAug | substitute | Substitute word according to spelling mistake dictionary |
        | | WordNetAug | substitute | Substitute word according to WordNet's synonym |
        | | WordEmbsAug | insert | Insert word randomly from [word2vec](https://towardsdatascience.com/3-silver-bullets-of-word-embedding-in-nlp-10fa8f50cc5a), [GloVe](https://towardsdatascience.com/3-silver-bullets-of-word-embedding-in-nlp-10fa8f50cc5a) or [fasttext](https://towardsdatascience.com/3-silver-bullets-of-word-embedding-in-nlp-10fa8f50cc5a) dictionary |
        | | | substitute | Substitute word based on [word2vec](https://towardsdatascience.com/3-silver-bullets-of-word-embedding-in-nlp-10fa8f50cc5a), [GloVe](https://towardsdatascience.com/3-silver-bullets-of-word-embedding-in-nlp-10fa8f50cc5a) or [fasttext](https://towardsdatascience.com/3-silver-bullets-of-word-embedding-in-nlp-10fa8f50cc5a) embeddings |
        | | TfIdfAug | insert | Insert word randomly trained TF-IDF model |
        | | | substitute | Substitute word based on TF-IDF score |
        | | ContextualWordEmbsAug | insert | Insert word based by feeding surroundings word to [BERT](https://towardsdatascience.com/how-bert-leverage-attention-mechanism-and-transformer-to-learn-word-contextual-relations-5bbee1b6dbdb) and XLNet language model |
        | | | substitute | Substitute word based by feeding surroundings word to [BERT](https://towardsdatascience.com/how-bert-leverage-attention-mechanism-and-transformer-to-learn-word-contextual-relations-5bbee1b6dbdb) and XLNet language model |
        | Sentence | ContextualWordEmbsForSentenceAug | insert | Insert sentence according to GPT2 or XLNet prediction |
        
        ## Signal Augmenter
        | Target | Augmenter | Action | Description |
        |:---:|:---:|:---:|:---:|
        | Audio | NoiseAug | substitute | Inject noise |
        | | PitchAug | substitute | Adjust audio's pitch |
        | | ShiftAug | substitute | Shift time dimension forward/ backward |
        | | SpeedAug | substitute | Adjust audio's speed |
        | | CropAug | delete | Delete audio's segment |
        | | LoudnessAug|substitute | Adjust audio's volume |
        | | MaskAug | substitute | Mask audio's segment |
        | Spectrogram | FrequencyMaskingAug | substitute | Set block of values to zero according to frequency dimension |
        | | TimeMaskingAug | substitute | Set block of values to zero according to time dimension |
        
        ## Installation
        
        The library supports python 3.5+ in linux and window platform.
        
        To install the library:
        ```bash
        pip install nlpaug numpy matplotlib python-dotenv
        ```
        or install the latest version (include BETA features) from github directly
        ```bash
        pip install git+https://github.com/makcedward/nlpaug.git
        ```
        
        If you use ContextualWordEmbsAug, install the following dependencies as well
        ```bash
        pip install torch>=1.1.0 pytorch_pretrained_bert>=1.1.0
        ```
        
        If you use WordNetAug, install the following dependencies as well
        ```bash
        pip install nltk
        ```
        
        If you use WordEmbsAug (word2vec, glove or fasttext), downloading pre-trained model first
        ```bash
        from nlpaug.util.file.download import DownloadUtil
        DownloadUtil.download_word2vec(dest_dir='.') # Download word2vec model
        DownloadUtil.download_glove(model_name='glove.6B', dest_dir='.') # Download GloVe model
        DownloadUtil.download_fasttext(model_name='wiki-news-300d-1M', dest_dir='.') # Download fasttext model
        ```
        
        If you use any one of audio augmenter, install the following dependencies as well
        ```bash
        pip install librosa
        ```
        
        ## Recent Changes
        
        **0.0.8** Sep 4, 2019
        *   BertAug is replaced by ContextualWordEmbsAug
        *   Support GPU (for ContextualWordEmbsAug only) [#26](https://github.com/makcedward/nlpaug/issues/26)
        *   Upgraded pytorch_transformer to 1.1.0 version [#33](https://github.com/makcedward/nlpaug/issues/33)
        *   ContextualWordEmbsAug suuports both BERT and XLNet model
        *   Removed librosa dependency
        *   Add ContextualWordEmbsForSentenceAug for generating next sentence
        *   Fix sampling issue [#38](https://github.com/makcedward/nlpaug/issues/38)
        
        See [changelog](https://github.com/makcedward/nlpaug/blob/master/CHANGE.md) for more details.
        
        ## Source
        The library contains the usage of the following pre-trained model:
        *  [word2vec](https://code.google.com/archive/p/word2vec/) (Google): Tomas Mikolov, Kai Chen, Greg Corrado and Jeffrey Dean released [Efficient Estimation of Word Representations in Vector Space](https://arxiv.org/pdf/1301.3781.pdf)
        *  [GloVe](https://nlp.stanford.edu/projects/glove/) (Standford): Jeffrey Pennington, Richard Socher, and Christopher D. Manning released [GloVe: Global Vectors for Word Representation](https://nlp.stanford.edu/pubs/glove.pdf)
        *  [fastText](https://fasttext.cc/docs/en/english-vectors.html) (Facebook): Tomas Mikolov, Edouard Grave, Piotr Bojanowski, Christian Puhrsch and Armand Joulin released [Advances in Pre-Training Distributed Word Representations](https://arxiv.org/pdf/1712.09405.pdf)
        *  [BERT](https://github.com/google-research/bert) (Google): Jacob Devlin, Ming-Wei Chang, Kenton Lee and Kristina Toutanova released [BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding](https://arxiv.org/abs/1810.04805). Used [Hugging Face](https://huggingface.co/) [PyTorch version](https://github.com/huggingface/pytorch-transformers/blob/master/README.md).
        *  [XLNet](https://github.com/zihangdai/xlnet) (Google/CMU): Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Ruslan Salakhutdinov, Quoc V. Le released [XLNet: Generalized Autoregressive Pretraining for Language Understanding](https://arxiv.org/abs/1906.08237). Used [Hugging Face](https://huggingface.co/) [PyTorch version](https://github.com/huggingface/pytorch-transformers/blob/master/README.md).
        
        The library also captured data from internet for building augmenter/ test case. See [data source](https://github.com/makcedward/nlpaug/blob/master/SOURCE.md) for more details.
        
        ## Research Reference
        Some of the above augmenters are inspired by the following research papers. However, it does not always follow original implementation due to different reasons. If original implementation is needed, please refer to original source code.
        
        *   Y. Belinkov and Y. Bisk. [Synthetic and Natural Noise Both Break Neural Machine Translation](https://arxiv.org/pdf/1711.02173.pdf). 2017
        *   J. Ebrahimi, A. Rao, D. Lowd and D. Dou. [HotFlip: White-Box Adversarial Examples for Text Classification](https://arxiv.org/pdf/1712.06751.pdf). 2018
        *   J. Ebrahimi, D. Lowd and Dou. [On Adversarial Examples for Character-Level Neural Machine Translation](https://arxiv.org/pdf/1806.09030.pdf). 2018
        *   D. Pruthi, B. Dhingra and Z. C. Lipton. [Combating Adversarial Misspellings with Robust Word Recognition](https://arxiv.org/pdf/1905.11268.pdf). 2019
        *   T. Niu and M. Bansal. [Adversarial Over-Sensitivity and Over-Stability Strategies for Dialogue Models](https://arxiv.org/pdf/1809.02079.pdf). 2018
        *   P. Minervini and S. Riedel. [Adversarially Regularising Neural NLI Models to Integrate Logical Background Knowledge](https://arxiv.org/pdf/1808.08609.pdf). 2018
        *   X. Zhang, J. Zhao and Y. LeCun. [Character-level Convolutional Networks for Text Classification](https://arxiv.org/pdf/1509.01626.pdf). 2015
        *   S. Kobayashi and C. Coulombe. [Text Data Augmentation Made Simple By Leveraging NLP Cloud APIs](https://arxiv.org/ftp/arxiv/papers/1812/1812.04718.pdf). 2018
        *   Q. Xie, Z. Dai, E Hovy, M. T. Luong and Q. V. Le. [Unsupervised Data Augmentation](https://arxiv.org/pdf/1904.12848.pdf). 2019
        *   W. Y. Wang and D. Yang. [That’s So Annoying!!!: A Lexical and Frame-Semantic Embedding Based Data Augmentation Approach to Automatic Categorization of Annoying Behaviors using #petpeeve Tweets](https://aclweb.org/anthology/D15-1306). 2015
        *   S. Kobayashi. [Contextual Augmentation: Data Augmentation by Words with Paradigmatic Relation](https://arxiv.org/pdf/1805.06201.pdf). 2018
        *   D. S. Park, W. Chan, Y. Zhang, C. C. Chiu, B. Zoph, E. D. Cubuk and Q. V. Le. [SpecAugment: A Simple Data Augmentation Method for Automatic Speech Recognition](https://arxiv.org/pdf/1904.08779.pdf). 2019
        *   R. Jia and P. Liang. [Adversarial Examples for Evaluating Reading Comprehension Systems](https://arxiv.org/pdf/1707.07328.pdf). 2017
        
Keywords: deep learning,neural network,machine learning,nlp,natural language processing,text,audio,spectrogram,augmentation,adversarial attack,ai,ml
Platform: UNKNOWN
Description-Content-Type: text/markdown
