Skip to main content

Topic modeling with latent Dirichlet allocation

Project description

pypi version travis-ci build status Zenodo citation

lda implements latent Dirichlet allocation (LDA) using collapsed Gibbs sampling. lda is fast and is tested on Linux, OS X, and Windows.

You can read more about lda in the documentation.

Installation

pip install lda

Getting started

lda.LDA implements latent Dirichlet allocation (LDA). The interface follows conventions found in scikit-learn.

The following demonstrates how to inspect a model of a subset of the Reuters news dataset. The input below, X, is a document-term matrix (sparse matrices are accepted).

>>> import numpy as np
>>> import lda
>>> import lda.datasets
>>> X = lda.datasets.load_reuters()
>>> vocab = lda.datasets.load_reuters_vocab()
>>> titles = lda.datasets.load_reuters_titles()
>>> X.shape
(395, 4258)
>>> X.sum()
84010
>>> model = lda.LDA(n_topics=20, n_iter=1500, random_state=1)
>>> model.fit(X)  # model.fit_transform(X) is also available
>>> topic_word = model.topic_word_  # model.components_ also works
>>> n_top_words = 8
>>> for i, topic_dist in enumerate(topic_word):
...     topic_words = np.array(vocab)[np.argsort(topic_dist)][:-(n_top_words+1):-1]
...     print('Topic {}: {}'.format(i, ' '.join(topic_words)))

Topic 0: british churchill sale million major letters west britain
Topic 1: church government political country state people party against
Topic 2: elvis king fans presley life concert young death
Topic 3: yeltsin russian russia president kremlin moscow michael operation
Topic 4: pope vatican paul john surgery hospital pontiff rome
Topic 5: family funeral police miami versace cunanan city service
Topic 6: simpson former years court president wife south church
Topic 7: order mother successor election nuns church nirmala head
Topic 8: charles prince diana royal king queen parker bowles
Topic 9: film french france against bardot paris poster animal
Topic 10: germany german war nazi letter christian book jews
Topic 11: east peace prize award timor quebec belo leader
Topic 12: n't life show told very love television father
Topic 13: years year time last church world people say
Topic 14: mother teresa heart calcutta charity nun hospital missionaries
Topic 15: city salonika capital buddhist cultural vietnam byzantine show
Topic 16: music tour opera singer israel people film israeli
Topic 17: church catholic bernardin cardinal bishop wright death cancer
Topic 18: harriman clinton u.s ambassador paris president churchill france
Topic 19: city museum art exhibition century million churches set

The document-topic distributions are available in model.doc_topic_.

>>> doc_topic = model.doc_topic_
>>> for i in range(10):
...     print("{} (top topic: {})".format(titles[i], doc_topic[i].argmax()))
0 UK: Prince Charles spearheads British royal revolution. LONDON 1996-08-20 (top topic: 8)
1 GERMANY: Historic Dresden church rising from WW2 ashes. DRESDEN, Germany 1996-08-21 (top topic: 13)
2 INDIA: Mother Teresa's condition said still unstable. CALCUTTA 1996-08-23 (top topic: 14)
3 UK: Palace warns British weekly over Charles pictures. LONDON 1996-08-25 (top topic: 8)
4 INDIA: Mother Teresa, slightly stronger, blesses nuns. CALCUTTA 1996-08-25 (top topic: 14)
5 INDIA: Mother Teresa's condition unchanged, thousands pray. CALCUTTA 1996-08-25 (top topic: 14)
6 INDIA: Mother Teresa shows signs of strength, blesses nuns. CALCUTTA 1996-08-26 (top topic: 14)
7 INDIA: Mother Teresa's condition improves, many pray. CALCUTTA, India 1996-08-25 (top topic: 14)
8 INDIA: Mother Teresa improves, nuns pray for "miracle". CALCUTTA 1996-08-26 (top topic: 14)
9 UK: Charles under fire over prospect of Queen Camilla. LONDON 1996-08-26 (top topic: 8)

Requirements

Python 2.7 or Python 3.5+ is required. The following packages are required

Caveat

lda aims for simplicity. (It happens to be fast, as essential parts are written in C via Cython.) If you are working with a very large corpus you may wish to use more sophisticated topic models such as those implemented in hca and MALLET. hca is written entirely in C and MALLET is written in Java. Unlike lda, hca can use more than one processor at a time. Both MALLET and hca implement topic models known to be more robust than standard latent Dirichlet allocation.

Notes

Latent Dirichlet allocation is described in Blei et al. (2003) and Pritchard et al. (2000). Inference using collapsed Gibbs sampling is described in Griffiths and Steyvers (2004).

Other implementations

License

lda is licensed under Version 2.0 of the Mozilla Public License.

Project details


Download files

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

Source Distribution

lda-1.1.0.tar.gz (312.9 kB view details)

Uploaded Source

Built Distributions

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

lda-1.1.0-cp37-cp37m-win_amd64.whl (341.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

lda-1.1.0-cp37-cp37m-win32.whl (329.0 kB view details)

Uploaded CPython 3.7mWindows x86

lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl (349.1 kB view details)

Uploaded CPython 3.7m

lda-1.1.0-cp37-cp37m-manylinux1_i686.whl (339.4 kB view details)

Uploaded CPython 3.7m

lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (413.6 kB view details)

Uploaded CPython 3.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

lda-1.1.0-cp36-cp36m-win_amd64.whl (334.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

lda-1.1.0-cp36-cp36m-win32.whl (322.2 kB view details)

Uploaded CPython 3.6mWindows x86

lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl (348.2 kB view details)

Uploaded CPython 3.6m

lda-1.1.0-cp36-cp36m-manylinux1_i686.whl (338.6 kB view details)

Uploaded CPython 3.6m

lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (406.0 kB view details)

Uploaded CPython 3.6mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

lda-1.1.0-cp35-cp35m-win_amd64.whl (333.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

lda-1.1.0-cp35-cp35m-win32.whl (321.9 kB view details)

Uploaded CPython 3.5mWindows x86

lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl (347.6 kB view details)

Uploaded CPython 3.5m

lda-1.1.0-cp35-cp35m-manylinux1_i686.whl (337.7 kB view details)

Uploaded CPython 3.5m

lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (404.7 kB view details)

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

lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl (346.7 kB view details)

Uploaded CPython 2.7mu

lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl (337.8 kB view details)

Uploaded CPython 2.7mu

lda-1.1.0-cp27-cp27m-win32.whl (322.9 kB view details)

Uploaded CPython 2.7mWindows x86

lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl (346.7 kB view details)

Uploaded CPython 2.7m

lda-1.1.0-cp27-cp27m-manylinux1_i686.whl (337.8 kB view details)

Uploaded CPython 2.7m

lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (412.9 kB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

File details

Details for the file lda-1.1.0.tar.gz.

File metadata

  • Download URL: lda-1.1.0.tar.gz
  • Upload date:
  • Size: 312.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0.tar.gz
Algorithm Hash digest
SHA256 50b91f80aff1b138b8b78f48d581c0e685e7adb393da9e45905773d5f4cc8bf5
MD5 8bfffd010f684718e8a97c595ef8f788
BLAKE2b-256 8132dda1d4afd621f4da8bb3a049da41f42eac5bf66694817091801b7fe6e5c1

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lda-1.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 341.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dcfc792b833f2fec00fd08777915b51a4afaed09245a22afbacb8fde69ab4daa
MD5 942a020d64196430c09355f9189c7454
BLAKE2b-256 4b5e11c73af7335942b9ece20f965271ea632cc26d26d034598502ee4b982251

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: lda-1.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 329.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cfb7c126fba90fd138382af9dea5ae8c3d8997e18270e6197b19b92a5bd2828b
MD5 7e73200d0886a05172f3439a9edf88e7
BLAKE2b-256 24846e5bd8c4fd7426a66a1ada60ef7c8b7cdca78d68bb41086924f479a7deff

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 349.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c5965d6a6537cec6dd7b65d6a8f838f05cef2b1ee45ce00447d9255868bfaa34
MD5 5d24f36a219ff10b28e414462f823441
BLAKE2b-256 7c74a325ca080ebc5afcd67af4ceea1e5b971e1b5114afb1aacd796e180873d3

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: lda-1.1.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 339.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 26dc6f9a7e877b4708dd3c5c6135aba502e8b88b988ccb7151b2417eb13c0236
MD5 773adfe7ad2fecc18e0bde429da1e88f
BLAKE2b-256 e5915c07d2335ad25dea36a82ab896efeec8c69a58d1d7a0c5614c5b8a719499

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5ec4fe170611244de3a985dcc1e649dccbc161597a1c339773501d0c150ffb81
MD5 bb2e8e97c00a4a6b909658ea5113ef85
BLAKE2b-256 39b41bc2ebf693587013e26f106d91f9d6d5d0fd7eca2ff97453e13e4eb8c121

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: lda-1.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 334.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 575b4af0d33f915d5b4e2e4bab80c11bf2bf67306c1180384f256d2b59209811
MD5 0c7e6b4a2d81e7bfe4275b02abdc67c3
BLAKE2b-256 fafe98cec39e45411a83430978ea2ad21a47468875013e3c3512a9aef9afc46f

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: lda-1.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 322.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b079eb2e6cf2fddf78e5a6eb5d8bad1b5dba1516486f9b39cc4dcb302c1f69c9
MD5 a151c152044f0ec9a08f7c7b67fba285
BLAKE2b-256 30b830a776902104fb2a3616b979c0efa437ebf691fc121f06de748f96560a7c

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 348.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a0b076715b06ad5ba104263c2120bfcbcdf42426244d9ba5ce1158a1bd4e2bac
MD5 7ca2ea3c12cefe82704cbb83cdc9b15e
BLAKE2b-256 fd27d62628d914bff7f048e2b433c3adea9e7072fa20028f1d4194999051cd9d

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: lda-1.1.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 338.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 35de46a8b689c314f46f1f8456b3c4c0983cd880be67b713c365b53f5f5939dd
MD5 aae28285a7f07c3da0f38816b44ec04a
BLAKE2b-256 3f2e79b424c079cfe704173aef9454b5c86c0af784329fa6347649acce989f82

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 48b44b4f7d1a88fb16cff42be4b30229433b6df085cf49f289d57030bdc160d9
MD5 8bef8b5e8427217bd49be987d2c578a7
BLAKE2b-256 99d13af33c4623fe3527f7cd096e96fb4f1477083e75274a771a40f05ec81443

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: lda-1.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 333.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a31eb86c3189454772243152119f2caa52648179686c3716684bf92c8a4b9547
MD5 4b078799f9e31dba8853a2f4e9048ef2
BLAKE2b-256 6de1b15800e119b3586330eaab84b537fe1895f1d5ffbb0508036e72395df2c3

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: lda-1.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 321.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6c41854025e4c9ec4369167f47feb465748b7f0664f7611d4c6cf67651406167
MD5 c618356772b524de593751615bcbfb66
BLAKE2b-256 8ca19bd76746277180d711a697a35ada0e0a3c3c85823d8206c75f0afae2566b

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 347.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92354aa5b92271676fb3bc159c2e052a76b999b04470681d50c963831b6299ab
MD5 11e4ee1b1607cc794b3ba68d5deb3dcc
BLAKE2b-256 544ce387febde4dfffa6bd81d1feff7c3764816c8030561e5676a3f4ac635447

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: lda-1.1.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 337.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 09bd558d73bee0fdd39fb1916e8bbb5bb800cedba9d7fe8a7c79ef14980ef84c
MD5 497b5ba534665433eeeb5a7302915299
BLAKE2b-256 9c66742499ad2a92526dace988dc70bf0faef3be360a9eb01f362ae2cf48a4b4

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 636bdc766d9fbc8c443d68ac1943c5eb684c3e5fa993948f394ec6805f235c34
MD5 3665b448d8be46b5b59202c0f782ea0a
BLAKE2b-256 271dde4bfe79aba15ee2a9c99e9b49c6d25286ddf852a0a0529084b212de65b7

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 346.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42842b5b64a521bf971b9bdd0873936b9e3304e98260decc04c11293aff47b08
MD5 985e5bdc5dc066bd0efe7e2753bdf0b7
BLAKE2b-256 7b9f4c429a39477333ca96a0a3a49de04e55756b6128be272c2600e31783f09a

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 337.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 48440bee469efc90547c06488d3c6f7cdecb8235cf437b4d6b1206f2e6cbda51
MD5 201b01d5b980c18062e2849ebb1bbb71
BLAKE2b-256 e242ac265bc6271f7d1e5abf4c30b757b54d2558bea59da557f2b97d407e4dae

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: lda-1.1.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 322.9 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 814a13c8e69583b937d6a420babba151ccd77cbbac26bbc6cdcc06048b34e9a3
MD5 65be57aedee7d044cfe320402ef004f9
BLAKE2b-256 7deb597ab0759aeceb79a7c287af8c8bf85ee565394aa2676e59314cd39bcb31

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 346.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ceca2692bb2e22225e42b09038482146c3455751fbbc4e5917ab3f554d88843d
MD5 1339f322f8324357d166b277971e72e8
BLAKE2b-256 d00e9815a1ee27c390e4ef01d51949db27e060054591449e3073b06d51e4adcb

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: lda-1.1.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 337.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for lda-1.1.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 340c24e3f98374480120eb4a2944f72fe9029b1ee66add3c5305ca5738454156
MD5 093b66125247b430e3d6dcd3134951a0
BLAKE2b-256 c4993462e0c9cf75f7a8149423231bede02c0a8a97da4907825fd676f55d2c53

See more details on using hashes here.

File details

Details for the file lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d74df1ac5670be64b654fa212372e869f9b2dd61e574c2cb830632ab27383df2
MD5 7bc42b78a4296cd4b455f534f9644da8
BLAKE2b-256 67a2ada59002b2107892cb974b7f2441f2f9c9394ec7e642b7ca2997c640d36b

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