quicklearnkit 0.2.1__tar.gz → 0.2.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.
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/PKG-INFO +3 -3
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/pyproject.toml +1 -1
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit.egg-info/PKG-INFO +3 -3
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/readme.md +2 -2
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/LICENSE +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/__init__.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/classifier.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/quickimports.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/randomizer.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/regressor.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/split.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit/utils.py +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit.egg-info/SOURCES.txt +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit.egg-info/dependency_links.txt +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit.egg-info/requires.txt +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/quicklearnkit.egg-info/top_level.txt +0 -0
- {quicklearnkit-0.2.1 → quicklearnkit-0.2.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quicklearnkit
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Learning-first machine learning utilities library for simplified imports, sampling, splitting, and probabilistic preprocessing.
|
|
5
5
|
Author: Hazi Afrid
|
|
6
6
|
License: MIT License
|
|
@@ -34,7 +34,7 @@ Requires-Dist: scikit-learn
|
|
|
34
34
|
Requires-Dist: xgboost
|
|
35
35
|
Dynamic: license-file
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
# QuickLearnKit
|
|
39
39
|
|
|
40
40
|
QuickLearnKit is a lightweight, learning-first machine learning utilities library designed to simplify model imports and streamline common ML workflows. No more deep module navigation—import models and tools effortlessly and start building.
|
|
@@ -215,5 +215,5 @@ This project is licensed under the MIT License.
|
|
|
215
215
|
|
|
216
216
|
QuickLearnKit makes machine learning utilities effortless—so you can focus on **learning, experimenting, and building**, not writing complex import statements. 🚀
|
|
217
217
|
|
|
218
|
-
|
|
218
|
+
|
|
219
219
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "quicklearnkit"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.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" }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quicklearnkit
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Learning-first machine learning utilities library for simplified imports, sampling, splitting, and probabilistic preprocessing.
|
|
5
5
|
Author: Hazi Afrid
|
|
6
6
|
License: MIT License
|
|
@@ -34,7 +34,7 @@ Requires-Dist: scikit-learn
|
|
|
34
34
|
Requires-Dist: xgboost
|
|
35
35
|
Dynamic: license-file
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
# QuickLearnKit
|
|
39
39
|
|
|
40
40
|
QuickLearnKit is a lightweight, learning-first machine learning utilities library designed to simplify model imports and streamline common ML workflows. No more deep module navigation—import models and tools effortlessly and start building.
|
|
@@ -215,5 +215,5 @@ This project is licensed under the MIT License.
|
|
|
215
215
|
|
|
216
216
|
QuickLearnKit makes machine learning utilities effortless—so you can focus on **learning, experimenting, and building**, not writing complex import statements. 🚀
|
|
217
217
|
|
|
218
|
-
|
|
218
|
+
|
|
219
219
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
# QuickLearnKit
|
|
3
3
|
|
|
4
4
|
QuickLearnKit is a lightweight, learning-first machine learning utilities library designed to simplify model imports and streamline common ML workflows. No more deep module navigation—import models and tools effortlessly and start building.
|
|
@@ -179,5 +179,5 @@ This project is licensed under the MIT License.
|
|
|
179
179
|
|
|
180
180
|
QuickLearnKit makes machine learning utilities effortless—so you can focus on **learning, experimenting, and building**, not writing complex import statements. 🚀
|
|
181
181
|
|
|
182
|
-
|
|
182
|
+
|
|
183
183
|
|
|
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
|