https://github.com/RaRe-Technologies/gensim
Revision 526b6b4626d25e9d6f5957e150434bcb6f96f64f authored by Michael Penkov on 23 September 2019, 09:17:33 UTC, committed by Michael Penkov on 23 September 2019, 09:17:33 UTC
1 parent bec0d3d
Raw File
Tip revision: 526b6b4626d25e9d6f5957e150434bcb6f96f64f authored by Michael Penkov on 23 September 2019, 09:17:33 UTC
updated CHANGELOG.md for version 3.8.1
Tip revision: 526b6b4
ISSUE_TEMPLATE.md
<!--
**IMPORTANT**:

- Use the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim) to ask general or usage questions. Github issues are only for bug reports.
- Check [Recipes&FAQ](https://github.com/RaRe-Technologies/gensim/wiki/Recipes-&-FAQ) first for common answers.

Github bug reports that do not include relevant information and context will be closed without an answer. Thanks!
-->

#### Problem description

What are you trying to achieve? What is the expected result? What are you seeing instead?

#### Steps/code/corpus to reproduce

Include full tracebacks, logs and datasets if necessary. Please keep the examples minimal ("minimal reproducible example").

#### Versions

Please provide the output of:

```python
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import numpy; print("NumPy", numpy.__version__)
import scipy; print("SciPy", scipy.__version__)
import gensim; print("gensim", gensim.__version__)
from gensim.models import word2vec;print("FAST_VERSION", word2vec.FAST_VERSION)
```
back to top