TensorFlow
Orchid_YL
fighting girl
展开
-
BEGAN实现不同人脸的生成(tensorflow实现)
很好的一个学习笔记,原文:https://blog.csdn.net/z704630835/article/details/83790098一、背景BEGAN,即边界平衡GAN(Boundary Equilibrium GAN),是DavidBerthelot等人[1]于2017年03月提出的一种方法。传统的GAN是利用判别器去评估生成器生成的图片和真实图片的数据分布是否一致,而BEGAN则代...转载 2018-12-14 22:32:31 · 974 阅读 · 0 评论 -
解决cannot import “imresize”或module “scipy.misc” has no attribute "imresize"问题
跑代码遇到AttributeError: module “scipy.misc” has no attribute “imresize” 问题,解决办法如下:首先查看pillow和scipy的版本,我的pillow是6.0.0,scipy是1.3,所以遇到这个问题,把scipy版本降级,即可解决:pip install scipy==1.2...原创 2019-07-20 20:53:08 · 523 阅读 · 0 评论 -
图像修复实例解析《Generative Image Inpainting with Contextual Attention》
Generative Image Inpainting with Contextual Attention今天介绍CVPR 2018的Generative Image Inpainting with Contextual Attentionpaper: https://arxiv.org/abs/1801.07892, demo http://jiahuiyu.com/deepfillgit...转载 2019-07-22 22:27:37 · 3650 阅读 · 8 评论