pix2pix
Here are 118 public repositories matching this topic...
Software that can generate photos from paintings, turn horses into zebras, perform style transfer, and more.
-
Updated
Dec 20, 2019 - Lua
Which images should I use in the evaluation code?
I compared the generated images with Ground truth images and generated images with labels but got an error and the result of all the parameters was zero.
Generated images should be converted to label?
Solving this problem is very important to me.
thank you
. DeepNude的算法以及通用GAN图像生成的理论与实践研究。
-
Updated
Dec 20, 2019 - Python
Traceback (most recent call last):
File "train.py", line 45, in
train_display_images_b = torch.stack([train_loader_b.dataset[i] for i in range(display_size)]).cuda()
File "train.py", line 45, in
train_display_images_b = torch.stack([train_loader_b.dataset[i] for i in range(display_size)]).cuda()
File "/content/MUNIT/data.py", line 119, in getitem
pat
README.md question
In packaging process, README.md refer to me to execute this command
python package.py --dir=image_directories
--save_dir=binary_save_directory
--split_ratio=[0,1]
But, In implement, split_ratio option is float type, so Is it right to set split_ratio option to [0,1]?
Image Deblurring using Generative Adversarial Networks
-
Updated
Dec 19, 2019 - Python
I am afraid that the image links in TUTORIAL.md are 404.
Is that because of my Internet connection or they're just not found?
Real-time pix2pix implementation with Unity
-
Updated
Dec 20, 2019 - C#
DeepNude source code,without watermark,with demo and model download link,one command to run offline,GAN/Pytorch/pic2pic
-
Updated
Dec 19, 2019 - Python
Yolov3 slow?
with video_demo.py about 20% speed compared to your 1.0 repo. but thanks much for sharing!
[NeurIPS 2018] Visual Object Networks: Image Generation with Disentangled 3D Representation.
-
Updated
Dec 11, 2019 - Python
DEPRECATED: Depth Map Estimation from Monocular Images
-
Updated
Dec 20, 2019 - Python
Ngx - Neural network based visual generator and mixer
-
Updated
Dec 10, 2019 - C#
An implementation of Pix2Pix in Tensorflow for use with frames from films
-
Updated
Nov 7, 2019 - Jupyter Notebook
chainer implementation of pix2pix
-
Updated
Dec 7, 2019 - Python
[ICCV 2019] Guided Image-to-Image Translation with Bi-Directional Feature Transformation
-
Updated
Dec 20, 2019 - Python
Page to PAGE Layout Analysis Tool
-
Updated
Dec 17, 2019 - Python
This is the accompanying code for the Medium article: https://medium.com/@karol_majek/high-resolution-face2face-with-pix2pix-1024x1024-37b90c1ca7e8
-
Updated
Dec 19, 2019 - Python
Official PyTorch implementation of Harmonizing Maximum Likelihood with GANs for Multimodal Conditional Generation (ICLR 2019)
-
Updated
Dec 5, 2019 - Python
🖼 Create artwork from your casual sketch with GAN and style transfer
-
Updated
Dec 21, 2019 - Python
Improve this page
Add a description, image, and links to the pix2pix topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pix2pix topic, visit your repo's landing page and select "manage topics."


should I scale the multi-gpu lr to batchsize * single-gpu lr?
e.g. pix2pix model default lr = 0.0002(1 batchsize 1 gpu). When I use 16 batchsize and four gpu(4 image per gpu),I think we should set lr = 0.0002 * 16 = 0.0032.
Meanwhile, using WarmupScheduler to avoid gradient exploding problem.
thanks for any help.