Minimal implementations of classical ML algorithms
Project description
Revisiting Classsical ML
Implementations of classical ML algorithms in Numpy. Algorithms covered:
- Linear Regression
- Logistic Regression
- Support Vector Machines
- K Nearest Neighbours (both classifier and regressor)
- Naive Bayes
- K Means Clustering
- Decision Trees
- HMM
Installation
pip install RCML
Import classical ML algorithm implementations
# Classification models
from RCML import KNN_Classifier
from RCML import Decision_Tree
from RCML import Logistic_Regression
from RCML import SVM
from RCML import Naive_Bayes
# Clustering models
from RCML import KMeans
from RCML import KMeansPlusPlus
# Regression models
from RCML import KNN_Regressor
from RCML import Linear_Regressor
# Sequence models
from RCML import viterbi as HMM
See examples of usage in the repo in files having prefix run_*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
RCML-1.1.2.tar.gz
(2.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
RCML-1.1.2-py3-none-any.whl
(3.2 kB
view details)
File details
Details for the file RCML-1.1.2.tar.gz.
File metadata
- Download URL: RCML-1.1.2.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d07e3cca8a13ce086fb2dbc38da072bcbcf8260c9f6cf72a68088c13cd6fb50
|
|
| MD5 |
f0288404e71324a52df30e520dd6a3f3
|
|
| BLAKE2b-256 |
13c2f6bb3731824a4ef86266eb919c4c144cb6ef0dc3d486ecee04117fbe0c30
|
File details
Details for the file RCML-1.1.2-py3-none-any.whl.
File metadata
- Download URL: RCML-1.1.2-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bae8da0ea89a81a9a18290feed343ae108bbb6d15e352dc5aeb8238f2fc7f6e8
|
|
| MD5 |
1c27d3895a7bfb0396fcdf1589803291
|
|
| BLAKE2b-256 |
f043399f2f137c649facc8005059eda034c23a2d97591325b4c886cb0e9b9464
|