You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prepare gensim v3.8.2 to pin smart_open for Py2.7 compatibility (#2787)
* pin version of smart-open to py2 compatible
* add a comment
Co-Authored-By: Radim Řehůřek <me@radimrehurek.com>
* make pin conditional (py27 only)
* prepare version 3.8.2
* add deprecations to README
* get rid rackcdn, bump scipy to 1.0.0
* bump scipy to 1.0.0 in setup.py
Co-authored-by: Yury Brukau <brukau@ebu.ch>
Co-authored-by: Radim Řehůřek <me@radimrehurek.com>
Co-authored-by: Michael Penkov <misha.penkov@gmail.com>
Co-authored-by: Ivan Menshikh <menshikh.iv@gmail.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,34 @@
1
1
Changes
2
2
=======
3
3
4
+
## 3.8.2, 2020-04-10
5
+
6
+
### :red_circle: Bug fixes
7
+
8
+
* Pin `smart_open` version for compatibility with Py2.7
9
+
10
+
### :warning: Deprecations (will be removed in the next major release)
11
+
12
+
* Remove
13
+
- `gensim.models.FastText.load_fasttext_format`: use load_facebook_vectors to load embeddings only (faster, less CPU/memory usage, does not support training continuation) and load_facebook_model to load full model (slower, more CPU/memory intensive, supports training continuation)
14
+
- `gensim.models.wrappers.fasttext` (obsoleted by the new native `gensim.models.fasttext` implementation)
15
+
- `gensim.examples`
16
+
- `gensim.nosy`
17
+
- `gensim.scripts.word2vec_standalone`
18
+
- `gensim.scripts.make_wiki_lemma`
19
+
- `gensim.scripts.make_wiki_online`
20
+
- `gensim.scripts.make_wiki_online_lemma`
21
+
- `gensim.scripts.make_wiki_online_nodebug`
22
+
- `gensim.scripts.make_wiki` (all of these obsoleted by the new native `gensim.scripts.segment_wiki` implementation)
0 commit comments