|
1 | 1 | Changes |
2 | 2 | ======= |
3 | 3 |
|
| 4 | +## 3.8.0, 2019-07-08 |
| 5 | + |
| 6 | +### :star2: New Features |
| 7 | + |
| 8 | +* back gensim.downloader.load_info function by a cache (__[mpenkov](https://github.com/mpenkov)__, [#2545](https://github.com/RaRe-Technologies/gensim/pull/2545)) |
| 9 | +* Add build_vocab to poincare model (__[koiizukag](https://github.com/koiizukag)__, [#2505](https://github.com/RaRe-Technologies/gensim/pull/2505)) |
| 10 | +* Make most_similar accept topn of any integer type (__[Witiko](https://github.com/Witiko)__, [#2497](https://github.com/RaRe-Technologies/gensim/pull/2497)) |
| 11 | +* generator support in bm25 (__[saraswatmks](https://github.com/saraswatmks)__, [#2479](https://github.com/RaRe-Technologies/gensim/pull/2479)) |
| 12 | +* make downloader subdirectory configurable, fix #2416 (__[mpenkov](https://github.com/mpenkov)__, [#2456](https://github.com/RaRe-Technologies/gensim/pull/2456)) |
| 13 | + |
| 14 | +### :red_circle: Bug fixes |
| 15 | + |
| 16 | +* fix python version check (__[charsyam](https://github.com/charsyam)__, [#2547](https://github.com/RaRe-Technologies/gensim/pull/2547)) |
| 17 | +* Fix appveyor issues with Win and Py2 (__[mpenkov](https://github.com/mpenkov)__, [#2546](https://github.com/RaRe-Technologies/gensim/pull/2546)) |
| 18 | +* Fix smart_open deprecation warning globally (__[itayB](https://github.com/itayB)__, [#2530](https://github.com/RaRe-Technologies/gensim/pull/2530)) |
| 19 | +* Typo fix (__[Guitaricet](https://github.com/Guitaricet)__, [#2518](https://github.com/RaRe-Technologies/gensim/pull/2518)) |
| 20 | +* Correct "Market Matrix" to "Matrix Market". (__[Shooter23](https://github.com/Shooter23)__, [#2513](https://github.com/RaRe-Technologies/gensim/pull/2513)) |
| 21 | +* fix CHANGELOG.md (__[mpenkov](https://github.com/mpenkov)__, [#2482](https://github.com/RaRe-Technologies/gensim/pull/2482)) |
| 22 | + |
| 23 | +### :books: Tutorial and doc improvements |
| 24 | + |
| 25 | +* Simplify Support section in README (__[piskvorky](https://github.com/piskvorky)__, [#2542](https://github.com/RaRe-Technologies/gensim/pull/2542)) |
| 26 | +* Generate documentation for the gensim.similarities.termsim module (__[Witiko](https://github.com/Witiko)__, [#2485](https://github.com/RaRe-Technologies/gensim/pull/2485)) |
| 27 | + |
| 28 | +### :+1: Improvements |
| 29 | + |
| 30 | +* pin sklearn version for Py2 (__[mpenkov](https://github.com/mpenkov)__, [#2510](https://github.com/RaRe-Technologies/gensim/pull/2510)) |
| 31 | + |
| 32 | +### :warning: Deprecations (will be removed in the next major release) |
| 33 | + |
| 34 | +* Remove |
| 35 | + - `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) |
| 36 | + - `gensim.models.wrappers.fasttext` (obsoleted by the new native `gensim.models.fasttext` implementation) |
| 37 | + - `gensim.examples` |
| 38 | + - `gensim.nosy` |
| 39 | + - `gensim.scripts.word2vec_standalone` |
| 40 | + - `gensim.scripts.make_wiki_lemma` |
| 41 | + - `gensim.scripts.make_wiki_online` |
| 42 | + - `gensim.scripts.make_wiki_online_lemma` |
| 43 | + - `gensim.scripts.make_wiki_online_nodebug` |
| 44 | + - `gensim.scripts.make_wiki` (all of these obsoleted by the new native `gensim.scripts.segment_wiki` implementation) |
| 45 | + - "deprecated" functions and attributes |
| 46 | + |
| 47 | +* Move |
| 48 | + - `gensim.scripts.make_wikicorpus` ➡ `gensim.scripts.make_wiki.py` |
| 49 | + - `gensim.summarization` ➡ `gensim.models.summarization` |
| 50 | + - `gensim.topic_coherence` ➡ `gensim.models._coherence` |
| 51 | + - `gensim.utils` ➡ `gensim.utils.utils` (old imports will continue to work) |
| 52 | + - `gensim.parsing.*` ➡ `gensim.utils.text_utils` |
| 53 | + |
4 | 54 | ## 3.7.3, 2019-05-06 |
5 | 55 |
|
6 | 56 | ### :red_circle: Bug fixes |
|
0 commit comments