Skip to main content

An AutoML library

Project description

Currently it prepares the data ready for a Machine Learning Classification problem (mainly for now Tabular Dataset). I am soon planning to add other features for Regression problem as well as for Clustering based Problem. My purpose of creating this project is to build an AutoML library, which reduces writing more code to a create a model. How you can use this is by following the below step: ` pip install mlpipeline_1==0.0.7 ` ` from ml_pipeline.pipeline import ml_pipe ` Then you need to pass certain parameters to the ml_pipe function, the first one is the “location of the csv file” which you want to do Classification on, second parameter being the “target variable name”, and the last one being the “split size” (value between 0 - 1) i.e., what percent of the whole dataset you want to use as a test set. ` X_train, X_test, y_train, y_test = ml_pipe(file_path, target_var, split_ratio) ` The output of the above function you can pass to any Classification model for training.

Soon planning to coming up with more and more features. Planning to make this a full-fledged AutoML library.

Change Log

0.0.7 (18/02/2022)

  • This is my Seventh Release of the project with some changes solving some errors from the previous version and updating the readme file for better clarity for the users on how to use this.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mlpipeline_1-0.0.7.tar.gz (63.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page