coreLearn 0.1.2__tar.gz → 0.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.
- {corelearn-0.1.2 → corelearn-0.1.4}/PKG-INFO +5 -1
- {corelearn-0.1.2 → corelearn-0.1.4}/README.md +4 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/__init__.py +1 -1
- corelearn-0.1.4/coreLearn/examples/fwef.py +4 -0
- corelearn-0.1.4/coreLearn/tests/__init__.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/PKG-INFO +5 -1
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/SOURCES.txt +2 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/pyproject.toml +1 -1
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/base.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/distances.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/evaluator.py +0 -0
- /corelearn-0.1.2/coreLearn/tests/__init__.py → /corelearn-0.1.4/coreLearn/examples/ewfwe.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/knn.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/linear_regression.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_distances.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_evaluator.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_knn.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_linear_regression.py +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/dependency_links.txt +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/requires.txt +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/top_level.txt +0 -0
- {corelearn-0.1.2 → corelearn-0.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: coreLearn
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Basic ML algorithms library built from scratch (KNN + Linear Regression)
|
|
5
5
|
Requires-Python: >=3.9
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -70,6 +70,10 @@ coreLearn/
|
|
|
70
70
|
├── knn.py ← KNN Classifier — Recursion + Concurrency + OOP
|
|
71
71
|
├── linear_regression.py ← Linear Regression — Strategy Pattern + OOP
|
|
72
72
|
├── evaluator.py ← Metric engine — Functional Programming
|
|
73
|
+
├── examples/
|
|
74
|
+
│ ├── demo_notebook.ipynb
|
|
75
|
+
│ ├── housing.csv
|
|
76
|
+
│ └── penguin.csv
|
|
73
77
|
└── tests/
|
|
74
78
|
├── test_knn.py
|
|
75
79
|
├── test_linear_regression.py
|
|
@@ -58,6 +58,10 @@ coreLearn/
|
|
|
58
58
|
├── knn.py ← KNN Classifier — Recursion + Concurrency + OOP
|
|
59
59
|
├── linear_regression.py ← Linear Regression — Strategy Pattern + OOP
|
|
60
60
|
├── evaluator.py ← Metric engine — Functional Programming
|
|
61
|
+
├── examples/
|
|
62
|
+
│ ├── demo_notebook.ipynb
|
|
63
|
+
│ ├── housing.csv
|
|
64
|
+
│ └── penguin.csv
|
|
61
65
|
└── tests/
|
|
62
66
|
├── test_knn.py
|
|
63
67
|
├── test_linear_regression.py
|
|
@@ -5,7 +5,7 @@ from .linear_regression import LinearRegression
|
|
|
5
5
|
from .evaluator import Evaluator, accuracy, mae, mse, rmse, precision, recall, f1_score
|
|
6
6
|
from .distances import DistanceMetric, DistanceMetricFactory
|
|
7
7
|
|
|
8
|
-
__version__ = "0.1.
|
|
8
|
+
__version__ = "0.1.4"
|
|
9
9
|
|
|
10
10
|
__all__ = [
|
|
11
11
|
"KNNClassifier",
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: coreLearn
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Basic ML algorithms library built from scratch (KNN + Linear Regression)
|
|
5
5
|
Requires-Python: >=3.9
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -70,6 +70,10 @@ coreLearn/
|
|
|
70
70
|
├── knn.py ← KNN Classifier — Recursion + Concurrency + OOP
|
|
71
71
|
├── linear_regression.py ← Linear Regression — Strategy Pattern + OOP
|
|
72
72
|
├── evaluator.py ← Metric engine — Functional Programming
|
|
73
|
+
├── examples/
|
|
74
|
+
│ ├── demo_notebook.ipynb
|
|
75
|
+
│ ├── housing.csv
|
|
76
|
+
│ └── penguin.csv
|
|
73
77
|
└── tests/
|
|
74
78
|
├── test_knn.py
|
|
75
79
|
├── test_linear_regression.py
|
|
@@ -11,6 +11,8 @@ coreLearn.egg-info/SOURCES.txt
|
|
|
11
11
|
coreLearn.egg-info/dependency_links.txt
|
|
12
12
|
coreLearn.egg-info/requires.txt
|
|
13
13
|
coreLearn.egg-info/top_level.txt
|
|
14
|
+
coreLearn/examples/ewfwe.py
|
|
15
|
+
coreLearn/examples/fwef.py
|
|
14
16
|
coreLearn/tests/__init__.py
|
|
15
17
|
coreLearn/tests/test_distances.py
|
|
16
18
|
coreLearn/tests/test_evaluator.py
|
|
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
|