All Projects → harveyslash → Deep Image Analogy Pytorch

harveyslash / Deep Image Analogy Pytorch

Licence: mit
Visual Attribute Transfer through Deep Image Analogy in PyTorch!

Projects that are alternatives of or similar to Deep Image Analogy Pytorch

All Classifiers 2019
A collection of computer vision projects for Acute Lymphoblastic Leukemia classification/early detection.
Stars: ✭ 22 (-78%)
Mutual labels:  artificial-intelligence, jupyter-notebook, deep-neural-networks
Pytorch Geometric Yoochoose
This is a tutorial for PyTorch Geometric on the YooChoose dataset
Stars: ✭ 198 (+98%)
Mutual labels:  artificial-intelligence, jupyter-notebook, deep-neural-networks
Pytorchnlpbook
Code and data accompanying Natural Language Processing with PyTorch published by O'Reilly Media https://nlproc.info
Stars: ✭ 1,390 (+1290%)
Mutual labels:  jupyter-notebook, pytorch-tutorial, deep-neural-networks
Magnet
Deep Learning Projects that Build Themselves
Stars: ✭ 351 (+251%)
Mutual labels:  artificial-intelligence, jupyter-notebook, deep-neural-networks
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (-3%)
Mutual labels:  jupyter-notebook, pytorch-tutorial, deep-neural-networks
First Steps Towards Deep Learning
This is an open sourced book on deep learning.
Stars: ✭ 376 (+276%)
Mutual labels:  artificial-intelligence, pytorch-tutorial, deep-neural-networks
Traffic Sign Detection
Traffic Sign Detection. Code for the paper entitled "Evaluation of deep neural networks for traffic sign detection systems".
Stars: ✭ 200 (+100%)
Mutual labels:  artificial-intelligence, jupyter-notebook, deep-neural-networks
Gans In Action
Companion repository to GANs in Action: Deep learning with Generative Adversarial Networks
Stars: ✭ 748 (+648%)
Mutual labels:  artificial-intelligence, jupyter-notebook, deep-neural-networks
Vitech
tuyển chọn các tài liệu về công nghệ bằng tiếng Việt
Stars: ✭ 63 (-37%)
Mutual labels:  jupyter-notebook, pytorch-tutorial, deep-neural-networks
Deep Learning Boot Camp
A community run, 5-day PyTorch Deep Learning Bootcamp
Stars: ✭ 1,270 (+1170%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Pytorch
PyTorch tutorials A to Z
Stars: ✭ 87 (-13%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Recommenders
Best Practices on Recommendation Systems
Stars: ✭ 11,818 (+11718%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Breast Cancer Classification
Breast Cancer Classification using CNN and transfer learning
Stars: ✭ 86 (-14%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Voice Conversion Gan
Voice Conversion using Cycle GAN's For Non-Parallel Data
Stars: ✭ 82 (-18%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
End To End Sequence Labeling Via Bi Directional Lstm Cnns Crf Tutorial
Tutorial for End-to-end Sequence Labeling via Bi-directional LSTM-CNNs-CRF
Stars: ✭ 87 (-13%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Dareblopy
Data Reading Blocks for Python
Stars: ✭ 82 (-18%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Ai Dl Enthusiasts Meetup
AI & Deep Learning Enthusiasts Meetup Project & Study Sessions
Stars: ✭ 90 (-10%)
Mutual labels:  artificial-intelligence, jupyter-notebook
60 days rl challenge
60_Days_RL_Challenge中文版
Stars: ✭ 92 (-8%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Phormatics
Using A.I. and computer vision to build a virtual personal fitness trainer. (Most Startup-Viable Hack - HackNYU2018)
Stars: ✭ 79 (-21%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Deep Dream In Pytorch
Pytorch implementation of the DeepDream computer vision algorithm
Stars: ✭ 90 (-10%)
Mutual labels:  jupyter-notebook, deep-neural-networks

Deep-Image-Analogy

Unofficial,PyTorch version of Deep Image Analogy.https://arxiv.org/abs/1705.01088. This project focuses on documentation of the project , and simplifying the structure. A blog post on it is coming soon.

Some Outputs (The two images in the middle are generated by the Algorithm)

Some other interesting (one way) outputs

This Project uses python3.6 and Cuda

To Install Dependencies:

be in the root directory and run pip install -r requirements.txt

To See Step by Step working of Project :

Run the Deep Image Analogy.ipynb file in the notebooks folder (using jupyter)

To run project:

cd into src , and run python Deep-Img-Analogy.py INPUT_IMG_A INPUT_IMG_BB OUTPUT_IMG

Note

This project uses Adam as optimizer instead of LBFGS. LBFGS was giving really poor results.

Project Organization

├── data
│   ├── outputs <-- folder to store outputs
│   └── raw <-- folder to store inputs
├── LICENSE.md
├── notebooks
│   ├── Deep Image Analogy.ipynb Full Pipeline in a step by step manner
│   ├── PatchMatch-Demo.ipynb Raw Patchmatch demo
│   └── WLS.ipynb Weighted Least Squares Implementation Demo (currently not being used by this project)
├── README.md 
├── requirements.txt <-- Project requirements. 
└── src
    ├── Deep-Img-Analogy.py <-- End to end executable with command line interface.
    ├── models
    │   └── VGG19.py <-- modified VGG19 with support for deconvolution, and other things. 
    ├── PatchMatch
    │   └── PatchMatchOrig.py <-- CPU version of PatchMatch. GPU version may come in the future.
    ├── Utils.py <-- Helper Utilities
    └── WLS.py <-- Weighted Least Squares.

Project based on the cookiecutter data science project template. #cookiecutterdatascience

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].