deeplotx 0.4.1__tar.gz → 0.4.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 (32) hide show
  1. {deeplotx-0.4.1 → deeplotx-0.4.2}/PKG-INFO +4 -4
  2. {deeplotx-0.4.1 → deeplotx-0.4.2}/README.md +2 -2
  3. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/__init__.py +7 -1
  4. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx.egg-info/PKG-INFO +4 -4
  5. {deeplotx-0.4.1 → deeplotx-0.4.2}/pyproject.toml +2 -2
  6. {deeplotx-0.4.1 → deeplotx-0.4.2}/LICENSE +0 -0
  7. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/encoder/__init__.py +0 -0
  8. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/encoder/bert_encoder.py +0 -0
  9. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/encoder/long_text_encoder.py +0 -0
  10. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/encoder/longformer_encoder.py +0 -0
  11. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/__init__.py +0 -0
  12. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/auto_regression.py +0 -0
  13. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/base_neural_network.py +0 -0
  14. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/linear_regression.py +0 -0
  15. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/logistic_regression.py +0 -0
  16. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/recursive_sequential.py +0 -0
  17. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/nn/softmax_regression.py +0 -0
  18. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/similarity/__init__.py +0 -0
  19. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/similarity/distribution.py +0 -0
  20. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/similarity/set.py +0 -0
  21. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/similarity/vector.py +0 -0
  22. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/trainer/__init__.py +0 -0
  23. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/trainer/base_trainer.py +0 -0
  24. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/trainer/text_binary_classification_trainer.py +0 -0
  25. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/util/__init__.py +0 -0
  26. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/util/hash.py +0 -0
  27. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx/util/read_file.py +0 -0
  28. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx.egg-info/SOURCES.txt +0 -0
  29. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx.egg-info/dependency_links.txt +0 -0
  30. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx.egg-info/requires.txt +0 -0
  31. {deeplotx-0.4.1 → deeplotx-0.4.2}/deeplotx.egg-info/top_level.txt +0 -0
  32. {deeplotx-0.4.1 → deeplotx-0.4.2}/setup.cfg +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.4.1
4
- Summary: Easy-2-use long text classifier trainers.
3
+ Version: 0.4.2
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
@@ -14,7 +14,7 @@ Requires-Dist: transformers>=4.51.3
14
14
  Requires-Dist: typing-extensions>=4.13.2
15
15
  Dynamic: license-file
16
16
 
17
- # DeepLoTX: Easy2UseLongTextClassifierTrainers
17
+ # DeepLoTX: Easy2UseLongTextNLPToolkit
18
18
 
19
19
  ## Installation
20
20
 
@@ -38,7 +38,7 @@ Dynamic: license-file
38
38
 
39
39
  ## Quick Start
40
40
 
41
- To train a binary classifier for text files:
41
+ To train a binary classifier from text files:
42
42
 
43
43
  ```python
44
44
  from deeplotx.util import get_files, read_file
@@ -1,4 +1,4 @@
1
- # DeepLoTX: Easy2UseLongTextClassifierTrainers
1
+ # DeepLoTX: Easy2UseLongTextNLPToolkit
2
2
 
3
3
  ## Installation
4
4
 
@@ -22,7 +22,7 @@
22
22
 
23
23
  ## Quick Start
24
24
 
25
- To train a binary classifier for text files:
25
+ To train a binary classifier from text files:
26
26
 
27
27
  ```python
28
28
  from deeplotx.util import get_files, read_file
@@ -4,7 +4,13 @@ import os
4
4
  __ROOT__ = os.path.dirname(os.path.abspath(__file__))
5
5
 
6
6
  from .encoder import BertEncoder, LongTextEncoder, LongformerEncoder
7
- from .nn import LinearRegression, LogisticRegression, SoftmaxRegression
7
+ from .nn import (
8
+ LinearRegression,
9
+ LogisticRegression,
10
+ SoftmaxRegression,
11
+ RecursiveSequential,
12
+ AutoRegression
13
+ )
8
14
  from .trainer import TextBinaryClassifierTrainer
9
15
 
10
16
  __AUTHOR__ = '吴子豪 / Vortez Wohl'
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.4.1
4
- Summary: Easy-2-use long text classifier trainers.
3
+ Version: 0.4.2
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
@@ -14,7 +14,7 @@ Requires-Dist: transformers>=4.51.3
14
14
  Requires-Dist: typing-extensions>=4.13.2
15
15
  Dynamic: license-file
16
16
 
17
- # DeepLoTX: Easy2UseLongTextClassifierTrainers
17
+ # DeepLoTX: Easy2UseLongTextNLPToolkit
18
18
 
19
19
  ## Installation
20
20
 
@@ -38,7 +38,7 @@ Dynamic: license-file
38
38
 
39
39
  ## Quick Start
40
40
 
41
- To train a binary classifier for text files:
41
+ To train a binary classifier from text files:
42
42
 
43
43
  ```python
44
44
  from deeplotx.util import get_files, read_file
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "deeplotx"
3
- version = "0.4.1"
4
- description = "Easy-2-use long text classifier trainers."
3
+ version = "0.4.2"
4
+ description = "Easy-2-use long text NLP toolkit."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
File without changes
File without changes
File without changes