dragon-ml-toolbox 1.1.4__tar.gz → 1.1.6__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 dragon-ml-toolbox might be problematic. Click here for more details.
- dragon_ml_toolbox-1.1.6/LICENSE +21 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/PKG-INFO +11 -8
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/README.md +2 -2
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/PKG-INFO +11 -8
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/SOURCES.txt +1 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/requires.txt +3 -4
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/pyproject.toml +10 -9
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/MICE_imputation.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/__init__.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/data_exploration.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/datasetmaster.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/ensemble_learning.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/handle_excel.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/logger.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/particle_swarm_optimization.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/pytorch_models.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/trainer.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/utilities.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/ml_tools/vision_helpers.py +0 -0
- {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/setup.cfg +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Karl Loza
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dragon-ml-toolbox
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: A collection of tools for machine learning projects
|
|
5
5
|
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/DrAg0n-BoRn/ML_tools
|
|
8
|
+
Project-URL: Changelog, https://github.com/DrAg0n-BoRn/ML_tools/blob/master/CHANGELOG.md
|
|
7
9
|
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
10
|
Classifier: Operating System :: OS Independent
|
|
10
11
|
Requires-Python: >=3.9
|
|
11
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
12
14
|
Requires-Dist: numpy
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: matplotlib
|
|
17
|
+
Requires-Dist: scikit-learn
|
|
13
18
|
Provides-Extra: data-exploration
|
|
14
19
|
Requires-Dist: pandas; extra == "data-exploration"
|
|
15
20
|
Requires-Dist: numpy; extra == "data-exploration"
|
|
@@ -61,13 +66,11 @@ Requires-Dist: numpy; extra == "trainer"
|
|
|
61
66
|
Requires-Dist: torch; extra == "trainer"
|
|
62
67
|
Requires-Dist: matplotlib; extra == "trainer"
|
|
63
68
|
Requires-Dist: scikit-learn; extra == "trainer"
|
|
64
|
-
Provides-Extra: utilities
|
|
65
|
-
Requires-Dist: numpy; extra == "utilities"
|
|
66
|
-
Requires-Dist: pandas; extra == "utilities"
|
|
67
69
|
Provides-Extra: vision-helpers
|
|
68
70
|
Requires-Dist: Pillow; extra == "vision-helpers"
|
|
69
71
|
Requires-Dist: torch; extra == "vision-helpers"
|
|
70
72
|
Requires-Dist: torchvision; extra == "vision-helpers"
|
|
73
|
+
Dynamic: license-file
|
|
71
74
|
|
|
72
75
|
# dragon-ml-tools
|
|
73
76
|
|
|
@@ -89,7 +92,7 @@ Clone the repository and install in editable mode with optional dependencies:
|
|
|
89
92
|
```bash
|
|
90
93
|
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
91
94
|
cd ML_tools
|
|
92
|
-
pip install -e '.[
|
|
95
|
+
pip install -e '.[logger]'
|
|
93
96
|
```
|
|
94
97
|
|
|
95
98
|
### Via PyPI (Stable Releases)
|
|
@@ -97,7 +100,7 @@ pip install -e '.[utilities]'
|
|
|
97
100
|
Install the latest stable release from PyPI with optional dependencies:
|
|
98
101
|
|
|
99
102
|
```bash
|
|
100
|
-
pip install dragon-ml-tools[
|
|
103
|
+
pip install dragon-ml-tools[logger,trainer]
|
|
101
104
|
```
|
|
102
105
|
|
|
103
106
|
## Usage
|
|
@@ -18,7 +18,7 @@ Clone the repository and install in editable mode with optional dependencies:
|
|
|
18
18
|
```bash
|
|
19
19
|
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
20
20
|
cd ML_tools
|
|
21
|
-
pip install -e '.[
|
|
21
|
+
pip install -e '.[logger]'
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Via PyPI (Stable Releases)
|
|
@@ -26,7 +26,7 @@ pip install -e '.[utilities]'
|
|
|
26
26
|
Install the latest stable release from PyPI with optional dependencies:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
pip install dragon-ml-tools[
|
|
29
|
+
pip install dragon-ml-tools[logger,trainer]
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Usage
|
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dragon-ml-toolbox
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: A collection of tools for machine learning projects
|
|
5
5
|
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/DrAg0n-BoRn/ML_tools
|
|
8
|
+
Project-URL: Changelog, https://github.com/DrAg0n-BoRn/ML_tools/blob/master/CHANGELOG.md
|
|
7
9
|
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
10
|
Classifier: Operating System :: OS Independent
|
|
10
11
|
Requires-Python: >=3.9
|
|
11
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
12
14
|
Requires-Dist: numpy
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: matplotlib
|
|
17
|
+
Requires-Dist: scikit-learn
|
|
13
18
|
Provides-Extra: data-exploration
|
|
14
19
|
Requires-Dist: pandas; extra == "data-exploration"
|
|
15
20
|
Requires-Dist: numpy; extra == "data-exploration"
|
|
@@ -61,13 +66,11 @@ Requires-Dist: numpy; extra == "trainer"
|
|
|
61
66
|
Requires-Dist: torch; extra == "trainer"
|
|
62
67
|
Requires-Dist: matplotlib; extra == "trainer"
|
|
63
68
|
Requires-Dist: scikit-learn; extra == "trainer"
|
|
64
|
-
Provides-Extra: utilities
|
|
65
|
-
Requires-Dist: numpy; extra == "utilities"
|
|
66
|
-
Requires-Dist: pandas; extra == "utilities"
|
|
67
69
|
Provides-Extra: vision-helpers
|
|
68
70
|
Requires-Dist: Pillow; extra == "vision-helpers"
|
|
69
71
|
Requires-Dist: torch; extra == "vision-helpers"
|
|
70
72
|
Requires-Dist: torchvision; extra == "vision-helpers"
|
|
73
|
+
Dynamic: license-file
|
|
71
74
|
|
|
72
75
|
# dragon-ml-tools
|
|
73
76
|
|
|
@@ -89,7 +92,7 @@ Clone the repository and install in editable mode with optional dependencies:
|
|
|
89
92
|
```bash
|
|
90
93
|
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
91
94
|
cd ML_tools
|
|
92
|
-
pip install -e '.[
|
|
95
|
+
pip install -e '.[logger]'
|
|
93
96
|
```
|
|
94
97
|
|
|
95
98
|
### Via PyPI (Stable Releases)
|
|
@@ -97,7 +100,7 @@ pip install -e '.[utilities]'
|
|
|
97
100
|
Install the latest stable release from PyPI with optional dependencies:
|
|
98
101
|
|
|
99
102
|
```bash
|
|
100
|
-
pip install dragon-ml-tools[
|
|
103
|
+
pip install dragon-ml-tools[logger,trainer]
|
|
101
104
|
```
|
|
102
105
|
|
|
103
106
|
## Usage
|
|
@@ -1,22 +1,28 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "dragon-ml-toolbox"
|
|
3
|
-
version = "1.1.
|
|
3
|
+
version = "1.1.6"
|
|
4
4
|
description = "A collection of tools for machine learning projects"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Karl Loza", email = "luigiloza@gmail.com" }
|
|
7
7
|
]
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.9"
|
|
10
|
-
license =
|
|
10
|
+
license = "MIT"
|
|
11
11
|
classifiers = [
|
|
12
12
|
"Programming Language :: Python :: 3",
|
|
13
|
-
"License :: OSI Approved :: MIT License",
|
|
14
13
|
"Operating System :: OS Independent"
|
|
15
14
|
]
|
|
16
15
|
dependencies = [
|
|
17
|
-
"numpy"
|
|
16
|
+
"numpy",
|
|
17
|
+
"pandas",
|
|
18
|
+
"matplotlib",
|
|
19
|
+
"scikit-learn",
|
|
18
20
|
]
|
|
19
21
|
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/DrAg0n-BoRn/ML_tools"
|
|
24
|
+
Changelog = "https://github.com/DrAg0n-BoRn/ML_tools/blob/master/CHANGELOG.md"
|
|
25
|
+
|
|
20
26
|
[project.optional-dependencies]
|
|
21
27
|
data_exploration = [
|
|
22
28
|
"pandas",
|
|
@@ -87,11 +93,6 @@ trainer = [
|
|
|
87
93
|
"scikit-learn"
|
|
88
94
|
]
|
|
89
95
|
|
|
90
|
-
utilities = [
|
|
91
|
-
"numpy",
|
|
92
|
-
"pandas"
|
|
93
|
-
]
|
|
94
|
-
|
|
95
96
|
vision_helpers = [
|
|
96
97
|
"Pillow",
|
|
97
98
|
"torch",
|
{dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.6}/dragon_ml_toolbox.egg-info/top_level.txt
RENAMED
|
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
|