Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justusschock/delira_cycle_gan_pytorch

A delira-compatible cycle-GAN skeleton.
https://github.com/justusschock/delira_cycle_gan_pytorch

computer-vision cycle-gan cyclegan delira gan generative-adversarial-network image-processing pytorch pytorch-cnn

Last synced: about 2 months ago
JSON representation

A delira-compatible cycle-GAN skeleton.

Awesome Lists containing this project

README

        

> This Project is now obsolete and won't be continued. Potential Bugs won't be fixed in this repo anymore. Please refer to the implementation in [delira-dev/vision](https://github.com/delira-dev/vision) for more details

# Cycle GAN

[![Build Status](https://travis-ci.com/justusschock/delira_cycle_gan_pytorch.svg?branch=master)](https://travis-ci.com/justusschock/delira_cycle_gan_pytorch) [![codecov](https://codecov.io/gh/justusschock/delira_cycle_gan_pytorch/branch/master/graph/badge.svg)](https://codecov.io/gh/justusschock/delira_cycle_gan_pytorch)

This package contains a [`delira`](https://github.com/justusschock/delira)
compatible cycle GAN skeleton, which should work for arbitrary dimensions and
datatypes.

An example for 2D images can be found in the [notebooks](notebooks)
folder.

The paper, this package is based on, can be found at [arXiv](https://arxiv.org/abs/1703.10593).

## Installation
This package can be installed from pip with:
```
pip install delira-cycle-gan
```
or from source via:
```
pip install git+https://github.com/justusschock/delira_cycle_gan_pytorch
```

## Examples (taken from [the original implementation](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix))