未验证 提交 0480aa48 编写于 作者: C ceci3 提交者: GitHub

Update gan to 1.8 (#4625)

* fix init

* update

* update_1.8

* update paddle.reader

* update data
上级 cb6f778b
...@@ -61,18 +61,18 @@ def train(args): ...@@ -61,18 +61,18 @@ def train(args):
dg_program = fluid.Program() dg_program = fluid.Program()
with fluid.program_guard(d_program): with fluid.program_guard(d_program):
conditions = fluid.layers.data( conditions = fluid.data(
name='conditions', shape=[1], dtype='float32') name='conditions', shape=[None, 1], dtype='float32')
img = fluid.layers.data(name='img', shape=[784], dtype='float32') img = fluid.data(name='img', shape=[None, 784], dtype='float32')
label = fluid.layers.data(name='label', shape=[1], dtype='float32') label = fluid.data(name='label', shape=[None, 1], dtype='float32')
d_logit = D_cond(img, conditions) d_logit = D_cond(img, conditions)
d_loss = loss(d_logit, label) d_loss = loss(d_logit, label)
with fluid.program_guard(dg_program): with fluid.program_guard(dg_program):
conditions = fluid.layers.data( conditions = fluid.data(
name='conditions', shape=[1], dtype='float32') name='conditions', shape=[None, 1], dtype='float32')
noise = fluid.layers.data( noise = fluid.data(
name='noise', shape=[NOISE_SIZE], dtype='float32') name='noise', shape=[None, NOISE_SIZE], dtype='float32')
g_img = G_cond(z=noise, y=conditions) g_img = G_cond(z=noise, y=conditions)
g_program = dg_program.clone() g_program = dg_program.clone()
......
...@@ -60,14 +60,14 @@ def train(args): ...@@ -60,14 +60,14 @@ def train(args):
dg_program = fluid.Program() dg_program = fluid.Program()
with fluid.program_guard(d_program): with fluid.program_guard(d_program):
img = fluid.layers.data(name='img', shape=[784], dtype='float32') img = fluid.data(name='img', shape=[None, 784], dtype='float32')
label = fluid.layers.data(name='label', shape=[1], dtype='float32') label = fluid.data(name='label', shape=[None, 1], dtype='float32')
d_logit = D(img) d_logit = D(img)
d_loss = loss(d_logit, label) d_loss = loss(d_logit, label)
with fluid.program_guard(dg_program): with fluid.program_guard(dg_program):
noise = fluid.layers.data( noise = fluid.data(
name='noise', shape=[NOISE_SIZE], dtype='float32') name='noise', shape=[None, NOISE_SIZE], dtype='float32')
g_img = G(x=noise) g_img = G(x=noise)
g_program = dg_program.clone() g_program = dg_program.clone()
......
...@@ -508,9 +508,9 @@ def conv2d_with_filter(input, ...@@ -508,9 +508,9 @@ def conv2d_with_filter(input,
groups mismatch. groups mismatch.
Examples: Examples:
.. code-block:: python .. code-block:: python
data = fluid.layers.data(name='data', shape=[3, 32, 32], \ data = fluid.data(name='data', shape=[None, 3, 32, 32], \
dtype='float32') dtype='float32')
filter = fluid.layers.data(name='filter',shape=[10,3,3,3], \ filter = fluid.data(name='filter',shape=[None, 10, 3, 3, 3], \
dtype='float32',append_batch_size=False) dtype='float32',append_batch_size=False)
conv2d = fluid.layers.conv2d(input=data, conv2d = fluid.layers.conv2d(input=data,
filter=filter, filter=filter,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册