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.
Files changed (22) hide show
  1. {corelearn-0.1.2 → corelearn-0.1.4}/PKG-INFO +5 -1
  2. {corelearn-0.1.2 → corelearn-0.1.4}/README.md +4 -0
  3. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/__init__.py +1 -1
  4. corelearn-0.1.4/coreLearn/examples/fwef.py +4 -0
  5. corelearn-0.1.4/coreLearn/tests/__init__.py +0 -0
  6. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/PKG-INFO +5 -1
  7. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/SOURCES.txt +2 -0
  8. {corelearn-0.1.2 → corelearn-0.1.4}/pyproject.toml +1 -1
  9. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/base.py +0 -0
  10. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/distances.py +0 -0
  11. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/evaluator.py +0 -0
  12. /corelearn-0.1.2/coreLearn/tests/__init__.py → /corelearn-0.1.4/coreLearn/examples/ewfwe.py +0 -0
  13. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/knn.py +0 -0
  14. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/linear_regression.py +0 -0
  15. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_distances.py +0 -0
  16. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_evaluator.py +0 -0
  17. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_knn.py +0 -0
  18. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn/tests/test_linear_regression.py +0 -0
  19. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/dependency_links.txt +0 -0
  20. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/requires.txt +0 -0
  21. {corelearn-0.1.2 → corelearn-0.1.4}/coreLearn.egg-info/top_level.txt +0 -0
  22. {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.2
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.0"
8
+ __version__ = "0.1.4"
9
9
 
10
10
  __all__ = [
11
11
  "KNNClassifier",
@@ -0,0 +1,4 @@
1
+
2
+ from coreLearn import KNNClassifier,LinearRegression,Evaluator
3
+ import coreLearn
4
+ print(coreLearn.__version__)
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coreLearn
3
- Version: 0.1.2
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "coreLearn"
7
- version = "0.1.2"
7
+ version = "0.1.4"
8
8
  description = "Basic ML algorithms library built from scratch (KNN + Linear Regression)"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes
File without changes
File without changes