Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 723 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 723 Bytes

CycleGAN-PyTorch

A simple PyTorch implementation of CycleGAN (https://arxiv.org/abs/1703.10593)
This implementation of CycleGAN was created as part of a course in deep learning

Training

Datasets can be downloaded via UC Berkeley's repository.
Datasets should be set up in the following directory structure:

-- datasets      
  -- dataset name      
    -- train  
      -- x   
      -- y        
    -- test  
      -- x  
      -- y            

Acknowledgment

All credit goes to the authers of CycleGAN, Jun-Yan Zhu, Taesung Park, Phillip Isola, Alexei A. Efros.