Automated ML by d4rk-lucif3r
Project description
LuciferML a Semi-Automated Machine Learning Library by d4rk-lucif3r
About
The LuciferML is a Semi-Automated Machine Learning Python Library that works with tabular data. It is designed to save time while doing data analysis. It will help you right from data preprocessing to Data Prediction.
The LuciferML will help you with
- Preprocessing Data:
- Encoding
- Splitting
- Scaling
- Dimensionality Reduction
- Resampling
- Trying many different machine learning models with hyperparameter tuning,
Installation
pip install lucifer-ml
Available Preprocessing Techniques
-
Skewness Correction
Takes Pandas Dataframe as input. Transforms each column in dataset except the columns given as an optional parameter. Returns Transformed Data.
Example:
-
All Columns:
from luciferml.preprocessing import Preprocess as prep import pandas as pd dataset = pd.read_csv('/examples/Social_Network_Ads.csv') dataset = prep.skewcorrect(dataset)
-
Except column/columns:
from luciferml.preprocessing import Preprocess as prep import pandas as pd dataset = pd.read_csv('/examples/Social_Network_Ads.csv') dataset = prep.skewcorrect(dataset,except_columns=['Purchased'])
More about Preprocessing here
-
Available Modelling Techniques
-
Classification
Available Models for Classification
- 'lr' : 'Logistic Regression', - 'sgd' : 'Stochastic Gradient Descent', - 'perc': 'Perceptron', - 'pass': 'Passive Aggressive Classifier', - 'ridg': 'Ridge Classifier', - 'svm' : 'Support Vector Machine', - 'knn' : 'K-Nearest Neighbours', - 'dt' : 'Decision Trees', - 'nb' : 'Naive Bayes', - 'rfc' : 'Random Forest Classifier', - 'gbc' : 'Gradient Boosting Classifier', - 'ada' : 'AdaBoost Classifier', - 'bag' : 'Bagging Classifier', - 'extc': 'Extra Trees Classifier', - 'lgbm': 'LightGBM Classifier', - 'cat' : 'CatBoost Classifier', - 'xgb' : 'XGBoost Classifier', - 'ann' : 'Multilayer Perceptron Classifier', - 'all' : 'Applies all above classifiers'
Example:
from luciferml.supervised.classification import Classification dataset = pd.read_csv('Social_Network_Ads.csv') X = dataset.iloc[:, :-1] y = dataset.iloc[:, -1] classifier = Classification(predictor = ['lr']) classifier.fit(X, y) result = classifier.result()
More About Classification
-
Regression
Available Models for Regression - 'lin' : 'Linear Regression', - 'sgd' : 'Stochastic Gradient Descent Regressor', - 'elas': 'Elastic Net Regressot', - 'krr' : 'Kernel Ridge Regressor', - 'br' : 'Bayesian Ridge Regressor', - 'svr' : 'Support Vector Regressor', - 'knr' : 'K-Nearest Regressor', - 'dt' : 'Decision Trees', - 'rfr' : 'Random Forest Regressor', - 'gbr' : 'Gradient Boost Regressor', - 'ada' : 'AdaBoost Regressor', - 'bag' : 'Bagging Regressor', - 'extr': 'Extra Trees Regressor', - 'lgbm': 'LightGBM Regressor', - 'xgb' : 'XGBoost Regressor', - 'cat' : 'Catboost Regressor', - 'ann' : 'Multilayer Perceptron Regressor', - 'all' : 'Applies all above regressors'
Example:
from luciferml.supervised.regression import Regression dataset = pd.read_excel('examples\Folds5x2_pp.xlsx') X = dataset.iloc[:, :-1] y = dataset.iloc[:, -1] regressor = Regression(predictor = ['lin']) regressor.fit(X, y) result = regressor.result()
More about Regression here
Hyperparameter Tuning
LuciferML is powered by Optuna for Hyperparam tuning. Just add "tune = True" in either Regressor or Classifier it will start tuning the model/s with Optuna.
Persistence
LuciferML's model can be saved as a pickle file. It will save both the model and the scaler to the pickle file.
- Saving
Ex:
regressor.save([<path-to-model.pkl>, <path-to-scaler.pkl>])
A new LuciferML Object can be loaded as well by specifying path of model and scaler
- Loading
Ex:
regressor = Regression(path = [<path-to-model.pkl>, <path-to-scaler.pkl>])
These are applicable for both Classification and Regression.
Examples
Please refer to more examples here
To-Do's
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
Hashes for lucifer_ml-0.0.78-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e795cb2913ba9551b32dd31c12bad11a7f4c5201af35045d95efe04f5ccb60f |
|
MD5 | 7543d1b896b097cb7a2535b0d72adbeb |
|
BLAKE2b-256 | b66b7f319f2dc8f37c8b1b396f9d04366d1e4475d5f2ca86d9c5a3a332bd9db5 |