quicklearnkit 0.4.0__tar.gz → 0.4.2__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.
Files changed (22) hide show
  1. quicklearnkit-0.4.2/PKG-INFO +88 -0
  2. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/pyproject.toml +1 -1
  3. quicklearnkit-0.4.2/quicklearnkit.egg-info/PKG-INFO +88 -0
  4. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit.egg-info/top_level.txt +1 -0
  5. quicklearnkit-0.4.2/readme.md +50 -0
  6. quicklearnkit-0.4.0/PKG-INFO +0 -680
  7. quicklearnkit-0.4.0/quicklearnkit.egg-info/PKG-INFO +0 -680
  8. quicklearnkit-0.4.0/readme.md +0 -642
  9. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/LICENSE +0 -0
  10. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/__init__.py +0 -0
  11. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/classifier.py +0 -0
  12. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/pipeline.py +0 -0
  13. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/plotting.py +0 -0
  14. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/quickimports.py +0 -0
  15. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/randomizer.py +0 -0
  16. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/regressor.py +0 -0
  17. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/split.py +0 -0
  18. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit/utils.py +0 -0
  19. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit.egg-info/SOURCES.txt +0 -0
  20. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit.egg-info/dependency_links.txt +0 -0
  21. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/quicklearnkit.egg-info/requires.txt +0 -0
  22. {quicklearnkit-0.4.0 → quicklearnkit-0.4.2}/setup.cfg +0 -0
@@ -0,0 +1,88 @@
1
+ Metadata-Version: 2.4
2
+ Name: quicklearnkit
3
+ Version: 0.4.2
4
+ Summary: Learning-first machine learning utilities library for simplified imports, sampling, splitting, and probabilistic preprocessing.
5
+ Author: Hazi Afrid
6
+ License: MIT License
7
+
8
+ Copyright (c) 2025 Masterhazi
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Requires-Python: >=3.8
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: numpy
32
+ Requires-Dist: pandas
33
+ Requires-Dist: scikit-learn
34
+ Requires-Dist: xgboost
35
+ Requires-Dist: seaborn
36
+ Requires-Dist: matplotlib
37
+ Dynamic: license-file
38
+
39
+
40
+ # QuickLearnKit
41
+
42
+ [![PyPI version](https://img.shields.io/pypi/v/quicklearnkit.svg)](https://pypi.org/project/quicklearnkit/)
43
+ ![Python](https://img.shields.io/badge/python-%3E%3D3.8-blue)
44
+ [![Documentation Status](https://readthedocs.org/projects/quicklearnkit/badge/?version=latest)](https://quicklearnkit.readthedocs.io/en/latest/)
45
+ ![License](https://img.shields.io/badge/license-MIT-green)
46
+
47
+ QuickLearnKit is a **learning-first machine learning utilities library** designed to simplify common ML workflows while preserving full control for advanced users.
48
+
49
+ It provides:
50
+
51
+ - Simplified model imports
52
+ - Sampling and dataset utilities
53
+ - Train–test splitting
54
+ - Probabilistic, group-aware imputation
55
+ - Teaching-friendly visualization wrappers
56
+ - Notebook → Script pipeline compilation
57
+
58
+ ---
59
+
60
+ ## Installation
61
+
62
+ ```bash
63
+ pip install quicklearnkit
64
+ ````
65
+
66
+ ---
67
+
68
+ ## Documentation
69
+
70
+ Full documentation is available at:
71
+
72
+ 👉 [https://quicklearnkit.readthedocs.io/en/latest/](https://quicklearnkit.readthedocs.io/en/latest/)
73
+
74
+ ---
75
+
76
+ ## Philosophy
77
+
78
+ > Remove mechanical friction so students can focus on concepts, not syntax.
79
+
80
+ QuickLearnKit bridges:
81
+
82
+ Learning → Experimentation → Structured building
83
+
84
+ ---
85
+
86
+ ## License
87
+
88
+ MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "quicklearnkit"
7
- version = "0.4.0"
7
+ version = "0.4.2"
8
8
  description = "Learning-first machine learning utilities library for simplified imports, sampling, splitting, and probabilistic preprocessing."
9
9
  readme = "readme.md"
10
10
  license = { file = "LICENSE" }
@@ -0,0 +1,88 @@
1
+ Metadata-Version: 2.4
2
+ Name: quicklearnkit
3
+ Version: 0.4.2
4
+ Summary: Learning-first machine learning utilities library for simplified imports, sampling, splitting, and probabilistic preprocessing.
5
+ Author: Hazi Afrid
6
+ License: MIT License
7
+
8
+ Copyright (c) 2025 Masterhazi
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Requires-Python: >=3.8
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: numpy
32
+ Requires-Dist: pandas
33
+ Requires-Dist: scikit-learn
34
+ Requires-Dist: xgboost
35
+ Requires-Dist: seaborn
36
+ Requires-Dist: matplotlib
37
+ Dynamic: license-file
38
+
39
+
40
+ # QuickLearnKit
41
+
42
+ [![PyPI version](https://img.shields.io/pypi/v/quicklearnkit.svg)](https://pypi.org/project/quicklearnkit/)
43
+ ![Python](https://img.shields.io/badge/python-%3E%3D3.8-blue)
44
+ [![Documentation Status](https://readthedocs.org/projects/quicklearnkit/badge/?version=latest)](https://quicklearnkit.readthedocs.io/en/latest/)
45
+ ![License](https://img.shields.io/badge/license-MIT-green)
46
+
47
+ QuickLearnKit is a **learning-first machine learning utilities library** designed to simplify common ML workflows while preserving full control for advanced users.
48
+
49
+ It provides:
50
+
51
+ - Simplified model imports
52
+ - Sampling and dataset utilities
53
+ - Train–test splitting
54
+ - Probabilistic, group-aware imputation
55
+ - Teaching-friendly visualization wrappers
56
+ - Notebook → Script pipeline compilation
57
+
58
+ ---
59
+
60
+ ## Installation
61
+
62
+ ```bash
63
+ pip install quicklearnkit
64
+ ````
65
+
66
+ ---
67
+
68
+ ## Documentation
69
+
70
+ Full documentation is available at:
71
+
72
+ 👉 [https://quicklearnkit.readthedocs.io/en/latest/](https://quicklearnkit.readthedocs.io/en/latest/)
73
+
74
+ ---
75
+
76
+ ## Philosophy
77
+
78
+ > Remove mechanical friction so students can focus on concepts, not syntax.
79
+
80
+ QuickLearnKit bridges:
81
+
82
+ Learning → Experimentation → Structured building
83
+
84
+ ---
85
+
86
+ ## License
87
+
88
+ MIT License
@@ -0,0 +1,50 @@
1
+
2
+ # QuickLearnKit
3
+
4
+ [![PyPI version](https://img.shields.io/pypi/v/quicklearnkit.svg)](https://pypi.org/project/quicklearnkit/)
5
+ ![Python](https://img.shields.io/badge/python-%3E%3D3.8-blue)
6
+ [![Documentation Status](https://readthedocs.org/projects/quicklearnkit/badge/?version=latest)](https://quicklearnkit.readthedocs.io/en/latest/)
7
+ ![License](https://img.shields.io/badge/license-MIT-green)
8
+
9
+ QuickLearnKit is a **learning-first machine learning utilities library** designed to simplify common ML workflows while preserving full control for advanced users.
10
+
11
+ It provides:
12
+
13
+ - Simplified model imports
14
+ - Sampling and dataset utilities
15
+ - Train–test splitting
16
+ - Probabilistic, group-aware imputation
17
+ - Teaching-friendly visualization wrappers
18
+ - Notebook → Script pipeline compilation
19
+
20
+ ---
21
+
22
+ ## Installation
23
+
24
+ ```bash
25
+ pip install quicklearnkit
26
+ ````
27
+
28
+ ---
29
+
30
+ ## Documentation
31
+
32
+ Full documentation is available at:
33
+
34
+ 👉 [https://quicklearnkit.readthedocs.io/en/latest/](https://quicklearnkit.readthedocs.io/en/latest/)
35
+
36
+ ---
37
+
38
+ ## Philosophy
39
+
40
+ > Remove mechanical friction so students can focus on concepts, not syntax.
41
+
42
+ QuickLearnKit bridges:
43
+
44
+ Learning → Experimentation → Structured building
45
+
46
+ ---
47
+
48
+ ## License
49
+
50
+ MIT License