tritopic 1.0.0__tar.gz → 1.1.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.
Potentially problematic release.
This version of tritopic might be problematic. Click here for more details.
- {tritopic-1.0.0 → tritopic-1.1.2}/PKG-INFO +2 -6
- {tritopic-1.0.0 → tritopic-1.1.2}/pyproject.toml +2 -7
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic.egg-info/PKG-INFO +2 -6
- {tritopic-1.0.0 → tritopic-1.1.2}/README.md +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/setup.cfg +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/__init__.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/config.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/__init__.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/clustering.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/embeddings.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/graph.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/keywords.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/refinement.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/core/representatives.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/labeling.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/model.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/multilingual/__init__.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/multilingual/detection.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/multilingual/stopwords.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/multilingual/tokenizers.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic/visualization.py +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic.egg-info/SOURCES.txt +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic.egg-info/dependency_links.txt +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic.egg-info/requires.txt +0 -0
- {tritopic-1.0.0 → tritopic-1.1.2}/tritopic.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tritopic
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Tri-Modal Graph Topic Modeling with Iterative Refinement
|
|
5
|
-
Author-email: Roman Egger <roman.egger@
|
|
5
|
+
Author-email: Roman Egger <roman.egger@smartvisions.at>
|
|
6
6
|
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/roman-egger/tritopic
|
|
8
|
-
Project-URL: Documentation, https://tritopic.readthedocs.io
|
|
9
|
-
Project-URL: Repository, https://github.com/roman-egger/tritopic
|
|
10
|
-
Project-URL: Issues, https://github.com/roman-egger/tritopic/issues
|
|
11
7
|
Keywords: topic-modeling,nlp,machine-learning,bertopic,clustering,text-analysis,multilingual
|
|
12
8
|
Classifier: Development Status :: 4 - Beta
|
|
13
9
|
Classifier: Intended Audience :: Developers
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tritopic"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.1.2"
|
|
8
8
|
description = "Tri-Modal Graph Topic Modeling with Iterative Refinement"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
authors = [
|
|
12
|
-
{name = "Roman Egger", email = "roman.egger@
|
|
12
|
+
{name = "Roman Egger", email = "roman.egger@smartvisions.at"}
|
|
13
13
|
]
|
|
14
14
|
keywords = [
|
|
15
15
|
"topic-modeling", "nlp", "machine-learning", "bertopic",
|
|
@@ -79,11 +79,6 @@ dev = [
|
|
|
79
79
|
"sphinx>=6.0.0",
|
|
80
80
|
]
|
|
81
81
|
|
|
82
|
-
[project.urls]
|
|
83
|
-
Homepage = "https://github.com/roman-egger/tritopic"
|
|
84
|
-
Documentation = "https://tritopic.readthedocs.io"
|
|
85
|
-
Repository = "https://github.com/roman-egger/tritopic"
|
|
86
|
-
Issues = "https://github.com/roman-egger/tritopic/issues"
|
|
87
82
|
|
|
88
83
|
[tool.setuptools.packages.find]
|
|
89
84
|
where = ["."]
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tritopic
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Tri-Modal Graph Topic Modeling with Iterative Refinement
|
|
5
|
-
Author-email: Roman Egger <roman.egger@
|
|
5
|
+
Author-email: Roman Egger <roman.egger@smartvisions.at>
|
|
6
6
|
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/roman-egger/tritopic
|
|
8
|
-
Project-URL: Documentation, https://tritopic.readthedocs.io
|
|
9
|
-
Project-URL: Repository, https://github.com/roman-egger/tritopic
|
|
10
|
-
Project-URL: Issues, https://github.com/roman-egger/tritopic/issues
|
|
11
7
|
Keywords: topic-modeling,nlp,machine-learning,bertopic,clustering,text-analysis,multilingual
|
|
12
8
|
Classifier: Development Status :: 4 - Beta
|
|
13
9
|
Classifier: Intended Audience :: Developers
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|