dragon-ml-toolbox 1.1.3__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 (22) hide show
  1. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/PKG-INFO +13 -6
  2. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/README.md +2 -2
  3. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/PKG-INFO +13 -6
  4. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/SOURCES.txt +0 -1
  5. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/requires.txt +4 -4
  6. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/pyproject.toml +17 -7
  7. dragon_ml_toolbox-1.1.5/setup.cfg +4 -0
  8. dragon_ml_toolbox-1.1.3/setup.cfg +0 -11
  9. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
  10. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
  11. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/MICE_imputation.py +0 -0
  12. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/__init__.py +0 -0
  13. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/data_exploration.py +0 -0
  14. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/datasetmaster.py +0 -0
  15. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/ensemble_learning.py +0 -0
  16. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/handle_excel.py +0 -0
  17. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/logger.py +0 -0
  18. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/particle_swarm_optimization.py +0 -0
  19. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/pytorch_models.py +0 -0
  20. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/trainer.py +0 -0
  21. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/utilities.py +0 -0
  22. {dragon_ml_toolbox-1.1.3 → dragon_ml_toolbox-1.1.5}/ml_tools/vision_helpers.py +0 -0
@@ -1,10 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.3
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
+ 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
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
6
12
  Requires-Python: >=3.9
7
13
  Description-Content-Type: text/markdown
14
+ Requires-Dist: numpy
15
+ Requires-Dist: pandas
16
+ Requires-Dist: matplotlib
17
+ Requires-Dist: scikit-learn
8
18
  Provides-Extra: data-exploration
9
19
  Requires-Dist: pandas; extra == "data-exploration"
10
20
  Requires-Dist: numpy; extra == "data-exploration"
@@ -56,9 +66,6 @@ Requires-Dist: numpy; extra == "trainer"
56
66
  Requires-Dist: torch; extra == "trainer"
57
67
  Requires-Dist: matplotlib; extra == "trainer"
58
68
  Requires-Dist: scikit-learn; extra == "trainer"
59
- Provides-Extra: utilities
60
- Requires-Dist: numpy; extra == "utilities"
61
- Requires-Dist: pandas; extra == "utilities"
62
69
  Provides-Extra: vision-helpers
63
70
  Requires-Dist: Pillow; extra == "vision-helpers"
64
71
  Requires-Dist: torch; extra == "vision-helpers"
@@ -84,7 +91,7 @@ Clone the repository and install in editable mode with optional dependencies:
84
91
  ```bash
85
92
  git clone https://github.com/DrAg0n-BoRn/ML_tools.git
86
93
  cd ML_tools
87
- pip install -e '.[utilities]'
94
+ pip install -e '.[logger]'
88
95
  ```
89
96
 
90
97
  ### Via PyPI (Stable Releases)
@@ -92,7 +99,7 @@ pip install -e '.[utilities]'
92
99
  Install the latest stable release from PyPI with optional dependencies:
93
100
 
94
101
  ```bash
95
- pip install dragon-ml-tools[utilities]
102
+ pip install dragon-ml-tools[logger,trainer]
96
103
  ```
97
104
 
98
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,10 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.3
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
+ 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
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
6
12
  Requires-Python: >=3.9
7
13
  Description-Content-Type: text/markdown
14
+ Requires-Dist: numpy
15
+ Requires-Dist: pandas
16
+ Requires-Dist: matplotlib
17
+ Requires-Dist: scikit-learn
8
18
  Provides-Extra: data-exploration
9
19
  Requires-Dist: pandas; extra == "data-exploration"
10
20
  Requires-Dist: numpy; extra == "data-exploration"
@@ -56,9 +66,6 @@ Requires-Dist: numpy; extra == "trainer"
56
66
  Requires-Dist: torch; extra == "trainer"
57
67
  Requires-Dist: matplotlib; extra == "trainer"
58
68
  Requires-Dist: scikit-learn; extra == "trainer"
59
- Provides-Extra: utilities
60
- Requires-Dist: numpy; extra == "utilities"
61
- Requires-Dist: pandas; extra == "utilities"
62
69
  Provides-Extra: vision-helpers
63
70
  Requires-Dist: Pillow; extra == "vision-helpers"
64
71
  Requires-Dist: torch; extra == "vision-helpers"
@@ -84,7 +91,7 @@ Clone the repository and install in editable mode with optional dependencies:
84
91
  ```bash
85
92
  git clone https://github.com/DrAg0n-BoRn/ML_tools.git
86
93
  cd ML_tools
87
- pip install -e '.[utilities]'
94
+ pip install -e '.[logger]'
88
95
  ```
89
96
 
90
97
  ### Via PyPI (Stable Releases)
@@ -92,7 +99,7 @@ pip install -e '.[utilities]'
92
99
  Install the latest stable release from PyPI with optional dependencies:
93
100
 
94
101
  ```bash
95
- pip install dragon-ml-tools[utilities]
102
+ pip install dragon-ml-tools[logger,trainer]
96
103
  ```
97
104
 
98
105
  ## Usage
@@ -1,6 +1,5 @@
1
1
  README.md
2
2
  pyproject.toml
3
- setup.cfg
4
3
  dragon_ml_toolbox.egg-info/PKG-INFO
5
4
  dragon_ml_toolbox.egg-info/SOURCES.txt
6
5
  dragon_ml_toolbox.egg-info/dependency_links.txt
@@ -1,3 +1,7 @@
1
+ numpy
2
+ pandas
3
+ matplotlib
4
+ scikit-learn
1
5
 
2
6
  [data_exploration]
3
7
  pandas
@@ -59,10 +63,6 @@ torch
59
63
  matplotlib
60
64
  scikit-learn
61
65
 
62
- [utilities]
63
- numpy
64
- pandas
65
-
66
66
  [vision_helpers]
67
67
  Pillow
68
68
  torch
@@ -1,13 +1,28 @@
1
1
  [project]
2
2
  name = "dragon-ml-toolbox"
3
- version = "1.1.3"
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" }
7
7
  ]
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.9"
10
- dependencies = []
10
+ license = { text = "MIT" }
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Operating System :: OS Independent"
15
+ ]
16
+ dependencies = [
17
+ "numpy",
18
+ "pandas",
19
+ "matplotlib",
20
+ "scikit-learn",
21
+ ]
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"
11
26
 
12
27
  [project.optional-dependencies]
13
28
  data_exploration = [
@@ -79,11 +94,6 @@ trainer = [
79
94
  "scikit-learn"
80
95
  ]
81
96
 
82
- utilities = [
83
- "numpy",
84
- "pandas"
85
- ]
86
-
87
97
  vision_helpers = [
88
98
  "Pillow",
89
99
  "torch",
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -1,11 +0,0 @@
1
- [metadata]
2
- license = MIT
3
- classifiers =
4
- Programming Language :: Python :: 3
5
- License :: OSI Approved :: MIT License
6
- Operating System :: OS Independent
7
-
8
- [egg_info]
9
- tag_build =
10
- tag_date = 0
11
-