Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.0 #5

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PYPI_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## About
- 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.
- The current dittto version `v0.2.0` uses <i>Autoencoders</i> and <i>SMOTE</i> to generate synthetic data.
- The current dittto version `v1.0.0` uses <i>Autoencoders</i> and <i>SMOTE</i> to generate synthetic data.

## Getting Started
`pip install sdgne`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
## About
- 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.
- The current dittto version `v0.2.0` uses <i>Autoencoders</i> and <i>SMOTE</i> to generate synthetic data.
- The current dittto version `v1.0.0` uses <i>Autoencoders</i> and <i>SMOTE</i> to generate synthetic data.

## Getting Started
`pip install sdgne`
Expand Down
1 change: 0 additions & 1 deletion docs/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
with codecs.open(os.path.join(here, "PYPI_README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = '0.2.2'
DESCRIPTION = 'Generates synthetic data'
VERSION = '1.0.0'
DESCRIPTION = 'Synthetic Data Generation and Evaluation'
LONG_DESCRIPTION = long_description
URL = "https://github.com/SartajBhuvaji"

Expand Down
Loading