Metadata-Version: 2.1
Name: AutoBrewML
Version: 0.40
Summary: With AutoBrewML Framework the time it takes to get production-ready ML models with great ease and efficiency highly accelerates.
Home-page: UNKNOWN
Author: Sreeja Deb
Author-email: srde@microsoft.com
License: UNKNOWN
Project-URL: AutoBrewML GitHub, https://github.com/microsoft/AutoBrewML
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: sklearn
Requires-Dist: pandas-profiling
Requires-Dist: MarkupSafe (==2.0.1)
Requires-Dist: imblearn
Requires-Dist: scikit-learn (==0.23.1)
Requires-Dist: fairlearn
Requires-Dist: tpot
Requires-Dist: pyod


Traditional machine learning model development is resource-intensive, requiring significant domain/statistical knowledge and time to produce and compare dozens of models. 
With automated machine learning, the time it takes to get production-ready ML models with great ease and efficiency highly accelerates. However, the Automated Machine Learning does not yet provide much in terms of data preparation and feature engineering. 
The AutoBrewML tries to solve this problem at scale as well as simplifies the overall process for the user. It leverages the Automated ML coupled with components like Data Profiler, Data Sampler, Data Cleanser, Anomaly Detector which ensures quality data as a critical pre-step for building the ML model. 
With AutoBrewML the time it takes to get production-ready ML models with great ease and efficiency highly accelerates


Modules
-----------
- **Acquisition_DataTypeConversion** : Data Acquisition & Transformation 
- **BrewDataProfiler** : Exploratory Data Analysis
- **BrewDataSampling** : Data Sampling
 
  - Random Sampling
  - Stratified Sampling
  - Systematic Sampling
  - Cluster OverSampling (with SMOTE)
- **BrewDataCleanser** : Data Cleansing
- **BrewAnomalyDetection** : Anomaly Detection
- **BrewTrainTestSplit** : Train-Test Split the data in a given ratio
- **BrewFeatureSelection** : Selection of Most Important Features before Modelling
- **BrewAutoML_Classifier** : Auto trigger and choose ML Model for Classification
- **BrewAutoML_Regressor** : Auto trigger and choose ML Model for Regression
- **BrewAutoML_TimeSeries** : Auto trigger and choose ML Model for Time series Forecasting
- **Responsible AI Guidelines** 
 
  - **BrewFairnessEvaluator** : Evaluate the Fairness of a Model with respect to metrics across various cohorts of a sensitive feature
  - **BrewDisparityMitigation** : Mitigate the Bias observed in above Evaluator



**Prerequisites:**
- Python version >=3.8.0

