structural-topic-model 0.2.1__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/PKG-INFO +2 -2
  2. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/README.md +1 -1
  3. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/README_ja.md +1 -1
  4. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pyproject.toml +1 -1
  5. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/.gitignore +0 -0
  6. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/LICENSE +0 -0
  7. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/__init__.py +0 -0
  8. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/_estep.py +0 -0
  9. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/_mnreg.py +0 -0
  10. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/_mstep.py +0 -0
  11. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/_spectral.py +0 -0
  12. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/_utils.py +0 -0
  13. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/diagnostics.py +0 -0
  14. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/effects.py +0 -0
  15. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/model_selection.py +0 -0
  16. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/pystm/stm.py +0 -0
  17. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/scripts/gadarian_prep.py +0 -0
  18. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/scripts/validate_gadarian.py +0 -0
  19. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/tests/test_features.py +0 -0
  20. {structural_topic_model-0.2.1 → structural_topic_model-0.2.2}/tests/test_stm.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: structural-topic-model
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Python implementation of the Structural Topic Model (STM), a port of the R stm package with a scikit-learn style API
5
5
  Project-URL: Homepage, https://github.com/hirata-keisuke/pystm
6
6
  Project-URL: Repository, https://github.com/hirata-keisuke/pystm
@@ -27,7 +27,7 @@ Description-Content-Type: text/markdown
27
27
  [![PyPI](https://img.shields.io/pypi/v/structural-topic-model)](https://pypi.org/project/structural-topic-model/)
28
28
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
29
29
 
30
- [日本語 README](README_ja.md)
30
+ [日本語 README](https://github.com/hirata-keisuke/pystm/blob/main/README_ja.md)
31
31
 
32
32
  A Python port of the R [stm](https://github.com/bstewart/stm) package (Roberts, Stewart & Tingley) with a scikit-learn style API.
33
33
 
@@ -3,7 +3,7 @@
3
3
  [![PyPI](https://img.shields.io/pypi/v/structural-topic-model)](https://pypi.org/project/structural-topic-model/)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
5
 
6
- [日本語 README](README_ja.md)
6
+ [日本語 README](https://github.com/hirata-keisuke/pystm/blob/main/README_ja.md)
7
7
 
8
8
  A Python port of the R [stm](https://github.com/bstewart/stm) package (Roberts, Stewart & Tingley) with a scikit-learn style API.
9
9
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  R の [stm](https://github.com/bstewart/stm) パッケージ (Roberts, Stewart & Tingley) のコア推定アルゴリズムを Python に移植したものです。API は scikit-learn の `LatentDirichletAllocation` に倣っています。
7
7
 
8
- [English README](README.md)
8
+ [English README](https://github.com/hirata-keisuke/pystm/blob/main/README.md)
9
9
 
10
10
  ## STM とは
11
11
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "structural-topic-model"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "Python implementation of the Structural Topic Model (STM), a port of the R stm package with a scikit-learn style API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"