dragon-ml-toolbox 1.1.6__py3-none-any.whl → 1.2.0__py3-none-any.whl
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.dist-info → dragon_ml_toolbox-1.2.0.dist-info}/METADATA +37 -21
- {dragon_ml_toolbox-1.1.6.dist-info → dragon_ml_toolbox-1.2.0.dist-info}/RECORD +8 -8
- ml_tools/MICE_imputation.py +1 -1
- ml_tools/data_exploration.py +1 -1
- ml_tools/logger.py +1 -1
- {dragon_ml_toolbox-1.1.6.dist-info → dragon_ml_toolbox-1.2.0.dist-info}/WHEEL +0 -0
- {dragon_ml_toolbox-1.1.6.dist-info → dragon_ml_toolbox-1.2.0.dist-info}/licenses/LICENSE +0 -0
- {dragon_ml_toolbox-1.1.6.dist-info → dragon_ml_toolbox-1.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dragon-ml-toolbox
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: A collection of tools for machine learning projects
|
|
3
|
+
Version: 1.2.0
|
|
4
|
+
Summary: A collection of tools for data science and machine learning projects
|
|
5
5
|
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/DrAg0n-BoRn/ML_tools
|
|
@@ -70,6 +70,25 @@ Provides-Extra: vision-helpers
|
|
|
70
70
|
Requires-Dist: Pillow; extra == "vision-helpers"
|
|
71
71
|
Requires-Dist: torch; extra == "vision-helpers"
|
|
72
72
|
Requires-Dist: torchvision; extra == "vision-helpers"
|
|
73
|
+
Provides-Extra: full
|
|
74
|
+
Requires-Dist: pandas; extra == "full"
|
|
75
|
+
Requires-Dist: numpy; extra == "full"
|
|
76
|
+
Requires-Dist: matplotlib; extra == "full"
|
|
77
|
+
Requires-Dist: seaborn; extra == "full"
|
|
78
|
+
Requires-Dist: statsmodels; extra == "full"
|
|
79
|
+
Requires-Dist: ipython; extra == "full"
|
|
80
|
+
Requires-Dist: torch; extra == "full"
|
|
81
|
+
Requires-Dist: scikit-learn; extra == "full"
|
|
82
|
+
Requires-Dist: imblearn; extra == "full"
|
|
83
|
+
Requires-Dist: Pillow; extra == "full"
|
|
84
|
+
Requires-Dist: joblib; extra == "full"
|
|
85
|
+
Requires-Dist: xgboost; extra == "full"
|
|
86
|
+
Requires-Dist: lightgbm; extra == "full"
|
|
87
|
+
Requires-Dist: shap; extra == "full"
|
|
88
|
+
Requires-Dist: openpyxl; extra == "full"
|
|
89
|
+
Requires-Dist: miceforest; extra == "full"
|
|
90
|
+
Requires-Dist: polars; extra == "full"
|
|
91
|
+
Requires-Dist: torchvision; extra == "full"
|
|
73
92
|
Dynamic: license-file
|
|
74
93
|
|
|
75
94
|
# dragon-ml-tools
|
|
@@ -85,22 +104,30 @@ A collection of Python utilities and machine learning tools, structured as a mod
|
|
|
85
104
|
|
|
86
105
|
## Installation
|
|
87
106
|
|
|
88
|
-
|
|
107
|
+
Python 3.9+ recommended.
|
|
89
108
|
|
|
90
|
-
|
|
109
|
+
### Via PyPI (Stable Releases)
|
|
110
|
+
|
|
111
|
+
Install the latest stable release from PyPI with optional dependencies:
|
|
91
112
|
|
|
92
113
|
```bash
|
|
93
|
-
|
|
94
|
-
cd ML_tools
|
|
95
|
-
pip install -e '.[logger]'
|
|
114
|
+
pip install dragon-ml-tools[logger,trainer]
|
|
96
115
|
```
|
|
97
116
|
|
|
98
|
-
|
|
117
|
+
To install dependencies from all modules
|
|
99
118
|
|
|
100
|
-
|
|
119
|
+
```bash
|
|
120
|
+
pip install dragon-ml-tools[full]
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### Via GitHub (Editable)
|
|
124
|
+
|
|
125
|
+
Clone the repository and install in editable mode with optional dependencies:
|
|
101
126
|
|
|
102
127
|
```bash
|
|
103
|
-
|
|
128
|
+
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
129
|
+
cd ML_tools
|
|
130
|
+
pip install -e '.[logger]'
|
|
104
131
|
```
|
|
105
132
|
|
|
106
133
|
## Usage
|
|
@@ -111,14 +138,3 @@ After installation, import modules like this:
|
|
|
111
138
|
from ml_tools.utilities import sanitize_filename
|
|
112
139
|
from ml_tools.logger import custom_logger
|
|
113
140
|
```
|
|
114
|
-
|
|
115
|
-
## Development
|
|
116
|
-
|
|
117
|
-
Python 3.9+ recommended.
|
|
118
|
-
|
|
119
|
-
To install all dependencies including development tools:
|
|
120
|
-
|
|
121
|
-
```python
|
|
122
|
-
pip install -e '.[dev]'
|
|
123
|
-
```
|
|
124
|
-
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
dragon_ml_toolbox-1.
|
|
2
|
-
ml_tools/MICE_imputation.py,sha256=
|
|
1
|
+
dragon_ml_toolbox-1.2.0.dist-info/licenses/LICENSE,sha256=2uUFNy7D0TLgHim1K5s3DIJ4q_KvxEXVilnU20cWliY,1066
|
|
2
|
+
ml_tools/MICE_imputation.py,sha256=Xvupj6w4NJ7d8gcJbpp1y3LVVnWEfvx-It7oEksuT5I,7349
|
|
3
3
|
ml_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
ml_tools/data_exploration.py,sha256=
|
|
4
|
+
ml_tools/data_exploration.py,sha256=AMQ5XLrRhV6dLhptjl2Jppgk9JJ06ZjXEuvqkjC3gt0,26998
|
|
5
5
|
ml_tools/datasetmaster.py,sha256=VUneKshnmjOGbtqVVGTFcIMRKF3s6ZDYrosIYKDjD80,28956
|
|
6
6
|
ml_tools/ensemble_learning.py,sha256=uA7A94CLv8o2l125oTEi0cjHusZkB-7Mnrtn7SGTfjs,29714
|
|
7
7
|
ml_tools/handle_excel.py,sha256=IR0VQc3hYdmjwC31E5YxDnRcWig4jSIx7Y_7to-KZz4,11969
|
|
8
|
-
ml_tools/logger.py,sha256=
|
|
8
|
+
ml_tools/logger.py,sha256=XwSpCUzw2Le24fJHyljBxNLgw63SwjZ0pMjTJqf0ylI,4622
|
|
9
9
|
ml_tools/particle_swarm_optimization.py,sha256=jpkje4OETC9fyISxxUTx4XGrImSU6gDEcwz46ZDs2bQ,19250
|
|
10
10
|
ml_tools/pytorch_models.py,sha256=Oykw02sOZLCjvSadQd64UGesBN7kq0x1EGXHusvYiQI,9908
|
|
11
11
|
ml_tools/trainer.py,sha256=Zd7AaHeoNd8dEas2JChWoHaCUpWUVRDUMybuHaKJ0XY,16740
|
|
12
12
|
ml_tools/utilities.py,sha256=mG_--EFplfI9H7OhrWI8VkdNJtTbs4Wbz32xvcFWps8,5518
|
|
13
13
|
ml_tools/vision_helpers.py,sha256=lBAW6dzAK-HOswAt1fU_tfP9hkNLY5D8c_I_7hhEXno,7528
|
|
14
|
-
dragon_ml_toolbox-1.
|
|
15
|
-
dragon_ml_toolbox-1.
|
|
16
|
-
dragon_ml_toolbox-1.
|
|
17
|
-
dragon_ml_toolbox-1.
|
|
14
|
+
dragon_ml_toolbox-1.2.0.dist-info/METADATA,sha256=LmlbpETQETUcZuGatEtnP6JttrkN7kVObxjzvl5INfk,5128
|
|
15
|
+
dragon_ml_toolbox-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
+
dragon_ml_toolbox-1.2.0.dist-info/top_level.txt,sha256=wm-oxax3ciyez6VoO4zsFd-gSok2VipYXnbg3TH9PtU,9
|
|
17
|
+
dragon_ml_toolbox-1.2.0.dist-info/RECORD,,
|
ml_tools/MICE_imputation.py
CHANGED
|
@@ -3,7 +3,7 @@ import miceforest as mf
|
|
|
3
3
|
import os
|
|
4
4
|
import matplotlib.pyplot as plt
|
|
5
5
|
import numpy as np
|
|
6
|
-
from utilities import load_dataframe, list_csv_paths
|
|
6
|
+
from ml_tools.utilities import load_dataframe, list_csv_paths
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
def apply_mice(df: pd.DataFrame, df_name: str, resulting_datasets: int=1, iterations: int=20, random_state: int=101):
|
ml_tools/data_exploration.py
CHANGED
|
@@ -11,7 +11,7 @@ from typing import Union, Literal, Dict, Tuple, Optional
|
|
|
11
11
|
import os
|
|
12
12
|
import sys
|
|
13
13
|
import textwrap
|
|
14
|
-
from utilities import sanitize_filename
|
|
14
|
+
from ml_tools.utilities import sanitize_filename
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
# Keep track of all available functions, show using `info()`
|
ml_tools/logger.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|