dragon-ml-toolbox 1.1.2__tar.gz → 1.1.4__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.2 → dragon_ml_toolbox-1.1.4}/PKG-INFO +10 -3
  2. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/README.md +4 -2
  3. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/PKG-INFO +10 -3
  4. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/SOURCES.txt +0 -1
  5. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/requires.txt +1 -0
  6. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/pyproject.toml +10 -2
  7. dragon_ml_toolbox-1.1.4/setup.cfg +4 -0
  8. dragon_ml_toolbox-1.1.2/setup.cfg +0 -11
  9. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
  10. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
  11. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/MICE_imputation.py +0 -0
  12. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/__init__.py +0 -0
  13. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/data_exploration.py +0 -0
  14. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/datasetmaster.py +0 -0
  15. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/ensemble_learning.py +0 -0
  16. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/handle_excel.py +0 -0
  17. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/logger.py +0 -0
  18. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/particle_swarm_optimization.py +0 -0
  19. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/pytorch_models.py +0 -0
  20. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/trainer.py +0 -0
  21. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/utilities.py +0 -0
  22. {dragon_ml_toolbox-1.1.2 → dragon_ml_toolbox-1.1.4}/ml_tools/vision_helpers.py +0 -0
@@ -1,10 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.2
3
+ Version: 1.1.4
4
4
  Summary: A collection of tools for machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
6
10
  Requires-Python: >=3.9
7
11
  Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy
8
13
  Provides-Extra: data-exploration
9
14
  Requires-Dist: pandas; extra == "data-exploration"
10
15
  Requires-Dist: numpy; extra == "data-exploration"
@@ -64,7 +69,7 @@ Requires-Dist: Pillow; extra == "vision-helpers"
64
69
  Requires-Dist: torch; extra == "vision-helpers"
65
70
  Requires-Dist: torchvision; extra == "vision-helpers"
66
71
 
67
- # ml_tools
72
+ # dragon-ml-tools
68
73
 
69
74
  A collection of Python utilities and machine learning tools, structured as a modular package for easy reuse and installation.
70
75
 
@@ -91,7 +96,9 @@ pip install -e '.[utilities]'
91
96
 
92
97
  Install the latest stable release from PyPI with optional dependencies:
93
98
 
94
- pip install ml_tools[utilities]
99
+ ```bash
100
+ pip install dragon-ml-tools[utilities]
101
+ ```
95
102
 
96
103
  ## Usage
97
104
 
@@ -1,4 +1,4 @@
1
- # ml_tools
1
+ # dragon-ml-tools
2
2
 
3
3
  A collection of Python utilities and machine learning tools, structured as a modular package for easy reuse and installation.
4
4
 
@@ -25,7 +25,9 @@ pip install -e '.[utilities]'
25
25
 
26
26
  Install the latest stable release from PyPI with optional dependencies:
27
27
 
28
- pip install ml_tools[utilities]
28
+ ```bash
29
+ pip install dragon-ml-tools[utilities]
30
+ ```
29
31
 
30
32
  ## Usage
31
33
 
@@ -1,10 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.1.2
3
+ Version: 1.1.4
4
4
  Summary: A collection of tools for machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
6
10
  Requires-Python: >=3.9
7
11
  Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy
8
13
  Provides-Extra: data-exploration
9
14
  Requires-Dist: pandas; extra == "data-exploration"
10
15
  Requires-Dist: numpy; extra == "data-exploration"
@@ -64,7 +69,7 @@ Requires-Dist: Pillow; extra == "vision-helpers"
64
69
  Requires-Dist: torch; extra == "vision-helpers"
65
70
  Requires-Dist: torchvision; extra == "vision-helpers"
66
71
 
67
- # ml_tools
72
+ # dragon-ml-tools
68
73
 
69
74
  A collection of Python utilities and machine learning tools, structured as a modular package for easy reuse and installation.
70
75
 
@@ -91,7 +96,9 @@ pip install -e '.[utilities]'
91
96
 
92
97
  Install the latest stable release from PyPI with optional dependencies:
93
98
 
94
- pip install ml_tools[utilities]
99
+ ```bash
100
+ pip install dragon-ml-tools[utilities]
101
+ ```
95
102
 
96
103
  ## Usage
97
104
 
@@ -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,13 +1,21 @@
1
1
  [project]
2
2
  name = "dragon-ml-toolbox"
3
- version = "1.1.2"
3
+ version = "1.1.4"
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
+ ]
11
19
 
12
20
  [project.optional-dependencies]
13
21
  data_exploration = [
@@ -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
-