dragon-ml-toolbox 1.1.4__tar.gz → 1.1.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.

Potentially problematic release.


This version of dragon-ml-toolbox might be problematic. Click here for more details.

Files changed (21) hide show
  1. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/PKG-INFO +8 -6
  2. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/README.md +2 -2
  3. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/PKG-INFO +8 -6
  4. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/requires.txt +3 -4
  5. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/pyproject.toml +9 -7
  6. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/SOURCES.txt +0 -0
  7. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
  8. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
  9. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/MICE_imputation.py +0 -0
  10. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/__init__.py +0 -0
  11. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/data_exploration.py +0 -0
  12. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/datasetmaster.py +0 -0
  13. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/ensemble_learning.py +0 -0
  14. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/handle_excel.py +0 -0
  15. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/logger.py +0 -0
  16. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/particle_swarm_optimization.py +0 -0
  17. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/pytorch_models.py +0 -0
  18. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/trainer.py +0 -0
  19. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/utilities.py +0 -0
  20. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/ml_tools/vision_helpers.py +0 -0
  21. {dragon_ml_toolbox-1.1.4 → dragon_ml_toolbox-1.1.5}/setup.cfg +0 -0
@@ -1,15 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Summary: A collection of tools for machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
6
  License: 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
10
  Classifier: License :: OSI Approved :: MIT License
9
11
  Classifier: Operating System :: OS Independent
10
12
  Requires-Python: >=3.9
11
13
  Description-Content-Type: text/markdown
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,9 +66,6 @@ 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"
@@ -89,7 +91,7 @@ Clone the repository and install in editable mode with optional dependencies:
89
91
  ```bash
90
92
  git clone https://github.com/DrAg0n-BoRn/ML_tools.git
91
93
  cd ML_tools
92
- pip install -e '.[utilities]'
94
+ pip install -e '.[logger]'
93
95
  ```
94
96
 
95
97
  ### Via PyPI (Stable Releases)
@@ -97,7 +99,7 @@ pip install -e '.[utilities]'
97
99
  Install the latest stable release from PyPI with optional dependencies:
98
100
 
99
101
  ```bash
100
- pip install dragon-ml-tools[utilities]
102
+ pip install dragon-ml-tools[logger,trainer]
101
103
  ```
102
104
 
103
105
  ## 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 '.[utilities]'
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[utilities]
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.4
3
+ Version: 1.1.5
4
4
  Summary: A collection of tools for machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
6
  License: 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
10
  Classifier: License :: OSI Approved :: MIT License
9
11
  Classifier: Operating System :: OS Independent
10
12
  Requires-Python: >=3.9
11
13
  Description-Content-Type: text/markdown
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,9 +66,6 @@ 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"
@@ -89,7 +91,7 @@ Clone the repository and install in editable mode with optional dependencies:
89
91
  ```bash
90
92
  git clone https://github.com/DrAg0n-BoRn/ML_tools.git
91
93
  cd ML_tools
92
- pip install -e '.[utilities]'
94
+ pip install -e '.[logger]'
93
95
  ```
94
96
 
95
97
  ### Via PyPI (Stable Releases)
@@ -97,7 +99,7 @@ pip install -e '.[utilities]'
97
99
  Install the latest stable release from PyPI with optional dependencies:
98
100
 
99
101
  ```bash
100
- pip install dragon-ml-tools[utilities]
102
+ pip install dragon-ml-tools[logger,trainer]
101
103
  ```
102
104
 
103
105
  ## Usage
@@ -1,4 +1,7 @@
1
1
  numpy
2
+ pandas
3
+ matplotlib
4
+ scikit-learn
2
5
 
3
6
  [data_exploration]
4
7
  pandas
@@ -60,10 +63,6 @@ torch
60
63
  matplotlib
61
64
  scikit-learn
62
65
 
63
- [utilities]
64
- numpy
65
- pandas
66
-
67
66
  [vision_helpers]
68
67
  Pillow
69
68
  torch
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "dragon-ml-toolbox"
3
- version = "1.1.4"
3
+ version = "1.1.5"
4
4
  description = "A collection of tools for machine learning projects"
5
5
  authors = [
6
6
  { name = "Karl Loza", email = "luigiloza@gmail.com" }
@@ -14,9 +14,16 @@ classifiers = [
14
14
  "Operating System :: OS Independent"
15
15
  ]
16
16
  dependencies = [
17
- "numpy"
17
+ "numpy",
18
+ "pandas",
19
+ "matplotlib",
20
+ "scikit-learn",
18
21
  ]
19
22
 
23
+ [project.urls]
24
+ Homepage = "https://github.com/DrAg0n-BoRn/ML_tools"
25
+ Changelog = "https://github.com/DrAg0n-BoRn/ML_tools/blob/master/CHANGELOG.md"
26
+
20
27
  [project.optional-dependencies]
21
28
  data_exploration = [
22
29
  "pandas",
@@ -87,11 +94,6 @@ trainer = [
87
94
  "scikit-learn"
88
95
  ]
89
96
 
90
- utilities = [
91
- "numpy",
92
- "pandas"
93
- ]
94
-
95
97
  vision_helpers = [
96
98
  "Pillow",
97
99
  "torch",