https://github.com/RaRe-Technologies/gensim
Revision 63dc9900bef66e0e25b4075e35cf46f658a8e908 authored by Radim Řehůřek on 22 April 2020, 10:01:17 UTC, committed by GitHub on 22 April 2020, 10:01:17 UTC
1 parent 188a590
Raw File
Tip revision: 63dc9900bef66e0e25b4075e35cf46f658a8e908 authored by Radim Řehůřek on 22 April 2020, 10:01:17 UTC
Remove conda-forge badge
Tip revision: 63dc990
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