tmnt 0.7.44b20240128__tar.gz → 0.7.46__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 (30) hide show
  1. {tmnt-0.7.44b20240128/tmnt.egg-info → tmnt-0.7.46}/PKG-INFO +6 -4
  2. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/README.md +1 -1
  3. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/setup.py +5 -3
  4. {tmnt-0.7.44b20240128 → tmnt-0.7.46/tmnt.egg-info}/PKG-INFO +6 -4
  5. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt.egg-info/requires.txt +3 -1
  6. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/LICENSE +0 -0
  7. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/NOTICE +0 -0
  8. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/setup.cfg +0 -0
  9. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/__init__.py +0 -0
  10. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/configuration.py +0 -0
  11. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/data_loading.py +0 -0
  12. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/distribution.py +0 -0
  13. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/estimator.py +0 -0
  14. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/eval_npmi.py +0 -0
  15. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/inference.py +0 -0
  16. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/modeling.py +0 -0
  17. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/preprocess/__init__.py +0 -0
  18. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/preprocess/tokenizer.py +0 -0
  19. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/preprocess/vectorizer.py +0 -0
  20. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/__init__.py +0 -0
  21. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/csv2json.py +0 -0
  22. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/log_utils.py +0 -0
  23. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/mat_utils.py +0 -0
  24. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/ngram_helpers.py +0 -0
  25. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/pubmed_utils.py +0 -0
  26. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/random.py +0 -0
  27. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt/utils/recalibrate.py +0 -0
  28. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt.egg-info/SOURCES.txt +0 -0
  29. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt.egg-info/dependency_links.txt +0 -0
  30. {tmnt-0.7.44b20240128 → tmnt-0.7.46}/tmnt.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tmnt
3
- Version: 0.7.44b20240128
3
+ Version: 0.7.46
4
4
  Summary: Topic modeling neural toolkit
5
5
  Home-page: https://github.com/mitre/tmnt.git
6
6
  Author: The MITRE Corporation
@@ -9,7 +9,7 @@ License: Apache
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8
12
+ Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
15
  License-File: NOTICE
@@ -27,7 +27,9 @@ Requires-Dist: pyOpenSSL==18.0.0
27
27
  Requires-Dist: PySocks==1.6.8
28
28
  Requires-Dist: sacremoses>=0.0.38
29
29
  Requires-Dist: sentence-splitter==1.4
30
- Requires-Dist: umap-learn==0.4.6
30
+ Requires-Dist: umap-learn[plot]>=0.5.5
31
+ Requires-Dist: numba
32
+ Requires-Dist: scipy
31
33
  Requires-Dist: tabulate>=0.8.7
32
34
  Requires-Dist: torch>=2.1.2
33
35
  Requires-Dist: torchtext>=0.13.0
@@ -35,7 +37,7 @@ Requires-Dist: torchtext>=0.13.0
35
37
  The Topic Modeling Neural Toolkit (TMNT) is a software library that enables training
36
38
  topic models as neural network-based variational auto-encoders.
37
39
 
38
- Current stable version is: 0.7.44
40
+ Current stable version is: 0.7.46
39
41
 
40
42
  Documentation can be found here: https://tmnt.readthedocs.io/en/stable/
41
43
 
@@ -1,7 +1,7 @@
1
1
  The Topic Modeling Neural Toolkit (TMNT) is a software library that enables training
2
2
  topic models as neural network-based variational auto-encoders.
3
3
 
4
- Current stable version is: 0.7.44
4
+ Current stable version is: 0.7.46
5
5
 
6
6
  Documentation can be found here: https://tmnt.readthedocs.io/en/stable/
7
7
 
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
4
4
  from setuptools.command.install import install
5
5
  from pathlib import Path
6
6
 
7
- version = '0.7.44'
7
+ version = '0.7.46'
8
8
 
9
9
  try:
10
10
  if not os.getenv('RELEASE'):
@@ -40,7 +40,9 @@ if __name__ == '__main__':
40
40
  'PySocks==1.6.8',
41
41
  'sacremoses>=0.0.38',
42
42
  'sentence-splitter==1.4',
43
- 'umap-learn==0.4.6',
43
+ 'umap-learn[plot]>=0.5.5',
44
+ 'numba',
45
+ 'scipy',
44
46
  'tabulate>=0.8.7',
45
47
  'torch>=2.1.2',
46
48
  'torchtext>=0.13.0'
@@ -60,7 +62,7 @@ if __name__ == '__main__':
60
62
  "License :: OSI Approved :: Apache Software License",
61
63
  "Operating System :: OS Independent"
62
64
  ],
63
- python_requires='>=3.8',
65
+ python_requires='>=3.10',
64
66
  setup_requires=setup_requires,
65
67
  install_requires=install_requires,
66
68
  packages=find_packages())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tmnt
3
- Version: 0.7.44b20240128
3
+ Version: 0.7.46
4
4
  Summary: Topic modeling neural toolkit
5
5
  Home-page: https://github.com/mitre/tmnt.git
6
6
  Author: The MITRE Corporation
@@ -9,7 +9,7 @@ License: Apache
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8
12
+ Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
15
  License-File: NOTICE
@@ -27,7 +27,9 @@ Requires-Dist: pyOpenSSL==18.0.0
27
27
  Requires-Dist: PySocks==1.6.8
28
28
  Requires-Dist: sacremoses>=0.0.38
29
29
  Requires-Dist: sentence-splitter==1.4
30
- Requires-Dist: umap-learn==0.4.6
30
+ Requires-Dist: umap-learn[plot]>=0.5.5
31
+ Requires-Dist: numba
32
+ Requires-Dist: scipy
31
33
  Requires-Dist: tabulate>=0.8.7
32
34
  Requires-Dist: torch>=2.1.2
33
35
  Requires-Dist: torchtext>=0.13.0
@@ -35,7 +37,7 @@ Requires-Dist: torchtext>=0.13.0
35
37
  The Topic Modeling Neural Toolkit (TMNT) is a software library that enables training
36
38
  topic models as neural network-based variational auto-encoders.
37
39
 
38
- Current stable version is: 0.7.44
40
+ Current stable version is: 0.7.46
39
41
 
40
42
  Documentation can be found here: https://tmnt.readthedocs.io/en/stable/
41
43
 
@@ -12,7 +12,9 @@ pyOpenSSL==18.0.0
12
12
  PySocks==1.6.8
13
13
  sacremoses>=0.0.38
14
14
  sentence-splitter==1.4
15
- umap-learn==0.4.6
15
+ umap-learn[plot]>=0.5.5
16
+ numba
17
+ scipy
16
18
  tabulate>=0.8.7
17
19
  torch>=2.1.2
18
20
  torchtext>=0.13.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes