Metadata-Version: 2.4
Name: tfgans
Version: 0.1.1
Summary: A Python package for Generative Adversarial Networks (GANs) implemented with TensorFlow/Keras
Author-email: Md Motiur Rahman Sagar <mrahman.sagar@gmail.com>
Maintainer-email: Md Motiur Rahman Sagar <mrahman.sagar@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/mrahmansagar/GANs
Project-URL: Documentation, https://github.com/mrahmansagar/GANs#readme
Project-URL: Repository, https://github.com/mrahmansagar/GANs.git
Project-URL: Bug Tracker, https://github.com/mrahmansagar/GANs/issues
Keywords: gan,generative,adversarial,neural-networks,deep-learning,tensorflow,keras,machine-learning,image-generation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Image Processing
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy<2,>=1.21.0
Requires-Dist: scikit-learn>=1.0.0
Requires-Dist: scipy>=1.7.0
Requires-Dist: natsort>=8.0.0
Requires-Dist: tqdm>=4.60.0
Requires-Dist: tifffile>=2021.0.0
Requires-Dist: matplotlib>=3.5.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=22.0; extra == "dev"
Requires-Dist: flake8>=4.0; extra == "dev"
Requires-Dist: isort>=5.10; extra == "dev"
Requires-Dist: mypy>=0.950; extra == "dev"
Provides-Extra: notebooks
Requires-Dist: jupyter>=1.0; extra == "notebooks"
Requires-Dist: matplotlib>=3.5.0; extra == "notebooks"
Requires-Dist: pillow>=9.0; extra == "notebooks"
Provides-Extra: tensorflow
Requires-Dist: tensorflow>=2.17.0; extra == "tensorflow"
Dynamic: license-file

# GANs
Implementation of various Generative Adversarial Networks (GANs) and related utility functions. 


## Installation

### Basic Installation (No Deep Learning Framework)
```bash
pip install tfgans
```

Install tensorflow [cup or gpu] on your own. Tested version tensorflow 2.17.0 with python 3.10 on Ubuntu 24.04 LTS

