Skip to main content

Chemical Engineering Dataset Loader Library

Project description

Chemical Engineering Dataset Loader (CheLo) Library

License Documentation Test Status (master) CodeFactor codecov PyPI

Overview

Loading a dataset is often one of the most challenging parts of building machine learning pipelines, especially for beginners. The CheLo Library is a Python library specifically designed to make machine learning more accessible to chemical engineering students, aiding in their learning journey and supporting researchers working on related projects. By providing an easy to use framework, this library simplifies the exploration of data-driven modeling, empowering users to access, manage, and utilize chemical engineering datasets for machine learning and statistical analysis with ease. Check the CheLo's documentation for detailed usage instructions.

Key Features

  • Dataset Standardization: Unified API for accessing and exploring datasets.
  • Multiple Data Formats: Provides ready to use loaders for numpy and PyTorch.
  • Preprocessing Tools: Methods for feature/target selection, statistics, and previewing datasets.
  • Dataset Management: Automated downloading, caching, and registry of datasets.
  • Extensibility: Abstract base class for easy addition of new datasets.

Datasets

CheLo currently supports 8 datasets. You can find a list of the supported datasets here.

Installation

To install the library, run the following command:

pip install chelo

Note that for some datasets further configuration might be needed after installation (see Configuration and Dataset Path Setup).

Usage Guide

Loading a Dataset

Loading a dataset with CheLo is simple and straightforward. Just import the desired dataset (or use DatasetRegistry) and call load_data(). Note that for certain datasets, such as those hosted on Kaggle, you may need to configure the library with your access credentials beforehand.

from chelo.datasets.wine_quality import WineQualityDataset

# Instantiate the dataset
dataset = WineQualityDataset(wine_type="red", selected_features=["alcohol", "pH"], selected_targets=["quality"])

# Load data (downloads if not cached)
dataset.load_data()

# Access dataset information
info = dataset.get_dataset_info()
print("Dataset Info:", info)

Accessing Data

# Convert to numpy arrays
features, targets = dataset.to_numpy()
print("Features shape:", features.shape)
print("Targets shape:", targets.shape)

# Convert to PyTorch Dataset
pytorch_dataset = dataset.to_pytorch()
print("Number of samples in PyTorch Dataset:", len(pytorch_dataset))

Configuration

By default, the CheLo library stores datasets in the directory ~/.chelo (in the user's home directory). This default path can be customized by setting the CHELO_DATASETS_PATH environment variable. This allows you to choose a different location to store datasets and configuration files if needed.

The default dataset storage path is:

~/.chelo

Where ~ represents the user's home directory. For Windows users, the path would be:

C:\Users\<USERNAME>/.chelo

This path is used by CheLo to download, store, and manage datasets by default.

Custom API configuration

For some datasets credentials mights be needed to download datasets. The CheLo library uses a chelo.json configuration file to store such settings (this file exists under the path set in CHELO_DATASETS_PATH). If the configuration file does not exist, it will be automatically created with a default structure.

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository.
  2. Create a feature branch.
  3. Implement your changes and add tests.
  4. Submit a pull request with a detailed description of your changes.

Disclaimer

I am not associated with any of the datasets provided in this library, nor do I host them. The CheLo Library solely provides tools to facilitate the downloading and loading of publicly available datasets to enhance accessibility for educational and research purposes. Users are responsible for ensuring their use complies with the datasets' licenses and terms of use. Please refer to the original dataset provider for license details. If you have any concerns, including removal requests or any other inquiries, please feel free to contact me directly.

License

This library is licensed under the MIT License. See the LICENSE file for more details.

Contact

For questions or feedback, please contact me.

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

chelo-0.0.4.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chelo-0.0.4-py3-none-any.whl (25.0 kB view details)

Uploaded Python 3

File details

Details for the file chelo-0.0.4.tar.gz.

File metadata

  • Download URL: chelo-0.0.4.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for chelo-0.0.4.tar.gz
Algorithm Hash digest
SHA256 5e7a804e534a396622f9e20a602c1dd6f5a734b5980016c0cea06a82baf1b8ce
MD5 8269be121710eafaefdcac233957e380
BLAKE2b-256 64392c80ac0e491e00d825133d505087f8bcc6261bd8dd407e9a38f5f125c5c1

See more details on using hashes here.

File details

Details for the file chelo-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: chelo-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for chelo-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b728cbf4d6376baa613fee0b67c815da081b7d6610e1a06f4217151b6667dd44
MD5 384ef175eccef8736698f25ac266f575
BLAKE2b-256 7839e0b39e446fe954245b8cb13caa683776973e6399cc21736338868e338d14

See more details on using hashes here.

Supported by

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