Metadata-Version: 1.1
Name: mlpipeline-1
Version: 0.0.4
Summary: An AutoML library
Home-page: https://github.com/debjyoti003/ML-Pipeline.git
Author: Debjyoti Banerjee
Author-email: debjyoti.banerjee1994@gmail.com
License: MIT
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.4
        
        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()
        
        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.4 (18/02/2022)
        --------------------
        - This is my Fourth Release of the project with some changes solving some errors from the version issue and updating the readme file for better clarity for the users on how to use this.
Keywords: AutoML
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
