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
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.
- Free software: MIT license
- Documentation: https://Nasif-Azam.github.io/intelligentML
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
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.