Skip to main content

An igent machine learning package. A Python library for handling duplicate data and performing data preprocessing on datasets. This library provides functions to identify and remove duplicate rows, handle missing values, and prepare data for analysis. All you have to do just provide the dataset url or path the library automatically do those tasks.

Project description

Iltelligent Machine Learning Task using Python

forthebadge made-with-python
Python 3.6 image image

An intelligent machine learning package. A Python library for handling duplicate data and performing data preprocessing on datasets. This library provides functions to identify and remove duplicate rows, handle missing values, and prepare data for analysis. All you have to do just provide the dataset url or path the library automatically do those tasks.

Functionality of the Package

  • hd_and_dp(dataPath) : Both handle duplication and data preprocessing by sending the dataset url or path link.
  • handle_duplication(dataPath) : Handle duplication by sending the dataset url or path link.
  • dataPreprocessing(dataPath) : Data preprocessing by sending the dataset url or path link.

Usage

  • Make sure you have Python installed in your system.
  • Run Following command in the CMD.
 pip install intelligentML

Example-1

# test.py:

from intelligentML import hd_and_dp
url = "example.csv"
finalDataset = hd_and_dp(url)
print(f"Final Preprocessed Dataset: \n{finalDataset}")

Example-2

# test.py:

from intelligentML import handle_duplication
url = "example.csv"
NoDupDataset = handle_duplication(url)
print(f"Dataset Without Duplications: \n{NoDupDataset}")

Example-3

# test.py:

from intelligentML import dataPreprocessing
url = "example.csv"
PreproccessedDataset = dataPreprocessing(url)
print(f"Preprocessed Dataset: \n{PreproccessedDataset}")

Run the following Script.

 python test.py

Note

  • It is a very tiny package according to the large ML areas. I will update the package till to advance.

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

intelligentML-0.1.1.tar.gz (4.4 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