Skip to main content

Python framework for fast Vector Space Modelling

Project description

Travis Wheel

Gensim is a Python library for topic modelling, document indexing and similarity retrieval with large corpora. Target audience is the natural language processing (NLP) and information retrieval (IR) community.

Features

  • All algorithms are memory-independent w.r.t. the corpus size (can process input larger than RAM, streamed, out-of-core),

  • Intuitive interfaces

    • easy to plug in your own input corpus/datastream (simple streaming API)

    • easy to extend with other Vector Space algorithms (simple transformation API)

  • Efficient multicore implementations of popular algorithms, such as online Latent Semantic Analysis (LSA/LSI/SVD), Latent Dirichlet Allocation (LDA), Random Projections (RP), Hierarchical Dirichlet Process (HDP) or word2vec deep learning.

  • Distributed computing: can run Latent Semantic Analysis and Latent Dirichlet Allocation on a cluster of computers.

  • Extensive documentation and Jupyter Notebook tutorials.

If this feature list left you scratching your head, you can first read more about the Vector Space Model and unsupervised document analysis on Wikipedia.

Installation

This software depends on NumPy and Scipy, two Python packages for scientific computing. You must have them installed prior to installing gensim.

It is also recommended you install a fast BLAS library before installing NumPy. This is optional, but using an optimized BLAS such as ATLAS or OpenBLAS is known to improve performance by as much as an order of magnitude. On OS X, NumPy picks up the BLAS that comes with it automatically, so you don’t need to do anything special.

Install the latest version of gensim:

pip install --upgrade gensim

Or, if you have instead downloaded and unzipped the source tar.gz package:

python setup.py install

For alternative modes of installation, see the documentation.

Gensim is being continuously tested under Python 3.5, 3.6, 3.7 and 3.8. Support for Python 2.7 was dropped in gensim 4.0.0 – install gensim 3.8.3 if you must use Python 2.7.

How come gensim is so fast and memory efficient? Isn’t it pure Python, and isn’t Python slow and greedy?

Many scientific algorithms can be expressed in terms of large matrix operations (see the BLAS note above). Gensim taps into these low-level BLAS libraries, by means of its dependency on NumPy. So while gensim-the-top-level-code is pure Python, it actually executes highly optimized Fortran/C under the hood, including multithreading (if your BLAS is so configured).

Memory-wise, gensim makes heavy use of Python’s built-in generators and iterators for streamed data processing. Memory efficiency was one of gensim’s design goals, and is a central feature of gensim, rather than something bolted on as an afterthought.

Documentation

Citing gensim

When citing gensim in academic papers and theses, please use this BibTeX entry:

@inproceedings{rehurek_lrec,
      title = {{Software Framework for Topic Modelling with Large Corpora}},
      author = {Radim {\v R}eh{\r u}{\v r}ek and Petr Sojka},
      booktitle = {{Proceedings of the LREC 2010 Workshop on New
           Challenges for NLP Frameworks}},
      pages = {45--50},
      year = 2010,
      month = May,
      day = 22,
      publisher = {ELRA},
      address = {Valletta, Malta},
      language={English}
}

Gensim is open source software released under the GNU LGPLv2.1 license. Copyright (c) 2009-now Radim Rehurek

Analytics

Project details


Release history Release notifications | RSS feed

This version

3.8.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gensim-3.8.3.tar.gz (23.4 MB view details)

Uploaded Source

Built Distributions

gensim-3.8.3-cp38-cp38-win_amd64.whl (24.2 MB view details)

Uploaded CPython 3.8Windows x86-64

gensim-3.8.3-cp38-cp38-win32.whl (24.1 MB view details)

Uploaded CPython 3.8Windows x86

gensim-3.8.3-cp38-cp38-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.8

gensim-3.8.3-cp38-cp38-manylinux1_i686.whl (24.2 MB view details)

Uploaded CPython 3.8

gensim-3.8.3-cp38-cp38-macosx_10_9_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

gensim-3.8.3-cp37-cp37m-win_amd64.whl (24.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

gensim-3.8.3-cp37-cp37m-win32.whl (24.1 MB view details)

Uploaded CPython 3.7mWindows x86

gensim-3.8.3-cp37-cp37m-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.7m

gensim-3.8.3-cp37-cp37m-manylinux1_i686.whl (24.2 MB view details)

Uploaded CPython 3.7m

gensim-3.8.3-cp37-cp37m-macosx_10_9_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

gensim-3.8.3-cp36-cp36m-win_amd64.whl (24.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

gensim-3.8.3-cp36-cp36m-win32.whl (24.1 MB view details)

Uploaded CPython 3.6mWindows x86

gensim-3.8.3-cp36-cp36m-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.6m

gensim-3.8.3-cp36-cp36m-manylinux1_i686.whl (24.2 MB view details)

Uploaded CPython 3.6m

gensim-3.8.3-cp36-cp36m-macosx_10_9_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

gensim-3.8.3-cp35-cp35m-win_amd64.whl (24.2 MB view details)

Uploaded CPython 3.5mWindows x86-64

gensim-3.8.3-cp35-cp35m-win32.whl (24.1 MB view details)

Uploaded CPython 3.5mWindows x86

gensim-3.8.3-cp35-cp35m-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.5m

gensim-3.8.3-cp35-cp35m-manylinux1_i686.whl (24.2 MB view details)

Uploaded CPython 3.5m

gensim-3.8.3-cp35-cp35m-macosx_10_9_intel.whl (24.6 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ Intel (x86-64, i386)

gensim-3.8.3-cp27-cp27mu-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 2.7mu

gensim-3.8.3-cp27-cp27mu-manylinux1_i686.whl (24.2 MB view details)

Uploaded CPython 2.7mu

gensim-3.8.3-cp27-cp27m-win_amd64.whl (23.8 MB view details)

Uploaded CPython 2.7mWindows x86-64

gensim-3.8.3-cp27-cp27m-win32.whl (23.8 MB view details)

Uploaded CPython 2.7mWindows x86

gensim-3.8.3-cp27-cp27m-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 2.7m

gensim-3.8.3-cp27-cp27m-manylinux1_i686.whl (24.2 MB view details)

Uploaded CPython 2.7m

gensim-3.8.3-cp27-cp27m-macosx_10_9_x86_64.whl (24.2 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file gensim-3.8.3.tar.gz.

File metadata

  • Download URL: gensim-3.8.3.tar.gz
  • Upload date:
  • Size: 23.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3.tar.gz
Algorithm Hash digest
SHA256 786adb0571f75114e9c5f7a31dd2e6eb39a9791f22c8757621545e2ded3ea367
MD5 bbe1962788dabf58734f32856a33097e
BLAKE2b-256 a0b4f4e45875a4cb1c4f6a76d6d07a2981753aab5f135dac2381f625e8807542

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e34cf2e50f3eab3e303da46089ea4972567bf216e28f7535ada155770784ac8
MD5 b999071395e0b07115c44aa1dd907c72
BLAKE2b-256 faf1713499c2004ed7a1db48df6fc4d01e559f82ec80db8b8e759e4a9effceb5

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: gensim-3.8.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 90115d12ee545c21cc75521ef1bb3dd66aae8a378e9c2eb029c9f22df173c125
MD5 4af6742d12d7067452befe015eeb5f82
BLAKE2b-256 385b87bfda788229aaafe0a892c47c8b01a63013db77ce49fe3a1fe64e28c5bc

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8807ebf324dd11e1298a91a92d6e57c7bdabb91d0d5240bf1efa0c0eacd86f0
MD5 4539449d5e936c603ab4d6474f8e234f
BLAKE2b-256 307ef29979d98e7d7e6883ef42725fe91a09388412fcd68c7b8a13d6a9e582ca

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: gensim-3.8.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 05bfc02e102a34c9c795095b688b1b4aaa2529c624821368c9c3ea6a16536f77
MD5 8dfd9ac861b89ee53457d42c324c9700
BLAKE2b-256 d6a2558eceeaab35a81fbadef839223c0f0b6a176ac7fd24fe0621b527e2e495

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a47903d104469a7a8b6f22ad5ef74681b19c4f4b71ff2c2893271b53161a43e4
MD5 bad39e162f1cf8de3be890cf951f195f
BLAKE2b-256 fa1b766a9d677c5e4e7dd2178b37fa47248dac9d04c22dd069831f415b665048

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fe98277a7b3b4987b40c928056bbaae1d0715022cf27bba89d05cd0d4fe51a84
MD5 e523d4f3a459dfec51e8c07d76a4d4a4
BLAKE2b-256 0b6604faeedb98bfa5f241d0399d0102456886179cabac0355475f23a2978847

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: gensim-3.8.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9c214b341f5304b906c79844e2787c13b46505df9dc70afca79a9a7dc0894478
MD5 60aaaaa109e2f324e0eac9c7a59488d6
BLAKE2b-256 53fa2de16e0453cbccbd8381dfbc8382bf07bea4e7e273b8b7cd591911740902

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d79370f78e9013b9d1e867c85ecc678d46a7ae0f01a8ca29e8f4291e5373b170
MD5 2d73bb1f20905178f1fcfa860ded02da
BLAKE2b-256 5c4eafe2315e08a38967f8a3036bbe7e38b428e9b7a90e823a83d0d49df1adf5

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: gensim-3.8.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 22f45fd239cacd0e3715ac447a2c8a5eea02e730ec1f701c55b359e9298e63a8
MD5 31434db406a566d7072583b7d05d2e3b
BLAKE2b-256 3a565c2901715db82f3dda139baf14181dd46fa60b948a045c0dda3d9fbbedf4

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 637fc5969f3cef4b7c8fd3e78e31ef09565c5566d5ceabf076b4170eb6444a80
MD5 ef0b6189ef418cce566c2a69a88deabe
BLAKE2b-256 70cf87b25b265d23498b2b70ce873495cf7ef91394c4baff240210e26f3bc18a

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 91fa62d61b21f1878f140b10520f9de4a26a52672fbe407edfc7e09ca2eff235
MD5 83c3ef87c7bbede953834f3cb68f39ba
BLAKE2b-256 b38bb31d8c6d74292f745aa06fdc02fb8e1e529736ab1de922e5402a50e0a042

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: gensim-3.8.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1e3d66c2eec494376fc599701d9c2868549aed6e93e47177e39217f0188e2d88
MD5 08888aee8bc203db1b1b9dca954e3dad
BLAKE2b-256 6466f52c0e37d4f3b0b4c2177785b5ee0528058e7d3b93b0d74ea54f742e4858

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b36e6330471061cfd78aad751e24c6b4f56d575697af0fbab42655128927d296
MD5 e12a81cad1b741c1d62a9bb6c3f5386e
BLAKE2b-256 2be0fa6326251692056dc880a64eb22117e03269906ba55a6864864d24ec8b4e

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: gensim-3.8.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc387d0d8bddbf3609ab95b3453296e4c9ff92c35e9799a17d86b1571d77a5fc
MD5 89d4200a83a9f4d72a822b0845d31672
BLAKE2b-256 63378e8ec59395e2b002d31c1a5a15a42a5487af476b9d43720d4ac0da9d92dc

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a61179df454a0d4b06a111c4ede0536f61c8121b4c0d0d02d23560a2fd4b3aff
MD5 ac8a5e9ba6555244326e66cc321463c6
BLAKE2b-256 e6913262d4d8c16a614113103758278ae75c5820e1eca09e4cfdffcc714e0f84

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b61a7c841a752c84b685674aa0d610289faad38795b325176481abe19b487e98
MD5 1644b92667229683605d66878fa883ee
BLAKE2b-256 336082d74fb2ac8159225e324d9778cba91714775c0ee2c04d13e47d7fc9474d

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: gensim-3.8.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 685a7657278161628821c8f873c5d7d2ffc0c28866648e39f76b450e4c7d5390
MD5 16f0bc2db33c994fa09a25ac1520add4
BLAKE2b-256 c8a1fb1b2802b5cc3559c2278e246f040ad629b86e4226d86fe5e24e2b99bb1f

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41dcf6ecdc9acc657157967c791b8cbaba90ee6391f64efd28339b72f5e0c327
MD5 c1fd4b65fc458a146adb94db77c0ff8d
BLAKE2b-256 1d691262ed0050c21f5054702b8e96a2d8c310d4cd059e4a08c9a2fe6a5dae65

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: gensim-3.8.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef2ddeceff482aee17c1e185f63bf027c8de8f595fdd9fd2d2503de96008f3b7
MD5 06351aab4c0dd0e76cf24be3e84383b4
BLAKE2b-256 4db0ff624e5495424e28ccf163b545d36952c4a3d413cd7f87b0821143ccede4

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: gensim-3.8.3-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.5m, macOS 10.9+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 6711b6d3a0007530ee7de7adc30a4c48a1d26ec6312ac50e1d1e0a1d54f9de5b
MD5 c0f29dfa5baa9b55c592f32173d3d296
BLAKE2b-256 242abf98f2db5fb2fbb4c0f227513e7651bee77216df9da8b78c76124d1ce235

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7629b33cf35f672efdd5269381f7e301958ee2638f27dfc63b80c5bfeaa827d3
MD5 8c3a21eb1d28f24c8b86c8a52d957e32
BLAKE2b-256 c951ad37b316482ac55357471ab5ae22bb4ca0cd018ee400cdfda5afebf6994f

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a90549dfc8ee3822fcad6da957de07d927e4e90ef42b3699543dee35ab2da13
MD5 8a3cad6c80318306030c1be09f79afba
BLAKE2b-256 b1156eb2264a1007cb9e8fd0b2a4d8a0406d015cca5ca2c349c31061d326098d

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f8ea67bf8c47ee55cb1b32c97fa1474b7d6d22959dd8097c019a5d9c9df34f5f
MD5 12f9fe8e87a5af152b5505fed0597a43
BLAKE2b-256 e82ca87e1168cebae9ca792fd65e1d9303441166114c964766f260d335d14d9c

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27m-win32.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 440700e29b494bc2e1d52e14b69a821f46ab09ecf85cf36c8988f18e1d6c7a8b
MD5 08af59ac6c40421dbbfd901aca7088d2
BLAKE2b-256 5a66246d9c508178881892a48be18114fa7f98a8fd3fe438840daa91ccb24e5a

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8ff471921b3b10ffb3ae6cbb598dd9c07d9dc030dee5aa167e7682b549c42f87
MD5 807b3e7a945e14a95d6e1b19cc8046c1
BLAKE2b-256 8f31d4acaca69847cb2be3e017c6ac524feabfadf699b19c6f3da68a0a67625e

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3af62709369331c85552fd26caa21504baa64accc426dc094172f5c688750013
MD5 66c02a73f8a673acae76b991127b7ef7
BLAKE2b-256 965bb998129737ba79de9c55152314e25bbf22ffc0c9b2a9eee90233a6ce3294

See more details on using hashes here.

File details

Details for the file gensim-3.8.3-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-3.8.3-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for gensim-3.8.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61eed1d6b5fbe6dda0586ea447ebc2dc7890a7f70c2ed953d5abc3fe3cfb94bb
MD5 cc246ce205465d9b999a1bcfca0c9fb4
BLAKE2b-256 e51ceeea5353730937ab38259e057e5c99507bb7cf8ad96d29f8a947ea5e66a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page