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.7.tar.gz (19.7 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.7-py3-none-any.whl (25.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: chelo-0.0.7.tar.gz
  • Upload date:
  • Size: 19.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for chelo-0.0.7.tar.gz
Algorithm Hash digest
SHA256 4aff799b409e9878dd2d964b20ce852a626943c5ab6b48d498d51f52c8964d81
MD5 9ceda4cb37e3475c11f07f9384ade0de
BLAKE2b-256 5c7505fc40109fd237c0faf86b699b080739f74e34cd42eea2dea237d39a0d5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: chelo-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for chelo-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 ae6bb01cce98a63a79c6f197300f1e76b74fb2371a591f9fee72c27f0f54af7c
MD5 8301f4a034a6f3325ffb69e5ea5480a1
BLAKE2b-256 cf3ce658e7232d69e466e35277b580020ae1815ba4ba67bea7a7ca45c33a2de1

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