KO
|
EN
gitlite — search
Search
#php
#python
#swift
#machine-learning
#react
#javascript
#csharp
#golang
#kubernetes
#webpack
#nodejs
#android
chainer-pix2pix
★ 132
Open GitHub ↗
chainer implementation of pix2pix
Download README (.md)
Explore Similar Repositories
angular-application-insights
:
Angular & Azure Application Insights module - Find out performance and usage of your app by connecting Microsoft Azure Application insights with your Angular application by @TrilonIO
asteroids_d3d12
:
Intel Asteroids DirectX 12 Sample
XParticle
:
A really simple Unity3D/DirectX 11 particle system using compute shaders to handle millions of particles.
hoff-bayesian-statistics
:
R Markdown notes for Peter D. Hoff, "A First Course in Bayesian Statistical Methods"
DataProtection
:
[Archived] Data Protection APIs for protecting and unprotecting data. Project moved to https://github.com/aspnet/AspNetCore
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
chainer-pix2pix
?
Download (.md)
# chainer-pix2pix chainer implementation of pix2pix https://phillipi.github.io/pix2pix/ The Japanese readme can be found [here](README-ja.md). # Example result on CMP facade dataset <img src="https://github.com/mattya/chainer-pix2pix/blob/master/image/example.png?raw=true"> From the left side: input, output, ground_truth # usage 1. `pip install -r requirements.txt` 2. Download the facade dataset (base set) http://cmp.felk.cvut.cz/~tylecr1/facade/ 3. `python train_facade.py -g [GPU ID, e.g. 0] -i [dataset root directory] --out [output directory] --snapshot_interval 10000` 4. Wait a few hours... - `--out` stores snapshots of the model and example images at an interval defined by `--snapshot_interval` - If the model size is large, you can reduce `--snapshot_interval` to save resources. # Using other datasets - Gather image pairs (e.g. label + photo). Several hundred pairs are required for good results. - Create a copy of `facade_dataset.py` for your dataset. The function get_example should be written so that it returns the i-th image pair a tuple of numpy arrays i.e. `(input, output)`. - It maybe necessary to update the loss function in `updater.py`. - Likewise, make a copy of `facade_visualizer.py` and modify to visualize the dataset. - In `train_facade.py` change `in_ch` and `out_ch` to the correct input and output channels for your data.