Skip to main content

Python framework for fast Vector Space Modelling

Project description

GA 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 MKL, ATLAS or OpenBLAS is known to improve performance by as much as an order of magnitude. On OSX, NumPy picks up its vecLib BLAS 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 all supported Python versions. 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

Download files

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

Source Distribution

gensim-4.3.0.tar.gz (23.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gensim-4.3.0-cp311-cp311-win_amd64.whl (24.0 MB view details)

Uploaded CPython 3.11Windows x86-64

gensim-4.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gensim-4.3.0-cp311-cp311-macosx_10_9_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

gensim-4.3.0-cp310-cp310-win_amd64.whl (24.0 MB view details)

Uploaded CPython 3.10Windows x86-64

gensim-4.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gensim-4.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

gensim-4.3.0-cp310-cp310-macosx_10_9_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

gensim-4.3.0-cp310-cp310-macosx_10_9_universal2.whl (24.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

gensim-4.3.0-cp39-cp39-win_amd64.whl (24.0 MB view details)

Uploaded CPython 3.9Windows x86-64

gensim-4.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

gensim-4.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

gensim-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

gensim-4.3.0-cp38-cp38-win_amd64.whl (24.0 MB view details)

Uploaded CPython 3.8Windows x86-64

gensim-4.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

gensim-4.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

gensim-4.3.0-cp38-cp38-macosx_10_9_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: gensim-4.3.0.tar.gz
  • Upload date:
  • Size: 23.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0.tar.gz
Algorithm Hash digest
SHA256 64bd7ec62990215878822e8b2569d1835054f56cdf53600ddfe9927e31f3b48d
MD5 985bd4cc3c30724424f153635c9ee8bc
BLAKE2b-256 ca71856a3e2d86bcf6ba4e377c46599259e15bd5c12c173af2c668bd7530879e

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b846be8cc6205944e8426179b2fc87eb0e74d1debf3993223d9c03d378677e5c
MD5 8a4163443bdd163820217d311a75c9c9
BLAKE2b-256 72d842c1ae9642103ee89f8c77f882fa636b5d81ca79d62eb6e2e588820635c7

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58dc2a700328e8fa794e7a2f6567a1543655ef5ec5a52d8604239c9e0b3e32ed
MD5 7bf9fb2fb56a124208600f428e815a8d
BLAKE2b-256 6e3eb04cac6b2ae1701712aba58d8c3155eacca6837262d6cc1e1407c5139ce8

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81f4f1e4b70e770cf6262f2af77a1758dabf636c8866737d6904fb8c0e7ccfe0
MD5 007646da2818a0f2602a4307a5dab04b
BLAKE2b-256 40a3c4698683de8a46249fb13544a68f76733623905be054979e9a9082862bcd

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cb1958ffb2a46af920e17bbce328f40ffc5eae9557d0c129287358283fd2e63f
MD5 0ff7e392e831bf93ed845b42ccfc9042
BLAKE2b-256 4f25d10f2e84a93a0b26683d19332a90a554141e771e779a078efa83a007d82d

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74f09f08a1798d6f752ea17f430b07b8ac1387e6f714f3b5e93dcc082cd9c497
MD5 9ff88e5005409312b5598c18928fc135
BLAKE2b-256 8cd70ccccf350e20f103e3701d1866e0c423f45c70a01f92098a9802d9316cd1

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e83d8ce322d6a3a93228944aba95e6951769d5238d49b6c5b89ad2515a56a136
MD5 69bcf69c10bde2f508b6073b8055a89a
BLAKE2b-256 c52f2908d5cc80f86c1e3660cf608508eabe0852bbfe61923a2944ad38ff08d5

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab1511aa13fe55d024348e020010b01a408f2035d48e9eb4d7ad7657d44e339d
MD5 a7e87200e6ee279b5fe0bc25aac4287e
BLAKE2b-256 ffdbd1917a6920a628e7e299cbcbd20cb7f877bc32cbf94013d1b3d33fbe0b38

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: gensim-4.3.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f2420150117bb312f8ece2116c5b3a7620164fcd66e94883320b32d34948a05
MD5 007ee157abdf0c4e3edeea1204531c71
BLAKE2b-256 f2d5f1395043481dd23ed1fc6c03109c9831ce4b0ca2983e37fe1fbe7ca42e89

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a94d28e31803c2bc14003b0ae047596021ea40a9dd3b38ce1842f4097507c6c
MD5 7938359920fbf1139d1562b264788bd0
BLAKE2b-256 74c7b444026e4aa625a2a346a2fa6098631941e4ef9495c41bf156dcf98871e7

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4073daadfe58fd89202b40fd4ca375aadda50a7475ad92fc37647b910286bb14
MD5 257fa459e616f520585c30be3ae9aec5
BLAKE2b-256 64edb0393c81cb96fb0d365c7ce1c70688958bc3c9188609730e6c988c6b1c7e

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d864da3b39d22df068e25220bdf33c633c812f057f9c0dc9a8985a602efff739
MD5 21575ed8c2403858070d08ecbc3c9cc1
BLAKE2b-256 42f5192ac5b9a721e2b79ff4133cf6d3fd85124b3255444267fbb1834226bc5b

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b389d545c5bdc7243617802d87dca36db191819642b9ba24e0bb3108640fec03
MD5 e7536b0d51062a05ad532905f94daeed
BLAKE2b-256 857839e3d6ad572cf65ecdeb451c3c4053f7bb8499731c519bb170288767275c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gensim-4.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4bc846b20146d2cd0fff7c48cb1d9349e30c3c8ef3819034576457fd56bd6c13
MD5 b00382ed53a34e972d747a6dc88225bb
BLAKE2b-256 bdcdbe9fcf9270cdbdb4ccbb72e7bdb7794789bda06cea038579d441103b97b3

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7a7c3dcc37735ecdd5bac8c0fa9816a3d584af7ee08a7869c51004be32bd3da
MD5 2c246f5ca4f45d8f7483c1bd634984a1
BLAKE2b-256 52be89ee1ea68806b99f9f7b386284085ac40e394550b173eae7585bf7769e4b

See more details on using hashes here.

File details

Details for the file gensim-4.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: gensim-4.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b74d0a3d2e3baf9ad5af6f258808a2df4d366457e18b6f64d0d2398995bfff92
MD5 7b9d0a0a857c7b4c36b3c7fe544efb9f
BLAKE2b-256 3bfed2df97154e85a638d07dfdb3b5667b6ff6b52ae84557eb9bbc9e327a25f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gensim-4.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.4 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.7

File hashes

Hashes for gensim-4.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33fc1d2d50d391fcc49175073da5728ba4ae636f67f4ecd9252583bbd139e391
MD5 ca1e32c0a6a90239f776a33c31e07d29
BLAKE2b-256 c1ffcb07ab0ab7933cb654f5719a245626d434f8d95d996c24c5629598d04173

See more details on using hashes here.

Supported by

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