deeplotx 0.3.1__tar.gz → 0.3.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.
- {deeplotx-0.3.1 → deeplotx-0.3.2}/PKG-INFO +2 -2
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx.egg-info/PKG-INFO +2 -2
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx.egg-info/requires.txt +1 -1
- {deeplotx-0.3.1 → deeplotx-0.3.2}/pyproject.toml +15 -15
- {deeplotx-0.3.1 → deeplotx-0.3.2}/LICENSE +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/README.md +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/__init__.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/encoder/__init__.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/encoder/bert_encoder.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/encoder/long_text_encoder.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/encoder/longformer_encoder.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/nn/__init__.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/nn/base_neural_network.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/nn/linear_regression.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/nn/logistic_regression.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/nn/softmax_regression.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/similarity/__init__.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/similarity/distribution.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/similarity/set.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/similarity/vector.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/trainer/__init__.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/trainer/base_trainer.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/trainer/text_binary_classification_trainer.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/util/__init__.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/util/hash.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx/util/read_file.py +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx.egg-info/SOURCES.txt +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx.egg-info/dependency_links.txt +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/deeplotx.egg-info/top_level.txt +0 -0
- {deeplotx-0.3.1 → deeplotx-0.3.2}/setup.cfg +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: deeplotx
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.2
|
4
4
|
Summary: Easy-2-use long text classifier trainers.
|
5
5
|
Requires-Python: >=3.10
|
6
6
|
Description-Content-Type: text/markdown
|
7
7
|
License-File: LICENSE
|
8
|
-
Requires-Dist:
|
8
|
+
Requires-Dist: hf-xet>=1.0.5
|
9
9
|
Requires-Dist: jupyter>=1.1.1
|
10
10
|
Requires-Dist: numpy>=2.2.5
|
11
11
|
Requires-Dist: python-dotenv>=1.1.0
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: deeplotx
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.2
|
4
4
|
Summary: Easy-2-use long text classifier trainers.
|
5
5
|
Requires-Python: >=3.10
|
6
6
|
Description-Content-Type: text/markdown
|
7
7
|
License-File: LICENSE
|
8
|
-
Requires-Dist:
|
8
|
+
Requires-Dist: hf-xet>=1.0.5
|
9
9
|
Requires-Dist: jupyter>=1.1.1
|
10
10
|
Requires-Dist: numpy>=2.2.5
|
11
11
|
Requires-Dist: python-dotenv>=1.1.0
|
@@ -1,15 +1,15 @@
|
|
1
|
-
[project]
|
2
|
-
name = "deeplotx"
|
3
|
-
version = "0.3.
|
4
|
-
description = "Easy-2-use long text classifier trainers."
|
5
|
-
readme = "README.md"
|
6
|
-
requires-python = ">=3.10"
|
7
|
-
dependencies = [
|
8
|
-
"
|
9
|
-
"jupyter>=1.1.1",
|
10
|
-
"numpy>=2.2.5",
|
11
|
-
"python-dotenv>=1.1.0",
|
12
|
-
"torch>=2.7.0",
|
13
|
-
"transformers>=4.51.3",
|
14
|
-
"typing-extensions>=4.13.2",
|
15
|
-
]
|
1
|
+
[project]
|
2
|
+
name = "deeplotx"
|
3
|
+
version = "0.3.2"
|
4
|
+
description = "Easy-2-use long text classifier trainers."
|
5
|
+
readme = "README.md"
|
6
|
+
requires-python = ">=3.10"
|
7
|
+
dependencies = [
|
8
|
+
"hf-xet>=1.0.5",
|
9
|
+
"jupyter>=1.1.1",
|
10
|
+
"numpy>=2.2.5",
|
11
|
+
"python-dotenv>=1.1.0",
|
12
|
+
"torch>=2.7.0",
|
13
|
+
"transformers>=4.51.3",
|
14
|
+
"typing-extensions>=4.13.2",
|
15
|
+
]
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|