This repository contains a Python script that automates the process of downloading, cleaning, and saving datasets from multiple sources including Huggingface, the UCI Machine Learning Repository, and local dataset files.
The toolkit supports various data preprocessing functionalities such as encoding, normalization, standardization, handling missing data, automatic class balancing, and image resizing.
- Browse Huggingface datasets here: Huggingface Datasets
- Browse UCI datasets here: UCI Datasets
- Multiple Data Sources: Download datasets from Huggingface, UCI ML Repository, or use local dataset files.
- Local Dataset Compatibility: Load datasets directly from local storage, supporting various file formats such as CSV, Excel, Parquet, and more.
- Multiple Data Types: Handle both tabular and image datasets, including complex operations such as image resizing and flattening.
- Data Encoding: Apply one-hot encoding and ordinal encoding to categorical variables.
- Data Scaling: Options for standardizing or normalizing numerical features.
- Missing Data Handling: Strategies include dropping, filling, or imputing missing values.
- Data Transformation: Convert float columns to integers where applicable.
- Stratified Sampling: Reduce dataset size while preserving the distribution of target variables.
- Class Balancing: Automatically balance classes using random oversampling.
- Image Resizing: Resize images to specified target widths, maintaining aspect ratio and converting to tabular format.
Install the necessary dependencies using:
pip install -r requirements.txt
Here's how you can import and use the tool to download and pre-process a dataset:
from prepare_data import process_and_store_dataset
# Download and preprocess dataset from Huggingface
dataset = process_and_store_dataset(name="hitorilabs/iris")
# Download and preprocess dataset from UCI
uci_dataset = process_and_store_dataset(
name="53", # ID for the Iris dataset
source='uci'
)
# Load and preprocess local dataset
local_dataset = process_and_store_dataset(
name='data/local_dataset.csv',
source='local',
verbose=True
)
# Download, resize images, and preprocess dataset from Huggingface
image_dataset = process_and_store_dataset(
name='fashion_mnist',
source='huggingface',
target_image_width=28, # Resize to 28x28
verbose=True
)
Feel free to contribute to this project by submitting pull requests or suggesting new enhancements through the issues tab.
This project is open-source and available under the MIT License.