Skip to content

Commit

Permalink
release 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
makcedward committed Dec 23, 2021
1 parent 7d984cf commit e515cc1
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
NLPAUG Change Log
================

### 1.1.10 Dec 23, 2021
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
* [Fix FrequencyMasking time range ](https://github.com/makcedward/nlpaug/pull/258)
* [Remove unnecessary printout](https://github.com/makcedward/nlpaug/pull/263)
* [Rollback ContextualWordEmbsForSentenceAug and AbstSummAug to use custom transformers API to reduce execution time]

### 1.1.9 Dec 1, 2021
* [ReservedAug supports generating all combinations](https://github.com/makcedward/nlpaug/pull/251)
* [Rollback to use native HuggingFace API from Huggingface pipeline to solve slow performance issue](https://github.com/makcedward/nlpaug/issues/248)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,11 @@ pip install librosa>=0.7.1 matplotlib

## Recent Changes

### 1.1.10 Jan , 2022
### 1.1.10 Dec 23, 2021
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
* [Fix FrequencyMasking time range ](https://github.com/makcedward/nlpaug/pull/258)
* [Remove unnecessary printout](https://github.com/makcedward/nlpaug/pull/263)
* [Rollback ContextualWordEmbsForSentenceAug and AbstSummAug to use custom transformers API to reduce execution time]

See [changelog](https://github.com/makcedward/nlpaug/blob/master/CHANGE.md) for more details.

Expand Down
2 changes: 1 addition & 1 deletion conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
build_name='.'
pkg_name='nlpaug'
py_vers=(3.5 3.6 3.7 3.8 3.9)
pkg_ver='1.1.9'
pkg_ver='1.1.10'
conda_dir="/home/edward/anaconda3/conda-bld"

echo "Building conda package ..."
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '1.1.9'
version = '1.1.10'
# The full version, including alpha/beta/rc tags.
release = '1.1.9'
release = '1.1.10'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nlpaug/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__all__ = ['base_augmenter']

__version__ = '1.1.9'
__version__ = '1.1.10'
__description__ = 'Natural language processing augmentation library for deep neural networks.'
__url__ = 'https://github.com/makcedward/nlpaug'
__author__ = 'Edward Ma'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="nlpaug",
version="1.1.9",
version="1.1.10",
author="Edward Ma",
author_email="[email protected]",
url="https://github.com/makcedward/nlpaug",
Expand Down
1 change: 1 addition & 0 deletions test/run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_context_word_embs_sentence'))
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_abst_summ'))
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_lambada'))
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_random'))

# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.word.test_word'))
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.word.test_tfidf'))
Expand Down

0 comments on commit e515cc1

Please sign in to comment.