dragon-ml-toolbox 1.2.1__tar.gz → 1.3.1__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.3.1/PKG-INFO +88 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/README.md +16 -10
- dragon_ml_toolbox-1.3.1/dragon_ml_toolbox.egg-info/PKG-INFO +88 -0
- dragon_ml_toolbox-1.3.1/dragon_ml_toolbox.egg-info/requires.txt +20 -0
- dragon_ml_toolbox-1.3.1/pyproject.toml +49 -0
- dragon_ml_toolbox-1.2.1/PKG-INFO +0 -141
- dragon_ml_toolbox-1.2.1/dragon_ml_toolbox.egg-info/PKG-INFO +0 -141
- dragon_ml_toolbox-1.2.1/dragon_ml_toolbox.egg-info/requires.txt +0 -89
- dragon_ml_toolbox-1.2.1/pyproject.toml +0 -128
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/LICENSE +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/LICENSE-THIRD-PARTY.md +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/dragon_ml_toolbox.egg-info/SOURCES.txt +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/MICE_imputation.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/__init__.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/data_exploration.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/datasetmaster.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/ensemble_learning.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/handle_excel.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/logger.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/particle_swarm_optimization.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/pytorch_models.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/trainer.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/utilities.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/ml_tools/vision_helpers.py +0 -0
- {dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/setup.cfg +0 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dragon-ml-toolbox
|
|
3
|
+
Version: 1.3.1
|
|
4
|
+
Summary: A collection of tools for data science and machine learning projects
|
|
5
|
+
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
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
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
License-File: LICENSE-THIRD-PARTY.md
|
|
15
|
+
Requires-Dist: numpy<2.0
|
|
16
|
+
Requires-Dist: scikit-learn
|
|
17
|
+
Requires-Dist: openpyxl
|
|
18
|
+
Requires-Dist: miceforest
|
|
19
|
+
Requires-Dist: matplotlib
|
|
20
|
+
Requires-Dist: seaborn
|
|
21
|
+
Requires-Dist: pandas
|
|
22
|
+
Requires-Dist: polars
|
|
23
|
+
Requires-Dist: imbalanced-learn
|
|
24
|
+
Requires-Dist: statsmodels
|
|
25
|
+
Requires-Dist: ipython
|
|
26
|
+
Requires-Dist: joblib
|
|
27
|
+
Requires-Dist: xgboost
|
|
28
|
+
Requires-Dist: lightgbm
|
|
29
|
+
Requires-Dist: shap
|
|
30
|
+
Provides-Extra: pytorch
|
|
31
|
+
Requires-Dist: torch; extra == "pytorch"
|
|
32
|
+
Requires-Dist: Pillow; extra == "pytorch"
|
|
33
|
+
Requires-Dist: torchvision; extra == "pytorch"
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
|
|
36
|
+
# dragon-ml-tools
|
|
37
|
+
|
|
38
|
+
A collection of Python utilities for data science and machine learning, structured as a modular package for easy reuse and installation.
|
|
39
|
+
|
|
40
|
+
## Features
|
|
41
|
+
|
|
42
|
+
- Modular scripts for data exploration, logging, machine learning, and more.
|
|
43
|
+
- Designed for seamless integration as a Git submodule or installable Python package.
|
|
44
|
+
|
|
45
|
+
## Installation
|
|
46
|
+
|
|
47
|
+
**Python 3.9+ recommended.**
|
|
48
|
+
|
|
49
|
+
### Via PyPI
|
|
50
|
+
|
|
51
|
+
Install the latest stable release from PyPI:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
pip install dragon-ml-tools
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Via conda-forge
|
|
58
|
+
|
|
59
|
+
Install from the conda-forge channel:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
conda install -c conda-forge dragon-ml-toolbox
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
#### Optional dependencies
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
pip install dragon-ml-tools[pytorch]
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Via GitHub (Editable)
|
|
72
|
+
|
|
73
|
+
Clone the repository and install in editable mode with optional dependencies:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
77
|
+
cd ML_tools
|
|
78
|
+
pip install -e '.[pytorch]'
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Usage
|
|
82
|
+
|
|
83
|
+
After installation, import modules like this:
|
|
84
|
+
|
|
85
|
+
```python
|
|
86
|
+
from ml_tools.utilities import sanitize_filename
|
|
87
|
+
from ml_tools.logger import custom_logger
|
|
88
|
+
```
|
|
@@ -1,30 +1,36 @@
|
|
|
1
1
|
# dragon-ml-tools
|
|
2
2
|
|
|
3
|
-
A collection of Python utilities and machine learning
|
|
3
|
+
A collection of Python utilities for data science and machine learning, structured as a modular package for easy reuse and installation.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- Modular scripts for data exploration, logging, machine learning, and more.
|
|
8
|
-
- Optional dependencies grouped by functionality for lightweight installs.
|
|
9
8
|
- Designed for seamless integration as a Git submodule or installable Python package.
|
|
10
9
|
|
|
11
|
-
|
|
12
10
|
## Installation
|
|
13
11
|
|
|
14
|
-
Python 3.9+ recommended
|
|
12
|
+
**Python 3.9+ recommended.**
|
|
13
|
+
|
|
14
|
+
### Via PyPI
|
|
15
|
+
|
|
16
|
+
Install the latest stable release from PyPI:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install dragon-ml-tools
|
|
20
|
+
```
|
|
15
21
|
|
|
16
|
-
### Via
|
|
22
|
+
### Via conda-forge
|
|
17
23
|
|
|
18
|
-
Install
|
|
24
|
+
Install from the conda-forge channel:
|
|
19
25
|
|
|
20
26
|
```bash
|
|
21
|
-
|
|
27
|
+
conda install -c conda-forge dragon-ml-toolbox
|
|
22
28
|
```
|
|
23
29
|
|
|
24
|
-
|
|
30
|
+
#### Optional dependencies
|
|
25
31
|
|
|
26
32
|
```bash
|
|
27
|
-
pip install dragon-ml-tools[
|
|
33
|
+
pip install dragon-ml-tools[pytorch]
|
|
28
34
|
```
|
|
29
35
|
|
|
30
36
|
### Via GitHub (Editable)
|
|
@@ -34,7 +40,7 @@ Clone the repository and install in editable mode with optional dependencies:
|
|
|
34
40
|
```bash
|
|
35
41
|
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
36
42
|
cd ML_tools
|
|
37
|
-
pip install -e '.[
|
|
43
|
+
pip install -e '.[pytorch]'
|
|
38
44
|
```
|
|
39
45
|
|
|
40
46
|
## Usage
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dragon-ml-toolbox
|
|
3
|
+
Version: 1.3.1
|
|
4
|
+
Summary: A collection of tools for data science and machine learning projects
|
|
5
|
+
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
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
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
License-File: LICENSE-THIRD-PARTY.md
|
|
15
|
+
Requires-Dist: numpy<2.0
|
|
16
|
+
Requires-Dist: scikit-learn
|
|
17
|
+
Requires-Dist: openpyxl
|
|
18
|
+
Requires-Dist: miceforest
|
|
19
|
+
Requires-Dist: matplotlib
|
|
20
|
+
Requires-Dist: seaborn
|
|
21
|
+
Requires-Dist: pandas
|
|
22
|
+
Requires-Dist: polars
|
|
23
|
+
Requires-Dist: imbalanced-learn
|
|
24
|
+
Requires-Dist: statsmodels
|
|
25
|
+
Requires-Dist: ipython
|
|
26
|
+
Requires-Dist: joblib
|
|
27
|
+
Requires-Dist: xgboost
|
|
28
|
+
Requires-Dist: lightgbm
|
|
29
|
+
Requires-Dist: shap
|
|
30
|
+
Provides-Extra: pytorch
|
|
31
|
+
Requires-Dist: torch; extra == "pytorch"
|
|
32
|
+
Requires-Dist: Pillow; extra == "pytorch"
|
|
33
|
+
Requires-Dist: torchvision; extra == "pytorch"
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
|
|
36
|
+
# dragon-ml-tools
|
|
37
|
+
|
|
38
|
+
A collection of Python utilities for data science and machine learning, structured as a modular package for easy reuse and installation.
|
|
39
|
+
|
|
40
|
+
## Features
|
|
41
|
+
|
|
42
|
+
- Modular scripts for data exploration, logging, machine learning, and more.
|
|
43
|
+
- Designed for seamless integration as a Git submodule or installable Python package.
|
|
44
|
+
|
|
45
|
+
## Installation
|
|
46
|
+
|
|
47
|
+
**Python 3.9+ recommended.**
|
|
48
|
+
|
|
49
|
+
### Via PyPI
|
|
50
|
+
|
|
51
|
+
Install the latest stable release from PyPI:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
pip install dragon-ml-tools
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Via conda-forge
|
|
58
|
+
|
|
59
|
+
Install from the conda-forge channel:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
conda install -c conda-forge dragon-ml-toolbox
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
#### Optional dependencies
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
pip install dragon-ml-tools[pytorch]
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Via GitHub (Editable)
|
|
72
|
+
|
|
73
|
+
Clone the repository and install in editable mode with optional dependencies:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
77
|
+
cd ML_tools
|
|
78
|
+
pip install -e '.[pytorch]'
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Usage
|
|
82
|
+
|
|
83
|
+
After installation, import modules like this:
|
|
84
|
+
|
|
85
|
+
```python
|
|
86
|
+
from ml_tools.utilities import sanitize_filename
|
|
87
|
+
from ml_tools.logger import custom_logger
|
|
88
|
+
```
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "dragon-ml-toolbox"
|
|
3
|
+
version = "1.3.1"
|
|
4
|
+
description = "A collection of tools for data science and machine learning projects"
|
|
5
|
+
authors = [
|
|
6
|
+
{ name = "Karl Loza", email = "luigiloza@gmail.com" }
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.9"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"Operating System :: OS Independent"
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"numpy<2.0",
|
|
17
|
+
"scikit-learn",
|
|
18
|
+
"openpyxl",
|
|
19
|
+
"miceforest",
|
|
20
|
+
"matplotlib",
|
|
21
|
+
"seaborn",
|
|
22
|
+
"pandas",
|
|
23
|
+
"polars",
|
|
24
|
+
"imbalanced-learn",
|
|
25
|
+
"statsmodels",
|
|
26
|
+
"ipython",
|
|
27
|
+
"joblib",
|
|
28
|
+
"xgboost",
|
|
29
|
+
"lightgbm",
|
|
30
|
+
"shap"
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/DrAg0n-BoRn/ML_tools"
|
|
35
|
+
Changelog = "https://github.com/DrAg0n-BoRn/ML_tools/blob/master/CHANGELOG.md"
|
|
36
|
+
|
|
37
|
+
[project.optional-dependencies]
|
|
38
|
+
pytorch = [
|
|
39
|
+
"torch",
|
|
40
|
+
"Pillow",
|
|
41
|
+
"torchvision"
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[build-system]
|
|
45
|
+
requires = ["setuptools>=61.0"]
|
|
46
|
+
build-backend = "setuptools.build_meta"
|
|
47
|
+
|
|
48
|
+
[tool.setuptools]
|
|
49
|
+
packages = ["ml_tools"]
|
dragon_ml_toolbox-1.2.1/PKG-INFO
DELETED
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: dragon-ml-toolbox
|
|
3
|
-
Version: 1.2.1
|
|
4
|
-
Summary: A collection of tools for data science and machine learning projects
|
|
5
|
-
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
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
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.9
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
License-File: LICENSE
|
|
14
|
-
License-File: LICENSE-THIRD-PARTY.md
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
Requires-Dist: pandas
|
|
17
|
-
Requires-Dist: matplotlib
|
|
18
|
-
Requires-Dist: scikit-learn
|
|
19
|
-
Provides-Extra: data-exploration
|
|
20
|
-
Requires-Dist: pandas; extra == "data-exploration"
|
|
21
|
-
Requires-Dist: numpy; extra == "data-exploration"
|
|
22
|
-
Requires-Dist: matplotlib; extra == "data-exploration"
|
|
23
|
-
Requires-Dist: seaborn; extra == "data-exploration"
|
|
24
|
-
Requires-Dist: statsmodels; extra == "data-exploration"
|
|
25
|
-
Requires-Dist: ipython; extra == "data-exploration"
|
|
26
|
-
Provides-Extra: datasetmaster
|
|
27
|
-
Requires-Dist: torch; extra == "datasetmaster"
|
|
28
|
-
Requires-Dist: pandas; extra == "datasetmaster"
|
|
29
|
-
Requires-Dist: numpy; extra == "datasetmaster"
|
|
30
|
-
Requires-Dist: scikit-learn; extra == "datasetmaster"
|
|
31
|
-
Requires-Dist: imblearn; extra == "datasetmaster"
|
|
32
|
-
Requires-Dist: Pillow; extra == "datasetmaster"
|
|
33
|
-
Requires-Dist: matplotlib; extra == "datasetmaster"
|
|
34
|
-
Provides-Extra: ensemble-learning
|
|
35
|
-
Requires-Dist: pandas; extra == "ensemble-learning"
|
|
36
|
-
Requires-Dist: numpy; extra == "ensemble-learning"
|
|
37
|
-
Requires-Dist: seaborn; extra == "ensemble-learning"
|
|
38
|
-
Requires-Dist: matplotlib; extra == "ensemble-learning"
|
|
39
|
-
Requires-Dist: joblib; extra == "ensemble-learning"
|
|
40
|
-
Requires-Dist: imblearn; extra == "ensemble-learning"
|
|
41
|
-
Requires-Dist: scikit-learn; extra == "ensemble-learning"
|
|
42
|
-
Requires-Dist: xgboost; extra == "ensemble-learning"
|
|
43
|
-
Requires-Dist: lightgbm; extra == "ensemble-learning"
|
|
44
|
-
Requires-Dist: shap; extra == "ensemble-learning"
|
|
45
|
-
Provides-Extra: handle-excel
|
|
46
|
-
Requires-Dist: openpyxl; extra == "handle-excel"
|
|
47
|
-
Requires-Dist: pandas; extra == "handle-excel"
|
|
48
|
-
Provides-Extra: logger
|
|
49
|
-
Requires-Dist: pandas; extra == "logger"
|
|
50
|
-
Requires-Dist: openpyxl; extra == "logger"
|
|
51
|
-
Provides-Extra: mice-imputation
|
|
52
|
-
Requires-Dist: pandas; extra == "mice-imputation"
|
|
53
|
-
Requires-Dist: miceforest; extra == "mice-imputation"
|
|
54
|
-
Requires-Dist: matplotlib; extra == "mice-imputation"
|
|
55
|
-
Requires-Dist: numpy; extra == "mice-imputation"
|
|
56
|
-
Provides-Extra: particle-swarm-optimization
|
|
57
|
-
Requires-Dist: numpy; extra == "particle-swarm-optimization"
|
|
58
|
-
Requires-Dist: joblib; extra == "particle-swarm-optimization"
|
|
59
|
-
Requires-Dist: xgboost; extra == "particle-swarm-optimization"
|
|
60
|
-
Requires-Dist: lightgbm; extra == "particle-swarm-optimization"
|
|
61
|
-
Requires-Dist: scikit-learn; extra == "particle-swarm-optimization"
|
|
62
|
-
Requires-Dist: polars; extra == "particle-swarm-optimization"
|
|
63
|
-
Provides-Extra: pytorch-models
|
|
64
|
-
Requires-Dist: torch; extra == "pytorch-models"
|
|
65
|
-
Provides-Extra: trainer
|
|
66
|
-
Requires-Dist: numpy; extra == "trainer"
|
|
67
|
-
Requires-Dist: torch; extra == "trainer"
|
|
68
|
-
Requires-Dist: matplotlib; extra == "trainer"
|
|
69
|
-
Requires-Dist: scikit-learn; extra == "trainer"
|
|
70
|
-
Provides-Extra: vision-helpers
|
|
71
|
-
Requires-Dist: Pillow; extra == "vision-helpers"
|
|
72
|
-
Requires-Dist: torch; extra == "vision-helpers"
|
|
73
|
-
Requires-Dist: torchvision; extra == "vision-helpers"
|
|
74
|
-
Provides-Extra: full
|
|
75
|
-
Requires-Dist: pandas; extra == "full"
|
|
76
|
-
Requires-Dist: numpy; extra == "full"
|
|
77
|
-
Requires-Dist: matplotlib; extra == "full"
|
|
78
|
-
Requires-Dist: seaborn; extra == "full"
|
|
79
|
-
Requires-Dist: statsmodels; extra == "full"
|
|
80
|
-
Requires-Dist: ipython; extra == "full"
|
|
81
|
-
Requires-Dist: torch; extra == "full"
|
|
82
|
-
Requires-Dist: scikit-learn; extra == "full"
|
|
83
|
-
Requires-Dist: imblearn; extra == "full"
|
|
84
|
-
Requires-Dist: Pillow; extra == "full"
|
|
85
|
-
Requires-Dist: joblib; extra == "full"
|
|
86
|
-
Requires-Dist: xgboost; extra == "full"
|
|
87
|
-
Requires-Dist: lightgbm; extra == "full"
|
|
88
|
-
Requires-Dist: shap; extra == "full"
|
|
89
|
-
Requires-Dist: openpyxl; extra == "full"
|
|
90
|
-
Requires-Dist: miceforest; extra == "full"
|
|
91
|
-
Requires-Dist: polars; extra == "full"
|
|
92
|
-
Requires-Dist: torchvision; extra == "full"
|
|
93
|
-
Dynamic: license-file
|
|
94
|
-
|
|
95
|
-
# dragon-ml-tools
|
|
96
|
-
|
|
97
|
-
A collection of Python utilities and machine learning tools, structured as a modular package for easy reuse and installation.
|
|
98
|
-
|
|
99
|
-
## Features
|
|
100
|
-
|
|
101
|
-
- Modular scripts for data exploration, logging, machine learning, and more.
|
|
102
|
-
- Optional dependencies grouped by functionality for lightweight installs.
|
|
103
|
-
- Designed for seamless integration as a Git submodule or installable Python package.
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## Installation
|
|
107
|
-
|
|
108
|
-
Python 3.9+ recommended.
|
|
109
|
-
|
|
110
|
-
### Via PyPI (Stable Releases)
|
|
111
|
-
|
|
112
|
-
Install the latest stable release from PyPI with optional dependencies:
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
pip install dragon-ml-tools[logger,trainer]
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
To install dependencies from all modules
|
|
119
|
-
|
|
120
|
-
```bash
|
|
121
|
-
pip install dragon-ml-tools[full]
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
### Via GitHub (Editable)
|
|
125
|
-
|
|
126
|
-
Clone the repository and install in editable mode with optional dependencies:
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
130
|
-
cd ML_tools
|
|
131
|
-
pip install -e '.[logger]'
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
## Usage
|
|
135
|
-
|
|
136
|
-
After installation, import modules like this:
|
|
137
|
-
|
|
138
|
-
```python
|
|
139
|
-
from ml_tools.utilities import sanitize_filename
|
|
140
|
-
from ml_tools.logger import custom_logger
|
|
141
|
-
```
|
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: dragon-ml-toolbox
|
|
3
|
-
Version: 1.2.1
|
|
4
|
-
Summary: A collection of tools for data science and machine learning projects
|
|
5
|
-
Author-email: Karl Loza <luigiloza@gmail.com>
|
|
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
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.9
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
License-File: LICENSE
|
|
14
|
-
License-File: LICENSE-THIRD-PARTY.md
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
Requires-Dist: pandas
|
|
17
|
-
Requires-Dist: matplotlib
|
|
18
|
-
Requires-Dist: scikit-learn
|
|
19
|
-
Provides-Extra: data-exploration
|
|
20
|
-
Requires-Dist: pandas; extra == "data-exploration"
|
|
21
|
-
Requires-Dist: numpy; extra == "data-exploration"
|
|
22
|
-
Requires-Dist: matplotlib; extra == "data-exploration"
|
|
23
|
-
Requires-Dist: seaborn; extra == "data-exploration"
|
|
24
|
-
Requires-Dist: statsmodels; extra == "data-exploration"
|
|
25
|
-
Requires-Dist: ipython; extra == "data-exploration"
|
|
26
|
-
Provides-Extra: datasetmaster
|
|
27
|
-
Requires-Dist: torch; extra == "datasetmaster"
|
|
28
|
-
Requires-Dist: pandas; extra == "datasetmaster"
|
|
29
|
-
Requires-Dist: numpy; extra == "datasetmaster"
|
|
30
|
-
Requires-Dist: scikit-learn; extra == "datasetmaster"
|
|
31
|
-
Requires-Dist: imblearn; extra == "datasetmaster"
|
|
32
|
-
Requires-Dist: Pillow; extra == "datasetmaster"
|
|
33
|
-
Requires-Dist: matplotlib; extra == "datasetmaster"
|
|
34
|
-
Provides-Extra: ensemble-learning
|
|
35
|
-
Requires-Dist: pandas; extra == "ensemble-learning"
|
|
36
|
-
Requires-Dist: numpy; extra == "ensemble-learning"
|
|
37
|
-
Requires-Dist: seaborn; extra == "ensemble-learning"
|
|
38
|
-
Requires-Dist: matplotlib; extra == "ensemble-learning"
|
|
39
|
-
Requires-Dist: joblib; extra == "ensemble-learning"
|
|
40
|
-
Requires-Dist: imblearn; extra == "ensemble-learning"
|
|
41
|
-
Requires-Dist: scikit-learn; extra == "ensemble-learning"
|
|
42
|
-
Requires-Dist: xgboost; extra == "ensemble-learning"
|
|
43
|
-
Requires-Dist: lightgbm; extra == "ensemble-learning"
|
|
44
|
-
Requires-Dist: shap; extra == "ensemble-learning"
|
|
45
|
-
Provides-Extra: handle-excel
|
|
46
|
-
Requires-Dist: openpyxl; extra == "handle-excel"
|
|
47
|
-
Requires-Dist: pandas; extra == "handle-excel"
|
|
48
|
-
Provides-Extra: logger
|
|
49
|
-
Requires-Dist: pandas; extra == "logger"
|
|
50
|
-
Requires-Dist: openpyxl; extra == "logger"
|
|
51
|
-
Provides-Extra: mice-imputation
|
|
52
|
-
Requires-Dist: pandas; extra == "mice-imputation"
|
|
53
|
-
Requires-Dist: miceforest; extra == "mice-imputation"
|
|
54
|
-
Requires-Dist: matplotlib; extra == "mice-imputation"
|
|
55
|
-
Requires-Dist: numpy; extra == "mice-imputation"
|
|
56
|
-
Provides-Extra: particle-swarm-optimization
|
|
57
|
-
Requires-Dist: numpy; extra == "particle-swarm-optimization"
|
|
58
|
-
Requires-Dist: joblib; extra == "particle-swarm-optimization"
|
|
59
|
-
Requires-Dist: xgboost; extra == "particle-swarm-optimization"
|
|
60
|
-
Requires-Dist: lightgbm; extra == "particle-swarm-optimization"
|
|
61
|
-
Requires-Dist: scikit-learn; extra == "particle-swarm-optimization"
|
|
62
|
-
Requires-Dist: polars; extra == "particle-swarm-optimization"
|
|
63
|
-
Provides-Extra: pytorch-models
|
|
64
|
-
Requires-Dist: torch; extra == "pytorch-models"
|
|
65
|
-
Provides-Extra: trainer
|
|
66
|
-
Requires-Dist: numpy; extra == "trainer"
|
|
67
|
-
Requires-Dist: torch; extra == "trainer"
|
|
68
|
-
Requires-Dist: matplotlib; extra == "trainer"
|
|
69
|
-
Requires-Dist: scikit-learn; extra == "trainer"
|
|
70
|
-
Provides-Extra: vision-helpers
|
|
71
|
-
Requires-Dist: Pillow; extra == "vision-helpers"
|
|
72
|
-
Requires-Dist: torch; extra == "vision-helpers"
|
|
73
|
-
Requires-Dist: torchvision; extra == "vision-helpers"
|
|
74
|
-
Provides-Extra: full
|
|
75
|
-
Requires-Dist: pandas; extra == "full"
|
|
76
|
-
Requires-Dist: numpy; extra == "full"
|
|
77
|
-
Requires-Dist: matplotlib; extra == "full"
|
|
78
|
-
Requires-Dist: seaborn; extra == "full"
|
|
79
|
-
Requires-Dist: statsmodels; extra == "full"
|
|
80
|
-
Requires-Dist: ipython; extra == "full"
|
|
81
|
-
Requires-Dist: torch; extra == "full"
|
|
82
|
-
Requires-Dist: scikit-learn; extra == "full"
|
|
83
|
-
Requires-Dist: imblearn; extra == "full"
|
|
84
|
-
Requires-Dist: Pillow; extra == "full"
|
|
85
|
-
Requires-Dist: joblib; extra == "full"
|
|
86
|
-
Requires-Dist: xgboost; extra == "full"
|
|
87
|
-
Requires-Dist: lightgbm; extra == "full"
|
|
88
|
-
Requires-Dist: shap; extra == "full"
|
|
89
|
-
Requires-Dist: openpyxl; extra == "full"
|
|
90
|
-
Requires-Dist: miceforest; extra == "full"
|
|
91
|
-
Requires-Dist: polars; extra == "full"
|
|
92
|
-
Requires-Dist: torchvision; extra == "full"
|
|
93
|
-
Dynamic: license-file
|
|
94
|
-
|
|
95
|
-
# dragon-ml-tools
|
|
96
|
-
|
|
97
|
-
A collection of Python utilities and machine learning tools, structured as a modular package for easy reuse and installation.
|
|
98
|
-
|
|
99
|
-
## Features
|
|
100
|
-
|
|
101
|
-
- Modular scripts for data exploration, logging, machine learning, and more.
|
|
102
|
-
- Optional dependencies grouped by functionality for lightweight installs.
|
|
103
|
-
- Designed for seamless integration as a Git submodule or installable Python package.
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## Installation
|
|
107
|
-
|
|
108
|
-
Python 3.9+ recommended.
|
|
109
|
-
|
|
110
|
-
### Via PyPI (Stable Releases)
|
|
111
|
-
|
|
112
|
-
Install the latest stable release from PyPI with optional dependencies:
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
pip install dragon-ml-tools[logger,trainer]
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
To install dependencies from all modules
|
|
119
|
-
|
|
120
|
-
```bash
|
|
121
|
-
pip install dragon-ml-tools[full]
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
### Via GitHub (Editable)
|
|
125
|
-
|
|
126
|
-
Clone the repository and install in editable mode with optional dependencies:
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
git clone https://github.com/DrAg0n-BoRn/ML_tools.git
|
|
130
|
-
cd ML_tools
|
|
131
|
-
pip install -e '.[logger]'
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
## Usage
|
|
135
|
-
|
|
136
|
-
After installation, import modules like this:
|
|
137
|
-
|
|
138
|
-
```python
|
|
139
|
-
from ml_tools.utilities import sanitize_filename
|
|
140
|
-
from ml_tools.logger import custom_logger
|
|
141
|
-
```
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
numpy
|
|
2
|
-
pandas
|
|
3
|
-
matplotlib
|
|
4
|
-
scikit-learn
|
|
5
|
-
|
|
6
|
-
[data_exploration]
|
|
7
|
-
pandas
|
|
8
|
-
numpy
|
|
9
|
-
matplotlib
|
|
10
|
-
seaborn
|
|
11
|
-
statsmodels
|
|
12
|
-
ipython
|
|
13
|
-
|
|
14
|
-
[datasetmaster]
|
|
15
|
-
torch
|
|
16
|
-
pandas
|
|
17
|
-
numpy
|
|
18
|
-
scikit-learn
|
|
19
|
-
imblearn
|
|
20
|
-
Pillow
|
|
21
|
-
matplotlib
|
|
22
|
-
|
|
23
|
-
[ensemble_learning]
|
|
24
|
-
pandas
|
|
25
|
-
numpy
|
|
26
|
-
seaborn
|
|
27
|
-
matplotlib
|
|
28
|
-
joblib
|
|
29
|
-
imblearn
|
|
30
|
-
scikit-learn
|
|
31
|
-
xgboost
|
|
32
|
-
lightgbm
|
|
33
|
-
shap
|
|
34
|
-
|
|
35
|
-
[full]
|
|
36
|
-
pandas
|
|
37
|
-
numpy
|
|
38
|
-
matplotlib
|
|
39
|
-
seaborn
|
|
40
|
-
statsmodels
|
|
41
|
-
ipython
|
|
42
|
-
torch
|
|
43
|
-
scikit-learn
|
|
44
|
-
imblearn
|
|
45
|
-
Pillow
|
|
46
|
-
joblib
|
|
47
|
-
xgboost
|
|
48
|
-
lightgbm
|
|
49
|
-
shap
|
|
50
|
-
openpyxl
|
|
51
|
-
miceforest
|
|
52
|
-
polars
|
|
53
|
-
torchvision
|
|
54
|
-
|
|
55
|
-
[handle_excel]
|
|
56
|
-
openpyxl
|
|
57
|
-
pandas
|
|
58
|
-
|
|
59
|
-
[logger]
|
|
60
|
-
pandas
|
|
61
|
-
openpyxl
|
|
62
|
-
|
|
63
|
-
[mice_imputation]
|
|
64
|
-
pandas
|
|
65
|
-
miceforest
|
|
66
|
-
matplotlib
|
|
67
|
-
numpy
|
|
68
|
-
|
|
69
|
-
[particle_swarm_optimization]
|
|
70
|
-
numpy
|
|
71
|
-
joblib
|
|
72
|
-
xgboost
|
|
73
|
-
lightgbm
|
|
74
|
-
scikit-learn
|
|
75
|
-
polars
|
|
76
|
-
|
|
77
|
-
[pytorch_models]
|
|
78
|
-
torch
|
|
79
|
-
|
|
80
|
-
[trainer]
|
|
81
|
-
numpy
|
|
82
|
-
torch
|
|
83
|
-
matplotlib
|
|
84
|
-
scikit-learn
|
|
85
|
-
|
|
86
|
-
[vision_helpers]
|
|
87
|
-
Pillow
|
|
88
|
-
torch
|
|
89
|
-
torchvision
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "dragon-ml-toolbox"
|
|
3
|
-
version = "1.2.1"
|
|
4
|
-
description = "A collection of tools for data science and machine learning projects"
|
|
5
|
-
authors = [
|
|
6
|
-
{ name = "Karl Loza", email = "luigiloza@gmail.com" }
|
|
7
|
-
]
|
|
8
|
-
readme = "README.md"
|
|
9
|
-
requires-python = ">=3.9"
|
|
10
|
-
license = "MIT"
|
|
11
|
-
classifiers = [
|
|
12
|
-
"Programming Language :: Python :: 3",
|
|
13
|
-
"Operating System :: OS Independent"
|
|
14
|
-
]
|
|
15
|
-
dependencies = [
|
|
16
|
-
"numpy",
|
|
17
|
-
"pandas",
|
|
18
|
-
"matplotlib",
|
|
19
|
-
"scikit-learn",
|
|
20
|
-
]
|
|
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
|
-
|
|
26
|
-
[project.optional-dependencies]
|
|
27
|
-
data_exploration = [
|
|
28
|
-
"pandas",
|
|
29
|
-
"numpy",
|
|
30
|
-
"matplotlib",
|
|
31
|
-
"seaborn",
|
|
32
|
-
"statsmodels",
|
|
33
|
-
"ipython"
|
|
34
|
-
]
|
|
35
|
-
|
|
36
|
-
datasetmaster = [
|
|
37
|
-
"torch",
|
|
38
|
-
"pandas",
|
|
39
|
-
"numpy",
|
|
40
|
-
"scikit-learn",
|
|
41
|
-
"imblearn",
|
|
42
|
-
"Pillow",
|
|
43
|
-
"matplotlib"
|
|
44
|
-
]
|
|
45
|
-
|
|
46
|
-
ensemble_learning = [
|
|
47
|
-
"pandas",
|
|
48
|
-
"numpy",
|
|
49
|
-
"seaborn",
|
|
50
|
-
"matplotlib",
|
|
51
|
-
"joblib",
|
|
52
|
-
"imblearn",
|
|
53
|
-
"scikit-learn",
|
|
54
|
-
"xgboost",
|
|
55
|
-
"lightgbm",
|
|
56
|
-
"shap"
|
|
57
|
-
]
|
|
58
|
-
|
|
59
|
-
handle_excel = [
|
|
60
|
-
"openpyxl",
|
|
61
|
-
"pandas"
|
|
62
|
-
]
|
|
63
|
-
|
|
64
|
-
logger = [
|
|
65
|
-
"pandas",
|
|
66
|
-
"openpyxl"
|
|
67
|
-
]
|
|
68
|
-
|
|
69
|
-
mice_imputation = [
|
|
70
|
-
"pandas",
|
|
71
|
-
"miceforest",
|
|
72
|
-
"matplotlib",
|
|
73
|
-
"numpy"
|
|
74
|
-
]
|
|
75
|
-
|
|
76
|
-
particle_swarm_optimization = [
|
|
77
|
-
"numpy",
|
|
78
|
-
"joblib",
|
|
79
|
-
"xgboost",
|
|
80
|
-
"lightgbm",
|
|
81
|
-
"scikit-learn",
|
|
82
|
-
"polars"
|
|
83
|
-
]
|
|
84
|
-
|
|
85
|
-
pytorch_models = [
|
|
86
|
-
"torch"
|
|
87
|
-
]
|
|
88
|
-
|
|
89
|
-
trainer = [
|
|
90
|
-
"numpy",
|
|
91
|
-
"torch",
|
|
92
|
-
"matplotlib",
|
|
93
|
-
"scikit-learn"
|
|
94
|
-
]
|
|
95
|
-
|
|
96
|
-
vision_helpers = [
|
|
97
|
-
"Pillow",
|
|
98
|
-
"torch",
|
|
99
|
-
"torchvision"
|
|
100
|
-
]
|
|
101
|
-
|
|
102
|
-
full = [
|
|
103
|
-
"pandas",
|
|
104
|
-
"numpy",
|
|
105
|
-
"matplotlib",
|
|
106
|
-
"seaborn",
|
|
107
|
-
"statsmodels",
|
|
108
|
-
"ipython",
|
|
109
|
-
"torch",
|
|
110
|
-
"scikit-learn",
|
|
111
|
-
"imblearn",
|
|
112
|
-
"Pillow",
|
|
113
|
-
"joblib",
|
|
114
|
-
"xgboost",
|
|
115
|
-
"lightgbm",
|
|
116
|
-
"shap",
|
|
117
|
-
"openpyxl",
|
|
118
|
-
"miceforest",
|
|
119
|
-
"polars",
|
|
120
|
-
"torchvision"
|
|
121
|
-
]
|
|
122
|
-
|
|
123
|
-
[build-system]
|
|
124
|
-
requires = ["setuptools>=61.0"]
|
|
125
|
-
build-backend = "setuptools.build_meta"
|
|
126
|
-
|
|
127
|
-
[tool.setuptools]
|
|
128
|
-
packages = ["ml_tools"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/dragon_ml_toolbox.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{dragon_ml_toolbox-1.2.1 → dragon_ml_toolbox-1.3.1}/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
|