deeplotx 0.9.8__tar.gz → 0.9.9__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 (46) hide show
  1. {deeplotx-0.9.8 → deeplotx-0.9.9}/PKG-INFO +1 -1
  2. deeplotx-0.9.9/deeplotx/util/__init__.py +2 -0
  3. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx.egg-info/PKG-INFO +1 -1
  4. {deeplotx-0.9.8 → deeplotx-0.9.9}/pyproject.toml +1 -1
  5. deeplotx-0.9.8/deeplotx/util/__init__.py +0 -2
  6. {deeplotx-0.9.8 → deeplotx-0.9.9}/LICENSE +0 -0
  7. {deeplotx-0.9.8 → deeplotx-0.9.9}/README.md +0 -0
  8. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/__init__.py +0 -0
  9. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/encoder/__init__.py +0 -0
  10. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/encoder/encoder.py +0 -0
  11. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/encoder/long_text_encoder.py +0 -0
  12. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/encoder/longformer_encoder.py +0 -0
  13. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/ner/__init__.py +0 -0
  14. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/ner/base_ner.py +0 -0
  15. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/ner/bert_ner.py +0 -0
  16. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/ner/n2g/__init__.py +0 -0
  17. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/ner/named_entity.py +0 -0
  18. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/__init__.py +0 -0
  19. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/attention.py +0 -0
  20. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/auto_regression.py +0 -0
  21. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/base_neural_network.py +0 -0
  22. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/feed_forward.py +0 -0
  23. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/linear_regression.py +0 -0
  24. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/logistic_regression.py +0 -0
  25. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/long_context_auto_regression.py +0 -0
  26. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/long_context_recursive_sequential.py +0 -0
  27. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/multi_head_attention.py +0 -0
  28. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/multi_head_feed_forward.py +0 -0
  29. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/recursive_sequential.py +0 -0
  30. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/roformer_encoder.py +0 -0
  31. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/rope.py +0 -0
  32. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/nn/softmax_regression.py +0 -0
  33. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/similarity/__init__.py +0 -0
  34. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/similarity/distribution.py +0 -0
  35. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/similarity/set.py +0 -0
  36. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/similarity/vector.py +0 -0
  37. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/trainer/__init__.py +0 -0
  38. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/trainer/base_trainer.py +0 -0
  39. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/trainer/text_binary_classification_trainer.py +0 -0
  40. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/util/hash.py +0 -0
  41. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx/util/read_file.py +0 -0
  42. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx.egg-info/SOURCES.txt +0 -0
  43. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx.egg-info/dependency_links.txt +0 -0
  44. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx.egg-info/requires.txt +0 -0
  45. {deeplotx-0.9.8 → deeplotx-0.9.9}/deeplotx.egg-info/top_level.txt +0 -0
  46. {deeplotx-0.9.8 → deeplotx-0.9.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.9.8
3
+ Version: 0.9.9
4
4
  Summary: An out-of-the-box long-text NLP framework.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,2 @@
1
+ from .hash import md5, sha1, sha256, sha512
2
+ from .read_file import read_file, write_file, get_files
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.9.8
3
+ Version: 0.9.9
4
4
  Summary: An out-of-the-box long-text NLP framework.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "deeplotx"
3
- version = '0.9.8'
3
+ version = '0.9.9'
4
4
  description = "An out-of-the-box long-text NLP framework."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,2 +0,0 @@
1
- from .hash import md5, sha1, sha256, sha512
2
- from .read_file import read_file, get_files
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes