File tree Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 1
1
NLPAUG Change Log
2
2
================
3
3
4
+ ### 1.1.11 Jul 6, 2022
5
+ * [ Return list of output] ( https://github.com/makcedward/nlpaug/issues/302 )
6
+ * [ Fix download util] ( https://github.com/makcedward/nlpaug/issues/301 )
7
+ * [ Fix lambda label misalignment] ( https://github.com/makcedward/nlpaug/issues/295 )
8
+ * [ Add language pack reference link for SynonymAug] ( https://github.com/makcedward/nlpaug/issues/289 )
9
+
4
10
### 1.1.10 Dec 23, 2021
5
11
* [ KeywordAug supports Turkish] ( https://github.com/makcedward/nlpaug/pull/261 )
6
12
* [ Fix FrequencyMasking time range ] ( https://github.com/makcedward/nlpaug/pull/258 )
Original file line number Diff line number Diff line change @@ -139,16 +139,17 @@ http://paraphrase.org/#/download
139
139
140
140
If you use PitchAug, SpeedAug and VtlpAug, installing the following dependencies as well
141
141
``` bash
142
- pip install librosa> =0.7 .1 matplotlib
142
+ pip install librosa> =0.9 .1 matplotlib
143
143
```
144
144
145
145
## Recent Changes
146
146
147
- ### 1.1.10 Dec 23, 2021
148
- * [ KeywordAug supports Turkish] ( https://github.com/makcedward/nlpaug/pull/261 )
149
- * [ Fix FrequencyMasking time range ] ( https://github.com/makcedward/nlpaug/pull/258 )
150
- * [ Remove unnecessary printout] ( https://github.com/makcedward/nlpaug/pull/263 )
151
- * [ Rollback ContextualWordEmbsForSentenceAug and AbstSummAug to use custom transformers API to reduce execution time]
147
+ ### 1.1.11 Jul 6, 2022
148
+ * [ Return list of output] ( https://github.com/makcedward/nlpaug/issues/302 )
149
+ * [ Fix download util] ( https://github.com/makcedward/nlpaug/issues/301 )
150
+ * [ Fix lambda label misalignment] ( https://github.com/makcedward/nlpaug/issues/295 )
151
+ * [ Add language pack reference link for SynonymAug] ( https://github.com/makcedward/nlpaug/issues/289 )
152
+
152
153
153
154
See [ changelog] ( https://github.com/makcedward/nlpaug/blob/master/CHANGE.md ) for more details.
154
155
Original file line number Diff line number Diff line change @@ -74,9 +74,9 @@ def __getattr__(cls, name):
74
74
# built documents.
75
75
#
76
76
# The short X.Y version.
77
- version = '1.1.11_dev '
77
+ version = '1.1.11 '
78
78
# The full version, including alpha/beta/rc tags.
79
- release = '1.1.11_dev '
79
+ release = '1.1.11 '
80
80
81
81
# The language for content autogenerated by Sphinx. Refer to documentation
82
82
# for a list of supported languages.
Original file line number Diff line number Diff line change 3
3
4
4
__all__ = ['base_augmenter' ]
5
5
6
- __version__ = '1.1.11_dev '
6
+ __version__ = '1.1.11 '
7
7
__description__ = 'Natural language processing augmentation library for deep neural networks.'
8
8
__url__ = 'https://github.com/makcedward/nlpaug'
9
9
__author__ = 'Edward Ma'
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = "nlpaug" ,
15
- version = "1.1.11_dev " ,
15
+ version = "1.1.11 " ,
16
16
author = "Edward Ma" ,
17
17
author_email = "makcedward@gmail.com" ,
18
18
url = "https://github.com/makcedward/nlpaug" ,
You can’t perform that action at this time.
0 commit comments