A high-performance, extensible machine learning library for Python. fastmlcore provides a rich suite of algorithms, preprocessing tools, metrics, and utilities for rapid prototyping and production-grade ML workflows. Designed for clarity, speed, and flexibility, it empowers researchers, engineers, and data scientists to build, evaluate, and deploy models with ease.
Project description
mymlcore
mymlcore is a simple, extensible machine learning library for Python.
Features
- LinearRegression, LogisticRegression, DecisionTree, KMeans, SVM, RandomForest, NaiveBayes, NeuralNetwork
- Preprocessing: StandardScaler, MinMaxScaler, OneHotEncoder, Imputer, PCA
- Metrics: mean_squared_error, accuracy_score, precision_score, recall_score, f1_score, confusion_matrix, log_loss, roc_auc_score
- Utilities: train_test_split, cross_val_score, grid_search
Installation
pip install mymlcore
Usage Example
from mymlcore import LinearRegression, mean_squared_error
import numpy as np
X = np.array([[2, 600], [3, 900], [6, 1700], [5, 1300], [4, 1050], [7, 1900]])
y = np.array([120000, 180000, 400000, 320000, 250000, 450000])
model = LinearRegression()
model.fit(X, y)
preds = model.predict(X)
print(mean_squared_error(y, preds))
License
MIT
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
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
File details
Details for the file mymlcore-1.1.2.tar.gz.
File metadata
- Download URL: mymlcore-1.1.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a228aa746c1d6aa770b9f730831cb81ce120dbae3d9d879b72e33a577237f62c
|
|
| MD5 |
7a5de1f24011a3176de5132c97197374
|
|
| BLAKE2b-256 |
f6e5eaa20aca591759191084cde732b884dd30a71548bcbd11b81655304caec3
|
File details
Details for the file mymlcore-1.1.2-py3-none-any.whl.
File metadata
- Download URL: mymlcore-1.1.2-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a866f91f408333a34dd6bc961337ee0722e99a904fe1b117ddc1eee2104eda9
|
|
| MD5 |
a668b1a46a2d3793c8d9b1cecf02e5a9
|
|
| BLAKE2b-256 |
e68217b3768a2a9d76360f9a582c6e9bda663d90d40a7c8e5fc8be92397f9975
|