Seattle University: Data Science Research
Wan Bae
Sartaj Bhuvaji
Siddheshwari Bankar
SDGNE - Synthetic Data Generation and Evaluation
- SDGnE (Synthetic Data Generation and Evaluation) is a Python package designed to generate synthetic data and evaluate its quality using neural network models.
- This tool is intended for developers and researchers who require synthetic datasets for testing and development.
- Current dittto version uses Autoencoders and SMOTE to generate synthetic data.
pip install sdgne
To get started, we have created notebook for the Autoencoder and SMOTE algorithm.
Autoencoders are a class of neural networks designed for unsupervised learning and representing features in a smaller space. They consist of an encoder and a decoder, intending to learn the input data's compressed representation (encoding). We leverage this architecture to generate synthetic data.
SMOTE, abbreviated as Synthetic Minority Oversampling Technique, is used to generate synthetic data from the original dataset. Over the years, several variants of SMOTE have been developed, each tailored to specific scenarios and requirements. These variants employ distinct methodologies and innovations to enhance the generation of synthetic data, thereby improving model performance by ensuring a more balanced distribution of classes. We provide a few SMOTE variants for synthetic data generation.
In this notebook, we will compare the Single Encoder Autoencoder
and the SMOTE Algorithm
for synthetic data generation. We will generate synthetic data using both the algorithms and perform statistical evaluation.
- Data Generation: Create synthetic datasets that mimic the statistical properties of real-world data.
- Neural Autoencoders: Utilize various autoencoder architectures to learn data representations.
- Evaluation Metrics: Assess the quality of synthetic data using built-in evaluation metrics.
- Extensibility: Easily extend the package with custom data generators and evaluators.
- Documentation: https://seattle-university.gitbook.io/sdgne/
- PyPI: https://pypi.org/project/sdgne/