1 Star 0 Fork 1

yangchenghao/Cycle-Dehaze

forked from J-star/Cycle-Dehaze 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
discriminator.py 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
deniz 提交于 2018-03-25 02:13 +08:00 . first commit
import tensorflow as tf
import ops
class Discriminator:
def __init__(self, name, is_training, norm='instance', use_sigmoid=False):
self.name = name
self.is_training = is_training
self.norm = norm
self.reuse = False
self.use_sigmoid = use_sigmoid
def __call__(self, input):
"""
Args:
input: batch_size x image_size x image_size x 3
Returns:
output: 4D tensor batch_size x out_size x out_size x 1 (default 1x5x5x1)
filled with 0.9 if real, 0.0 if fake
"""
with tf.variable_scope(self.name):
# convolution layers
C64 = ops.Ck(input, 64, reuse=self.reuse, norm=None,
is_training=self.is_training, name='C64') # (?, w/2, h/2, 64)
C128 = ops.Ck(C64, 128, reuse=self.reuse, norm=self.norm,
is_training=self.is_training, name='C128') # (?, w/4, h/4, 128)
C256 = ops.Ck(C128, 256, reuse=self.reuse, norm=self.norm,
is_training=self.is_training, name='C256') # (?, w/8, h/8, 256)
C512 = ops.Ck(C256, 512,reuse=self.reuse, norm=self.norm,
is_training=self.is_training, name='C512') # (?, w/16, h/16, 512)
# apply a convolution to produce a 1 dimensional output (1 channel?)
# use_sigmoid = False if use_lsgan = True
output = ops.last_conv(C512, reuse=self.reuse,
use_sigmoid=self.use_sigmoid, name='output') # (?, w/16, h/16, 1)
self.reuse = True
self.variables = tf.get_collection(tf.GraphKeys.TRAINABLE_VARIABLES, scope=self.name)
return output
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yangchenghao9/Cycle-Dehaze.git
git@gitee.com:yangchenghao9/Cycle-Dehaze.git
yangchenghao9
Cycle-Dehaze
Cycle-Dehaze
master

搜索帮助