deeplotx 0.4.2__tar.gz → 0.4.5__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 (33) hide show
  1. {deeplotx-0.4.2 → deeplotx-0.4.5}/PKG-INFO +10 -6
  2. {deeplotx-0.4.2 → deeplotx-0.4.5}/README.md +5 -1
  3. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/similarity/__init__.py +5 -0
  4. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx.egg-info/PKG-INFO +10 -6
  5. deeplotx-0.4.5/deeplotx.egg-info/requires.txt +7 -0
  6. {deeplotx-0.4.2 → deeplotx-0.4.5}/pyproject.toml +5 -5
  7. deeplotx-0.4.2/deeplotx.egg-info/requires.txt +0 -7
  8. {deeplotx-0.4.2 → deeplotx-0.4.5}/LICENSE +0 -0
  9. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/__init__.py +0 -0
  10. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/encoder/__init__.py +0 -0
  11. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/encoder/bert_encoder.py +0 -0
  12. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/encoder/long_text_encoder.py +0 -0
  13. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/encoder/longformer_encoder.py +0 -0
  14. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/__init__.py +0 -0
  15. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/auto_regression.py +0 -0
  16. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/base_neural_network.py +0 -0
  17. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/linear_regression.py +0 -0
  18. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/logistic_regression.py +0 -0
  19. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/recursive_sequential.py +0 -0
  20. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/nn/softmax_regression.py +0 -0
  21. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/similarity/distribution.py +0 -0
  22. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/similarity/set.py +0 -0
  23. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/similarity/vector.py +0 -0
  24. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/trainer/__init__.py +0 -0
  25. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/trainer/base_trainer.py +0 -0
  26. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/trainer/text_binary_classification_trainer.py +0 -0
  27. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/util/__init__.py +0 -0
  28. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/util/hash.py +0 -0
  29. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx/util/read_file.py +0 -0
  30. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx.egg-info/SOURCES.txt +0 -0
  31. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx.egg-info/dependency_links.txt +0 -0
  32. {deeplotx-0.4.2 → deeplotx-0.4.5}/deeplotx.egg-info/top_level.txt +0 -0
  33. {deeplotx-0.4.2 → deeplotx-0.4.5}/setup.cfg +0 -0
@@ -1,20 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.4.2
3
+ Version: 0.4.5
4
4
  Summary: Easy-2-use long text NLP toolkit.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
7
7
  License-File: LICENSE
8
8
  Requires-Dist: hf-xet>=1.0.5
9
- Requires-Dist: jupyter>=1.1.1
10
- Requires-Dist: numpy>=2.2.5
9
+ Requires-Dist: jupyter
10
+ Requires-Dist: numpy
11
11
  Requires-Dist: python-dotenv>=1.1.0
12
- Requires-Dist: torch>=2.7.0
13
- Requires-Dist: transformers>=4.51.3
12
+ Requires-Dist: torch
13
+ Requires-Dist: transformers
14
14
  Requires-Dist: typing-extensions>=4.13.2
15
15
  Dynamic: license-file
16
16
 
17
- # DeepLoTX: Easy2UseLongTextNLPToolkit
17
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/vortezwohl/LoTC)
18
+
19
+ # DeepLoTX
20
+
21
+ An Easy-2-use long text NLP toolkit
18
22
 
19
23
  ## Installation
20
24
 
@@ -1,4 +1,8 @@
1
- # DeepLoTX: Easy2UseLongTextNLPToolkit
1
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/vortezwohl/LoTC)
2
+
3
+ # DeepLoTX
4
+
5
+ An Easy-2-use long text NLP toolkit
2
6
 
3
7
  ## Installation
4
8
 
@@ -15,3 +15,8 @@ def ndarray_adapter(*args) -> tuple | np.ndarray:
15
15
  if len(args) > 1:
16
16
  return tuple(args)
17
17
  return args[0]
18
+
19
+
20
+ from .set import jaccard_similarity, ochiai_similarity, dice_coefficient, overlap_coefficient
21
+ from .vector import euclidean_similarity, cosine_similarity, chebyshev_similarity, l2_normalize, z_score_normalize
22
+ from .distribution import cross_entropy, kl_divergence, js_divergence, hellinger_distance
@@ -1,20 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.4.2
3
+ Version: 0.4.5
4
4
  Summary: Easy-2-use long text NLP toolkit.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
7
7
  License-File: LICENSE
8
8
  Requires-Dist: hf-xet>=1.0.5
9
- Requires-Dist: jupyter>=1.1.1
10
- Requires-Dist: numpy>=2.2.5
9
+ Requires-Dist: jupyter
10
+ Requires-Dist: numpy
11
11
  Requires-Dist: python-dotenv>=1.1.0
12
- Requires-Dist: torch>=2.7.0
13
- Requires-Dist: transformers>=4.51.3
12
+ Requires-Dist: torch
13
+ Requires-Dist: transformers
14
14
  Requires-Dist: typing-extensions>=4.13.2
15
15
  Dynamic: license-file
16
16
 
17
- # DeepLoTX: Easy2UseLongTextNLPToolkit
17
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/vortezwohl/LoTC)
18
+
19
+ # DeepLoTX
20
+
21
+ An Easy-2-use long text NLP toolkit
18
22
 
19
23
  ## Installation
20
24
 
@@ -0,0 +1,7 @@
1
+ hf-xet>=1.0.5
2
+ jupyter
3
+ numpy
4
+ python-dotenv>=1.1.0
5
+ torch
6
+ transformers
7
+ typing-extensions>=4.13.2
@@ -1,15 +1,15 @@
1
1
  [project]
2
2
  name = "deeplotx"
3
- version = "0.4.2"
3
+ version = "0.4.5"
4
4
  description = "Easy-2-use long text NLP toolkit."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
8
  "hf-xet>=1.0.5",
9
- "jupyter>=1.1.1",
10
- "numpy>=2.2.5",
9
+ "jupyter",
10
+ "numpy",
11
11
  "python-dotenv>=1.1.0",
12
- "torch>=2.7.0",
13
- "transformers>=4.51.3",
12
+ "torch",
13
+ "transformers",
14
14
  "typing-extensions>=4.13.2",
15
15
  ]
@@ -1,7 +0,0 @@
1
- hf-xet>=1.0.5
2
- jupyter>=1.1.1
3
- numpy>=2.2.5
4
- python-dotenv>=1.1.0
5
- torch>=2.7.0
6
- transformers>=4.51.3
7
- typing-extensions>=4.13.2
File without changes
File without changes
File without changes
File without changes