Metadata-Version: 2.1
Name: cyclicgan
Version: 0.0.1
Summary: An API implementation of CyclicGAN network.
Home-page: https://github.com/sarthakforwet/CyclicGAN_Implementation
Author: Sarthak Khandelwal
Author-email: sarthakkhandelwal032000@gmail.com
License: UNKNOWN
Description: ## CyclicGAN
        
        This API is an implementation of the `CyclicGAN` been presented in the [original paper](https://arxiv.org/abs/1703.10593).
        
        CylicGAN is a special type of GAN network which works with Unpaired Data to extract mapping between the two domains (X and Y). We generally have two Generator networks and two Discriminator networks to criticize the work of the Generators. Apart from the `Adversarial loss`, we also have `cyclic consistency loss` which makes sure that any mapping of the image from the domain `X` to domain `Y` has the same reverse mapping.
        
        This API aims to makes it easy for developers to train and infer from a CyclicGAN model.
        
        Steps to Setup:
        1. Clone the repo.
        2. Run `python setup.py install`
        3. API has been installed as a python package and now you can directly use its functionalities.
        
        You can also follow [this](https://colab.research.google.com/drive/15vn4qxR66O_f_d67PxrO2yyHR2-5CczV#scrollTo=w4te2lF6CWib) tutorial notebook to get an idea of the functionality of this API.
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
